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 6F442138359 for ; Tue, 29 Sep 2020 14:37:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E667E08C3; Tue, 29 Sep 2020 14:36:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 6D72FE08C3 for ; Tue, 29 Sep 2020 14:36:42 +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 79454335D53 for ; Tue, 29 Sep 2020 14:36:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E323A332 for ; Tue, 29 Sep 2020 14:36:39 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1601390171.fe13784be44e5167f67315bf280690004aae885e.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/setuptools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/setuptools/setuptools-46.4.0-r3.ebuild dev-python/setuptools/setuptools-50.3.0.ebuild X-VCS-Directories: dev-python/setuptools/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: fe13784be44e5167f67315bf280690004aae885e X-VCS-Branch: master Date: Tue, 29 Sep 2020 14:36:39 +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: 9f535437-4872-46e3-aa9f-8114e8aa041c X-Archives-Hash: 7a920eb7e9760cd542831d4bb7d69acf commit: fe13784be44e5167f67315bf280690004aae885e Author: Mike Gilbert gentoo org> AuthorDate: Tue Sep 29 14:36:11 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Sep 29 14:36:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe13784b dev-python/setuptools: set DISTUTILS_USE_SETUPTOOLS=manual The install QA check correctly detects that setuptools depends on itself at runtime, but we don't want to add a self-referential dependency to RDEPEND. Closes: https://bugs.gentoo.org/745417 Signed-off-by: Mike Gilbert gentoo.org> dev-python/setuptools/setuptools-46.4.0-r3.ebuild | 3 ++- dev-python/setuptools/setuptools-50.3.0.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-python/setuptools/setuptools-46.4.0-r3.ebuild b/dev-python/setuptools/setuptools-46.4.0-r3.ebuild index f42864c53f3..9819bcdb50e 100644 --- a/dev-python/setuptools/setuptools-46.4.0-r3.ebuild +++ b/dev-python/setuptools/setuptools-46.4.0-r3.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -DISTUTILS_USE_SETUPTOOLS=no +# Set to 'manual' to avoid triggering install QA check +DISTUTILS_USE_SETUPTOOLS=manual PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 ) PYTHON_REQ_USE="xml(+)" diff --git a/dev-python/setuptools/setuptools-50.3.0.ebuild b/dev-python/setuptools/setuptools-50.3.0.ebuild index 0d8d2e8bfb9..ccd3f2338ab 100644 --- a/dev-python/setuptools/setuptools-50.3.0.ebuild +++ b/dev-python/setuptools/setuptools-50.3.0.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -DISTUTILS_USE_SETUPTOOLS=no +# Set to 'manual' to avoid triggering install QA check +DISTUTILS_USE_SETUPTOOLS=manual PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) PYTHON_REQ_USE="xml(+)"