diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-05-19 07:00:38 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-05-19 09:14:41 +0200 |
commit | 3ed2ba3ff2eed5125448d814d1b44f9a9c183fb3 (patch) | |
tree | 05db260c17020950acb0e50892e21888a15ac022 /dev-python/xxhash | |
parent | dev-python/trimesh: Bump to 3.12.1 (diff) | |
download | gentoo-3ed2ba3ff2eed5125448d814d1b44f9a9c183fb3.tar.gz gentoo-3ed2ba3ff2eed5125448d814d1b44f9a9c183fb3.tar.bz2 gentoo-3ed2ba3ff2eed5125448d814d1b44f9a9c183fb3.zip |
dev-python/xxhash: Enable py3.11
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/xxhash')
-rw-r--r-- | dev-python/xxhash/xxhash-3.0.0.ebuild | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/dev-python/xxhash/xxhash-3.0.0.ebuild b/dev-python/xxhash/xxhash-3.0.0.ebuild index 22add56750f2..851eca3965af 100644 --- a/dev-python/xxhash/xxhash-3.0.0.ebuild +++ b/dev-python/xxhash/xxhash-3.0.0.ebuild @@ -4,20 +4,27 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) + inherit distutils-r1 DESCRIPTION="Python binding for the xxHash library" -HOMEPAGE="https://github.com/ifduyue/python-xxhash - https://pypi.org/project/xxhash/" +HOMEPAGE=" + https://github.com/ifduyue/python-xxhash/ + https://pypi.org/project/xxhash/ +" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 ~arm64 ~x86" -RDEPEND=">=dev-libs/xxhash-0.8.0" -DEPEND="${RDEPEND}" +DEPEND=" + >=dev-libs/xxhash-0.8.0 +" +RDEPEND=" + ${DEPEND} +" distutils_enable_tests unittest |