Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pytextile/
Date: Tue, 16 Oct 2018 00:02:03
Message-Id: 1539648083.fdf1d951faa476913ddb313c45b4ba43c80da08c.vdupras@gentoo
1 commit: fdf1d951faa476913ddb313c45b4ba43c80da08c
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 15 23:59:52 2018 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 16 00:01:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdf1d951
7
8 app-text/pytextile: drop spurious pytest-cov dep
9
10 Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-text/pytextile/pytextile-2.3.3.ebuild | 9 ++++-----
14 1 file changed, 4 insertions(+), 5 deletions(-)
15
16 diff --git a/app-text/pytextile/pytextile-2.3.3.ebuild b/app-text/pytextile/pytextile-2.3.3.ebuild
17 index 3a17b6c192d..0cf0146b654 100644
18 --- a/app-text/pytextile/pytextile-2.3.3.ebuild
19 +++ b/app-text/pytextile/pytextile-2.3.3.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2018 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=5
26 @@ -20,10 +20,7 @@ IUSE="test"
27
28 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
29 dev-python/pytest-runner[${PYTHON_USEDEP}]
30 - test? ( dev-python/pytest[${PYTHON_USEDEP}]
31 - dev-python/pytest-cov[${PYTHON_USEDEP}]
32 - )
33 - "
34 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
35 RDEPEND="
36 dev-python/regex[${PYTHON_USEDEP}]
37 "
38 @@ -33,6 +30,8 @@ S="${WORKDIR}/${MY_P}"
39 python_prepare_all() {
40 # This resolves a nasty race condition, courtesy of Arfrever
41 sed -e 's:with-id = 1::' -i setup.cfg || die
42 + # remove useless --cov arg injection
43 + rm pytest.ini || die
44 distutils-r1_python_prepare_all
45 }