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/ntplib/
Date: Fri, 24 Apr 2020 20:13:14
Message-Id: 1587759176.f9fabc59b0c9c193d38579876263652fcc297be0.mgorny@gentoo
1 commit: f9fabc59b0c9c193d38579876263652fcc297be0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 24 19:40:11 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 24 20:12:56 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9fabc59
7
8 dev-python/ntplib: Enable py3.{7,8}
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ntplib/ntplib-0.3.3.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/ntplib/ntplib-0.3.3.ebuild b/dev-python/ntplib/ntplib-0.3.3.ebuild
16 index 37e5fcbc114..11967a49ea2 100644
17 --- a/dev-python/ntplib/ntplib-0.3.3.ebuild
18 +++ b/dev-python/ntplib/ntplib-0.3.3.ebuild
19 @@ -2,7 +2,7 @@
20 # Distributed under the terms of the GNU General Public License v2
21
22 EAPI=6
23 -PYTHON_COMPAT=( python3_6 )
24 +PYTHON_COMPAT=( python3_{6,7,8} )
25
26 inherit distutils-r1
27
28 @@ -18,5 +18,5 @@ IUSE=""
29 RESTRICT="test"
30
31 python_test() {
32 - "${PYTHON:-python}" ./test_ntplib.py
33 + "${EPYTHON}" ./test_ntplib.py || die
34 }