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 E0B9F138350 for ; Mon, 6 Apr 2020 17:45:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 340FFE1156; Mon, 6 Apr 2020 17:45:41 +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 1A3F3E1156 for ; Mon, 6 Apr 2020 17:45:41 +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 EF01034F074 for ; Mon, 6 Apr 2020 17:45:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 94E8519B for ; Mon, 6 Apr 2020 17:45:38 +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: <1586195129.6dec30de7e00c04e20f581ee45b75aa96cd0e7e1.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/scons/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/scons/scons-3.1.2.ebuild X-VCS-Directories: dev-util/scons/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 6dec30de7e00c04e20f581ee45b75aa96cd0e7e1 X-VCS-Branch: master Date: Mon, 6 Apr 2020 17:45:38 +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: c49e6b0d-ed18-43c8-af80-b7f3ce15e74f X-Archives-Hash: 7d06394c92412d5003b24670f290011b commit: 6dec30de7e00c04e20f581ee45b75aa96cd0e7e1 Author: Mike Gilbert gentoo org> AuthorDate: Mon Apr 6 17:25:52 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Apr 6 17:45:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dec30de dev-util/scons: set DISTUTILS_USE_SETUPTOOLS=manual This avoids a false-positive QA warning due to commented code in setup.py. Package-Manager: Portage-2.3.96_p4, Repoman-2.3.22_p1 Signed-off-by: Mike Gilbert gentoo.org> dev-util/scons/scons-3.1.2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-util/scons/scons-3.1.2.ebuild b/dev-util/scons/scons-3.1.2.ebuild index 2582d9f6943..397b9803820 100644 --- a/dev-util/scons/scons-3.1.2.ebuild +++ b/dev-util/scons/scons-3.1.2.ebuild @@ -3,7 +3,8 @@ EAPI=7 -DISTUTILS_USE_SETUPTOOLS=no +# False positive due to commented code in setup.py +DISTUTILS_USE_SETUPTOOLS=manual PYTHON_COMPAT=( python{2_7,3_{6,7,8}} ) PYTHON_REQ_USE="threads(+)"