Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/rstr/
Date: Tue, 29 Mar 2022 00:23:05
Message-Id: 1648417782.1841cd2699bb99e1a76315ee096c5b8af2e3fa1f.tastytea@gentoo
1 commit: 1841cd2699bb99e1a76315ee096c5b8af2e3fa1f
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Sun Mar 27 21:49:42 2022 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Sun Mar 27 21:49:42 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1841cd26
7
8 dev-python/rstr: disable pypy3
9
10 Closes: https://bugs.gentoo.org/835474
11 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
12
13 dev-python/rstr/rstr-3.1.0.ebuild | 6 +-----
14 1 file changed, 1 insertion(+), 5 deletions(-)
15
16 diff --git a/dev-python/rstr/rstr-3.1.0.ebuild b/dev-python/rstr/rstr-3.1.0.ebuild
17 index 843c74e97..8d112dacb 100644
18 --- a/dev-python/rstr/rstr-3.1.0.ebuild
19 +++ b/dev-python/rstr/rstr-3.1.0.ebuild
20 @@ -4,7 +4,7 @@
21 EAPI=8
22
23 DISTUTILS_USE_SETUPTOOLS=pyproject.toml
24 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
25 +PYTHON_COMPAT=( python3_{8..10} ) # pypy3 https://bugs.gentoo.org/835474
26
27 inherit distutils-r1
28
29 @@ -21,10 +21,6 @@ KEYWORDS="~amd64"
30
31 distutils_enable_tests unittest
32
33 -python_test() {
34 - "${PYTHON}" -m unittest discover -v rstr/tests || die "tests failed with ${EPYTHON}"
35 -}
36 -
37 python_install_all() {
38 distutils-r1_python_install_all
39 find "${ED}" -type d -name "tests" -exec rm -rv {} + || die "tests removing failed"