commit: fdf1d951faa476913ddb313c45b4ba43c80da08c Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org> AuthorDate: Mon Oct 15 23:59:52 2018 +0000 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org> CommitDate: Tue Oct 16 00:01:23 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdf1d951
app-text/pytextile: drop spurious pytest-cov dep Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 app-text/pytextile/pytextile-2.3.3.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/app-text/pytextile/pytextile-2.3.3.ebuild b/app-text/pytextile/pytextile-2.3.3.ebuild index 3a17b6c192d..0cf0146b654 100644 --- a/app-text/pytextile/pytextile-2.3.3.ebuild +++ b/app-text/pytextile/pytextile-2.3.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -20,10 +20,7 @@ IUSE="test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] dev-python/pytest-runner[${PYTHON_USEDEP}] - test? ( dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - ) - " + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" RDEPEND=" dev-python/regex[${PYTHON_USEDEP}] " @@ -33,6 +30,8 @@ S="${WORKDIR}/${MY_P}" python_prepare_all() { # This resolves a nasty race condition, courtesy of Arfrever sed -e 's:with-id = 1::' -i setup.cfg || die + # remove useless --cov arg injection + rm pytest.ini || die distutils-r1_python_prepare_all }