diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-08-29 12:33:19 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-08-29 12:33:19 +0200 |
commit | b4400e0b8c0953829a00f3fae699d0bc2b686c98 (patch) | |
tree | 8acb431849baae0f7409a0db2af0a19fde45b0db /dev-python/jaraco-collections | |
parent | dev-python/jaraco-classes: Remove obsolete USE=doc (diff) | |
download | gentoo-b4400e0b8c0953829a00f3fae699d0bc2b686c98.tar.gz gentoo-b4400e0b8c0953829a00f3fae699d0bc2b686c98.tar.bz2 gentoo-b4400e0b8c0953829a00f3fae699d0bc2b686c98.zip |
dev-python/jaraco-collections: Modernize & cleanup
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/jaraco-collections')
-rw-r--r-- | dev-python/jaraco-collections/jaraco-collections-3.5.2.ebuild | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/dev-python/jaraco-collections/jaraco-collections-3.5.2.ebuild b/dev-python/jaraco-collections/jaraco-collections-3.5.2.ebuild index 3962c5c51519..c05bf6e60547 100644 --- a/dev-python/jaraco-collections/jaraco-collections-3.5.2.ebuild +++ b/dev-python/jaraco-collections/jaraco-collections-3.5.2.ebuild @@ -5,13 +5,17 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{8..11} pypy3 ) + inherit distutils-r1 -MY_PN="${PN/-/.}" +MY_P=${P/-/.} DESCRIPTION="Models and classes to supplement the stdlib collections module" -HOMEPAGE="https://github.com/jaraco/jaraco.collections" -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" -S="${WORKDIR}/${MY_PN}-${PV}" +HOMEPAGE=" + https://github.com/jaraco/jaraco.collections/ + https://pypi.org/project/jaraco.collections/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN/-/.}/${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} LICENSE="MIT" SLOT="0" @@ -25,7 +29,4 @@ BDEPEND=" >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}] " -distutils_enable_sphinx docs \ - '>=dev-python/jaraco-packaging-3.2' \ - '>=dev-python/rst-linker-1.9' distutils_enable_tests pytest |