Diff ssl-fetch-0.4-r1 with a ssl-fetch-9999

/usr/portage/dev-python/ssl-fetch/ssl-fetch-9999.ebuild 2023-10-09 14:52:30.384368373 +0300
6 6
DISTUTILS_USE_PEP517=setuptools
7 7
PYTHON_COMPAT=( python3_{9..11} pypy3 )
8 8

  
9
inherit distutils-r1
9
inherit distutils-r1 git-r3
10 10

  
11 11
DESCRIPTION="Small convenience library for fetching files securely"
12 12
HOMEPAGE="https://github.com/dol-sen/ssl-fetch"
13
SRC_URI="https://dev.gentoo.org/~dolsen/releases/ssl-fetch/${P}.tar.gz"
13
EGIT_REPO_URI="https://github.com/dol-sen/ssl-fetch.git"
14 14

  
15 15
LICENSE="GPL-2"
16 16
SLOT="0"
17
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
17
KEYWORDS=""
18 18

  
19 19
RDEPEND=">=dev-python/requests-1.2.1[${PYTHON_USEDEP}]"
20 20

  
21 21
pkg_postinst() {
22
	elog "This is beta software."
22
	elog "This is experimental software."
23 23
	elog "The APIs it installs should be considered unstable"
24
	elog "and are subject to change in these early versions."
24
	elog "and are subject to change."
25 25
	elog
26 26
	elog "Please file any enhancement requests, or bugs"
27 27
	elog "at https://github.com/dol-sen/ssl-fetch/issues"
Thank you!