Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xxhash/
Date: Sat, 27 Feb 2021 21:39:49
Message-Id: 1614461953.1ba94803af2d44b47118096a29fc76453c4c3bc5.sam@gentoo
1 commit: 1ba94803af2d44b47118096a29fc76453c4c3bc5
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 27 21:10:42 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 21:39:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ba94803
7
8 dev-python/xxhash: add Python 3.9
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-python/xxhash/xxhash-2.0.0.ebuild | 7 +++----
13 1 file changed, 3 insertions(+), 4 deletions(-)
14
15 diff --git a/dev-python/xxhash/xxhash-2.0.0.ebuild b/dev-python/xxhash/xxhash-2.0.0.ebuild
16 index 287ddf042f3..a27b42c102f 100644
17 --- a/dev-python/xxhash/xxhash-2.0.0.ebuild
18 +++ b/dev-python/xxhash/xxhash-2.0.0.ebuild
19 @@ -1,9 +1,9 @@
20 -# Copyright 1999-2020 Gentoo Authors
21 +# Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=7
25
26 -PYTHON_COMPAT=(python3_{7..8})
27 +PYTHON_COMPAT=( python3_{7..9} )
28
29 inherit distutils-r1
30
31 @@ -15,7 +15,6 @@ LICENSE="MIT"
32
33 KEYWORDS="~amd64"
34 SLOT="0"
35 -IUSE="test"
36
37 RDEPEND=">=dev-libs/xxhash-0.8.0"
38 BDEPEND="${RDEPEND}"
39 @@ -27,6 +26,6 @@ python_configure_all() {
40 }
41
42 python_test() {
43 - cd tests
44 + cd tests || die
45 "${EPYTHON}" -m unittest discover -v || die "tests failed with ${EPYTHON}"
46 }