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 9D7EA138334 for ; Mon, 16 Dec 2019 10:14:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C9A2E0869; Mon, 16 Dec 2019 10:14:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 2CF9FE084E for ; Mon, 16 Dec 2019 10:14:58 +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 1D95A34D8CF for ; Mon, 16 Dec 2019 10:14:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BD8C8CD for ; Mon, 16 Dec 2019 10:14:55 +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: <1576491276.b9923b8999a4b8355607839ace9585bcea1a7155.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/setuptools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/setuptools/setuptools-42.0.2.ebuild X-VCS-Directories: dev-python/setuptools/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b9923b8999a4b8355607839ace9585bcea1a7155 X-VCS-Branch: master Date: Mon, 16 Dec 2019 10:14:55 +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: 745d19d8-85c5-43e8-a934-67670aeed0e8 X-Archives-Hash: 9484497e095adb83dafead9c699bbd6e commit: b9923b8999a4b8355607839ace9585bcea1a7155 Author: Michał Górny gentoo org> AuthorDate: Mon Dec 16 09:51:48 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Dec 16 10:14:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9923b89 dev-python/setuptools: Replace python_gen_usedep Signed-off-by: Michał Górny gentoo.org> dev-python/setuptools/setuptools-42.0.2.ebuild | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/dev-python/setuptools/setuptools-42.0.2.ebuild b/dev-python/setuptools/setuptools-42.0.2.ebuild index 98b92480821..4a4fdf1ae70 100644 --- a/dev-python/setuptools/setuptools-42.0.2.ebuild +++ b/dev-python/setuptools/setuptools-42.0.2.ebuild @@ -27,17 +27,18 @@ RESTRICT="!test? ( test )" # Temporary hack to avoid py38 keywording hell. Please remove when # the test deps all have py38. Also setuptools' test pass with py38, # so you need to hack them all in locally before bumping and test. -TEST_USEDEP=$(python_gen_usedep python2_7 python3_{5,6,7} pypy{,3}) BDEPEND=" app-arch/unzip test? ( - dev-python/mock[${TEST_USEDEP}] - dev-python/pip[${TEST_USEDEP}] - >=dev-python/pytest-3.7.0[${TEST_USEDEP}] - dev-python/pytest-fixture-config[${TEST_USEDEP}] - dev-python/pytest-virtualenv[${TEST_USEDEP}] - dev-python/wheel[${TEST_USEDEP}] - virtual/python-futures[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pip[${PYTHON_USEDEP}] + >=dev-python/pytest-3.7.0[${PYTHON_USEDEP}] + dev-python/pytest-fixture-config[${PYTHON_USEDEP}] + dev-python/pytest-virtualenv[${PYTHON_USEDEP}] + dev-python/wheel[${PYTHON_USEDEP}] + virtual/python-futures[${PYTHON_USEDEP}] + ' python2_7 python3_{5,6,7} pypy{,3}) ) " PDEPEND="