From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6B9031388BF for ; Sat, 20 Feb 2016 02:30:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78B0721C0F5; Sat, 20 Feb 2016 02:30:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B445021C0F8 for ; Sat, 20 Feb 2016 02:30:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE573340DC7 for ; Sat, 20 Feb 2016 02:30:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3786416CC for ; Sat, 20 Feb 2016 02:30:05 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1455913305.51afce0c3076b193777f71414a05beb965f1a6d7.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mccabe/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mccabe/mccabe-0.4.0.ebuild X-VCS-Directories: dev-python/mccabe/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 51afce0c3076b193777f71414a05beb965f1a6d7 X-VCS-Branch: master Date: Sat, 20 Feb 2016 02:30:05 +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: fdc9a3d6-884f-4c7b-97bc-fa61c044d3bc X-Archives-Hash: a8bbcaf7e20828f187db33075c051276 commit: 51afce0c3076b193777f71414a05beb965f1a6d7 Author: Ilya Tumaykin gmail com> AuthorDate: Fri Feb 19 19:54:00 2016 +0000 Commit: Ian Delaney gentoo org> CommitDate: Fri Feb 19 20:21:45 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51afce0c dev-python/mccabe: require pytest instead of pytest-runner for tests pytest-runner is needed when one wants to run tests like this: `setup.py pytest'. Since we don't do this, we only need pytest. Package-Manager: portage-2.2.27 dev-python/mccabe/mccabe-0.4.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/mccabe/mccabe-0.4.0.ebuild b/dev-python/mccabe/mccabe-0.4.0.ebuild index 5aa2253..22838d6 100644 --- a/dev-python/mccabe/mccabe-0.4.0.ebuild +++ b/dev-python/mccabe/mccabe-0.4.0.ebuild @@ -21,7 +21,7 @@ SLOT="0" RDEPEND="dev-python/flake8[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/pytest-runner[${PYTHON_USEDEP}] )" + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" src_prepare() { sed -i -e '/pytest-runner/d' setup.py || die