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/linecache2/
Date: Sun, 31 May 2020 15:43:00
Message-Id: 1590939741.50a8e0e2a36b9b00dc8076834bb21eef814f92f8.mgorny@gentoo
1 commit: 50a8e0e2a36b9b00dc8076834bb21eef814f92f8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 31 14:28:17 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun May 31 15:42:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50a8e0e2
7
8 dev-python/linecache2: Port to py39
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/linecache2/linecache2-1.0.0.ebuild | 9 +++------
13 1 file changed, 3 insertions(+), 6 deletions(-)
14
15 diff --git a/dev-python/linecache2/linecache2-1.0.0.ebuild b/dev-python/linecache2/linecache2-1.0.0.ebuild
16 index 21d4c0a310d..0f3e5e0bdcd 100644
17 --- a/dev-python/linecache2/linecache2-1.0.0.ebuild
18 +++ b/dev-python/linecache2/linecache2-1.0.0.ebuild
19 @@ -1,9 +1,9 @@
20 # Copyright 1999-2020 Gentoo Authors
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI=5
24 +EAPI=7
25
26 -PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 )
27 +PYTHON_COMPAT=( python2_7 python3_{6..9} pypy3 )
28
29 inherit distutils-r1
30
31 @@ -17,16 +17,13 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86
32 IUSE="test"
33 RESTRICT="!test? ( test )"
34
35 -DEPEND="
36 +BDEPEND="
37 dev-python/pbr[${PYTHON_USEDEP}]
38 - dev-python/setuptools[${PYTHON_USEDEP}]
39 test? (
40 dev-python/fixtures[${PYTHON_USEDEP}]
41 dev-python/unittest2[${PYTHON_USEDEP}]
42 )"
43
44 -RDEPEND=""
45 -
46 python_test() {
47 "${PYTHON}" -m unittest2 discover || die "tests failed under ${EPYTHON}"
48 }