Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xxhash/
Date: Thu, 19 May 2022 07:15:02
Message-Id: 1652944481.3ed2ba3ff2eed5125448d814d1b44f9a9c183fb3.mgorny@gentoo
1 commit: 3ed2ba3ff2eed5125448d814d1b44f9a9c183fb3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 19 05:00:38 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 19 07:14:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ed2ba3f
7
8 dev-python/xxhash: Enable py3.11
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/xxhash/xxhash-3.0.0.ebuild | 17 ++++++++++++-----
13 1 file changed, 12 insertions(+), 5 deletions(-)
14
15 diff --git a/dev-python/xxhash/xxhash-3.0.0.ebuild b/dev-python/xxhash/xxhash-3.0.0.ebuild
16 index 22add56750f2..851eca3965af 100644
17 --- a/dev-python/xxhash/xxhash-3.0.0.ebuild
18 +++ b/dev-python/xxhash/xxhash-3.0.0.ebuild
19 @@ -4,20 +4,27 @@
20 EAPI=8
21
22 DISTUTILS_USE_PEP517=setuptools
23 -PYTHON_COMPAT=( python3_{8..10} )
24 +PYTHON_COMPAT=( python3_{8..11} )
25 +
26 inherit distutils-r1
27
28 DESCRIPTION="Python binding for the xxHash library"
29 -HOMEPAGE="https://github.com/ifduyue/python-xxhash
30 - https://pypi.org/project/xxhash/"
31 +HOMEPAGE="
32 + https://github.com/ifduyue/python-xxhash/
33 + https://pypi.org/project/xxhash/
34 +"
35 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
36
37 LICENSE="MIT"
38 SLOT="0"
39 KEYWORDS="amd64 ~arm64 ~x86"
40
41 -RDEPEND=">=dev-libs/xxhash-0.8.0"
42 -DEPEND="${RDEPEND}"
43 +DEPEND="
44 + >=dev-libs/xxhash-0.8.0
45 +"
46 +RDEPEND="
47 + ${DEPEND}
48 +"
49
50 distutils_enable_tests unittest