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: Mon, 05 Jul 2021 08:59:29
Message-Id: 1625475563.1bf69820b0ea05e5180d6d5e4da4e0f09dc26cca.mgorny@gentoo
1 commit: 1bf69820b0ea05e5180d6d5e4da4e0f09dc26cca
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 5 08:57:36 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 5 08:59:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf69820
7
8 dev-python/linecache2: Eliminate unittest2 dep
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/linecache2/linecache2-1.0.0-r1.ebuild | 16 ++++++++--------
13 1 file changed, 8 insertions(+), 8 deletions(-)
14
15 diff --git a/dev-python/linecache2/linecache2-1.0.0-r1.ebuild b/dev-python/linecache2/linecache2-1.0.0-r1.ebuild
16 index 9b0a2e825b1..aab01856e99 100644
17 --- a/dev-python/linecache2/linecache2-1.0.0-r1.ebuild
18 +++ b/dev-python/linecache2/linecache2-1.0.0-r1.ebuild
19 @@ -1,10 +1,9 @@
20 # Copyright 1999-2021 Gentoo Authors
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI=7
24 -
25 -PYTHON_COMPAT=( python3_{7..9} pypy3 )
26 +EAPI=8
27
28 +PYTHON_COMPAT=( python3_{8..9} pypy3 )
29 inherit distutils-r1
30
31 DESCRIPTION="Backports of the linecache module"
32 @@ -14,16 +13,17 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 LICENSE="PSF-2"
34 SLOT="0"
35 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
36 -IUSE="test"
37 -RESTRICT="!test? ( test )"
38
39 BDEPEND="
40 dev-python/pbr[${PYTHON_USEDEP}]
41 test? (
42 dev-python/fixtures[${PYTHON_USEDEP}]
43 - dev-python/unittest2[${PYTHON_USEDEP}]
44 )"
45
46 -python_test() {
47 - "${PYTHON}" -m unittest2 discover || die "tests failed under ${EPYTHON}"
48 +distutils_enable_tests unittest
49 +
50 +src_prepare() {
51 + # eliminate unittest2 dep
52 + sed -i -e '/unittest/s:2 as.*::' linecache2/tests/test_linecache.py || die
53 + distutils-r1_src_prepare
54 }