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 32886138359 for ; Wed, 30 Sep 2020 15:31:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48427E0A65; Wed, 30 Sep 2020 15:31:00 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 2F553E0A65 for ; Wed, 30 Sep 2020 15:31:00 +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 0194233BE32 for ; Wed, 30 Sep 2020 15:30:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6695A332 for ; Wed, 30 Sep 2020 15:30:57 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1601479838.fec7291fc8e3442ce5a65276c7a947006639a0b7.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cliff/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/cliff/cliff-3.4.0.ebuild X-VCS-Directories: dev-python/cliff/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: fec7291fc8e3442ce5a65276c7a947006639a0b7 X-VCS-Branch: master Date: Wed, 30 Sep 2020 15:30: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2cdeb1bb-80b8-4d22-80eb-9011caf4de58 X-Archives-Hash: a873e38af8a865b39683e84739a8c527 commit: fec7291fc8e3442ce5a65276c7a947006639a0b7 Author: Louis Sautier gentoo org> AuthorDate: Wed Sep 30 15:24:42 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Wed Sep 30 15:30:38 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fec7291f dev-python/cliff: fix DISTUTILS_USE_SETUPTOOLS QA warning Closes: https://bugs.gentoo.org/745663 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Louis Sautier gentoo.org> dev-python/cliff/cliff-3.4.0.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-python/cliff/cliff-3.4.0.ebuild b/dev-python/cliff/cliff-3.4.0.ebuild index 97560bbb48e..2cb3eca1cbe 100644 --- a/dev-python/cliff/cliff-3.4.0.ebuild +++ b/dev-python/cliff/cliff-3.4.0.ebuild @@ -4,7 +4,8 @@ EAPI=7 PYTHON_COMPAT=( python3_{6..9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend +# pkg_resources is used even though the QA check doesn't detect it +DISTUTILS_USE_SETUPTOOLS=manual inherit distutils-r1 @@ -20,12 +21,15 @@ RDEPEND=" >=dev-python/cmd2-0.8.0[${PYTHON_USEDEP}] =dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] >=dev-python/six-1.10.0[${PYTHON_USEDEP}] >=dev-python/stevedore-2.0.1[${PYTHON_USEDEP}] >=dev-python/pyyaml-3.12.0[${PYTHON_USEDEP}] " -BDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] +BDEPEND=" + >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] !~dev-python/pbr-2.1.0 + dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/sphinx[${PYTHON_USEDEP}] >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]