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 DAD32138350 for ; Thu, 5 Mar 2020 15:17:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFC8FE0942; Thu, 5 Mar 2020 15:11:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 90BDAE0AE4 for ; Thu, 5 Mar 2020 15:11:29 +0000 (UTC) Received: from localhost.localdomain (c142-245.icpnet.pl [85.221.142.245]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: mgorny) by smtp.gentoo.org (Postfix) with ESMTPSA id AD49C34ED86; Thu, 5 Mar 2020 15:11:27 +0000 (UTC) From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= To: gentoo-dev@lists.gentoo.org Cc: python@gentoo.org, =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Subject: [gentoo-dev] [PATCH v2 19/20] distutils-r2.eclass: Pass --skip-build to install Date: Thu, 5 Mar 2020 16:10:23 +0100 Message-Id: <20200305151024.125834-20-mgorny@gentoo.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200305151024.125834-1-mgorny@gentoo.org> References: <20200305151024.125834-1-mgorny@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Archives-Salt: eb15597d-b179-4f40-bb23-01c335c701ad X-Archives-Hash: 04000c4528c7849338772c0e8d95e231 Signed-off-by: Michał Górny --- eclass/distutils-r2.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/distutils-r2.eclass b/eclass/distutils-r2.eclass index 678dc670c3ef..8f16bddb83fd 100644 --- a/eclass/distutils-r2.eclass +++ b/eclass/distutils-r2.eclass @@ -835,7 +835,7 @@ distutils-r2_python_install() { local root=${D%/}/_${EPYTHON} [[ ${DISTUTILS_SINGLE_IMPL} ]] && root=${D%/} - esetup.py install --root="${root}" "${args[@]}" + esetup.py install --skip-build --root="${root}" "${args[@]}" local forbidden_package_names=( examples test tests .pytest_cache ) local p -- 2.25.1