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/polygon/
Date: Sat, 25 Apr 2020 09:07:33
Message-Id: 1587805636.19accfa7c587fa6d780780be8ecab7464940da1d.mgorny@gentoo
1 commit: 19accfa7c587fa6d780780be8ecab7464940da1d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 25 09:02:39 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 25 09:07:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19accfa7
7
8 dev-python/polygon: Enable py3.{7,8}
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/polygon/polygon-3.0.7.ebuild | 6 ++++--
13 1 file changed, 4 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/polygon/polygon-3.0.7.ebuild b/dev-python/polygon/polygon-3.0.7.ebuild
16 index e3e7bcdb413..e9821f63b46 100644
17 --- a/dev-python/polygon/polygon-3.0.7.ebuild
18 +++ b/dev-python/polygon/polygon-3.0.7.ebuild
19 @@ -2,7 +2,9 @@
20 # Distributed under the terms of the GNU General Public License v2
21
22 EAPI=5
23 -PYTHON_COMPAT=( python3_6 )
24 +
25 +DISTUTILS_USE_SETUPTOOLS=no
26 +PYTHON_COMPAT=( python3_{6,7,8} )
27
28 inherit distutils-r1
29
30 @@ -30,7 +32,7 @@ python_prepare_all() {
31 }
32
33 python_test() {
34 - ${PYTHON} test/Test.py || die "Tests failed under ${EPYTHON}"
35 + "${EPYTHON}" test/Test.py -v || die "Tests failed under ${EPYTHON}"
36 }
37
38 python_install_all() {