From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E7A6138334 for ; Tue, 16 Oct 2018 00:02:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B8E81E08A8; Tue, 16 Oct 2018 00:02:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8532EE08AA for ; Tue, 16 Oct 2018 00:02:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 77186335CDE for ; Tue, 16 Oct 2018 00:01:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FE3643F for ; Tue, 16 Oct 2018 00:01:57 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1539648083.fdf1d951faa476913ddb313c45b4ba43c80da08c.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pytextile/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/pytextile/pytextile-2.3.3.ebuild X-VCS-Directories: app-text/pytextile/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: fdf1d951faa476913ddb313c45b4ba43c80da08c X-VCS-Branch: master Date: Tue, 16 Oct 2018 00:01:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 37c17493-2934-495f-b3ae-8c060f0f6834 X-Archives-Hash: 8f0bb102f95ae1a6837429d07fb10a3b commit: fdf1d951faa476913ddb313c45b4ba43c80da08c Author: Virgil Dupras gentoo org> AuthorDate: Mon Oct 15 23:59:52 2018 +0000 Commit: Virgil Dupras gentoo 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 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 }