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 6A9A11384B4 for ; Tue, 17 Nov 2015 10:29:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 568EBE07B3; Tue, 17 Nov 2015 10:29:29 +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 E4D6EE07B3 for ; Tue, 17 Nov 2015 10:29:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E40DF340666 for ; Tue, 17 Nov 2015 10:29:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 46074702 for ; Tue, 17 Nov 2015 10:29:23 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1447756160.49c59b1fde1c081e5c0ac9620fc2fd3fefcfb6e6.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenv/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/virtualenv/virtualenv-13.1.2.ebuild X-VCS-Directories: dev-python/virtualenv/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 49c59b1fde1c081e5c0ac9620fc2fd3fefcfb6e6 X-VCS-Branch: master Date: Tue, 17 Nov 2015 10:29:23 +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: b1081ef5-7a91-4d92-8a0d-7d21acc40593 X-Archives-Hash: f497ed0aadab60a42047ba58ab7e6871 commit: 49c59b1fde1c081e5c0ac9620fc2fd3fefcfb6e6 Author: Justin Lecher gentoo org> AuthorDate: Tue Nov 17 10:12:50 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Nov 17 10:29:20 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49c59b1f dev-python/virtualenv: Remove unnecessary dependency on pip & setuptools Bundled dev-python/{pip,setuptools,argparse,wheel} cannot be removed, as we have a chicken and egg problem here. In the new virtualenv we need those packages to install them. Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=566022 Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/virtualenv/virtualenv-13.1.2.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/dev-python/virtualenv/virtualenv-13.1.2.ebuild b/dev-python/virtualenv/virtualenv-13.1.2.ebuild index fcbcb88..b760d82 100644 --- a/dev-python/virtualenv/virtualenv-13.1.2.ebuild +++ b/dev-python/virtualenv/virtualenv-13.1.2.ebuild @@ -21,11 +21,9 @@ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sp SLOT="0" IUSE="doc test" -RDEPEND=" - >=dev-python/pip-7.1.2[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - " +RDEPEND="" DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) test? ( dev-python/mock[${PYTHON_USEDEP}] @@ -44,7 +42,7 @@ python_compile_all() { } python_test() { - py.test -vvx || die "Tests fail with ${EPYTHON}" + py.test -v -v || die "Tests fail with ${EPYTHON}" } python_install_all() {