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 4943C138335 for ; Mon, 16 Dec 2019 14:38:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA340E0920; Mon, 16 Dec 2019 14:38:13 +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 D26E8E0920 for ; Mon, 16 Dec 2019 14:38:13 +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 12F8634D8A0 for ; Mon, 16 Dec 2019 14:38:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F4DC99B for ; Mon, 16 Dec 2019 14:38:08 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1576507077.164e2b33f2cdb1ea26121ede08c15dd4cdf97b65.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-virtualenv/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-virtualenv/pytest-virtualenv-1.7.0.ebuild X-VCS-Directories: dev-python/pytest-virtualenv/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 164e2b33f2cdb1ea26121ede08c15dd4cdf97b65 X-VCS-Branch: master Date: Mon, 16 Dec 2019 14:38:08 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4716752c-b228-47f1-8d92-5faa7c773f3b X-Archives-Hash: bf3dac3aa8300b6574e47a33a3d0f5d1 commit: 164e2b33f2cdb1ea26121ede08c15dd4cdf97b65 Author: Michał Górny gentoo org> AuthorDate: Mon Dec 16 14:24:15 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Dec 16 14:37:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=164e2b33 dev-python/pytest-virtualenv: Set DISTUTILS_USE_SETUPTOOLS Signed-off-by: Michał Górny gentoo.org> dev-python/pytest-virtualenv/pytest-virtualenv-1.7.0.ebuild | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dev-python/pytest-virtualenv/pytest-virtualenv-1.7.0.ebuild b/dev-python/pytest-virtualenv/pytest-virtualenv-1.7.0.ebuild index 0f53a35b999..ce2151787c0 100644 --- a/dev-python/pytest-virtualenv/pytest-virtualenv-1.7.0.ebuild +++ b/dev-python/pytest-virtualenv/pytest-virtualenv-1.7.0.ebuild @@ -2,6 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend PYTHON_COMPAT=( python{2_7,3_{5,6,7}} pypy{,3} ) inherit distutils-r1 @@ -13,22 +15,17 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~hppa ~mips ~s390 ~sparc ~x86" -IUSE="test" RDEPEND=" dev-python/pytest-fixture-config[${PYTHON_USEDEP}] dev-python/pytest-shutil[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] dev-python/virtualenv[${PYTHON_USEDEP}] " BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] test? ( - ${RDEPEND} dev-python/mock[${PYTHON_USEDEP}] ) " -RESTRICT="!test? ( test )" distutils_enable_tests setup.py