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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8CD9B158087 for ; Wed, 26 Jan 2022 12:21:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C4722BC00B; Wed, 26 Jan 2022 12:21:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1CB992BC00B for ; Wed, 26 Jan 2022 12:21:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 84EBA34301D for ; Wed, 26 Jan 2022 12:21:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C8C4A250 for ; Wed, 26 Jan 2022 12:21:39 +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: <1643199697.d1270fb602d41c6d3959431db012eac3470d9b5f.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-60.5.0-r1.ebuild X-VCS-Directories: dev-python/setuptools/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d1270fb602d41c6d3959431db012eac3470d9b5f X-VCS-Branch: master Date: Wed, 26 Jan 2022 12:21: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: 95ad64e3-0519-4135-b4fc-b547cb4bda12 X-Archives-Hash: 099135fd72534ea7f26fee13607832c8 commit: d1270fb602d41c6d3959431db012eac3470d9b5f Author: Michał Górny gentoo org> AuthorDate: Wed Jan 26 12:16:57 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jan 26 12:21:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1270fb6 dev-python/setuptools: Switch to PEP 517 build Signed-off-by: Michał Górny gentoo.org> dev-python/setuptools/setuptools-60.5.0-r1.ebuild | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/dev-python/setuptools/setuptools-60.5.0-r1.ebuild b/dev-python/setuptools/setuptools-60.5.0-r1.ebuild index 2c14210e9434..497ee5493faa 100644 --- a/dev-python/setuptools/setuptools-60.5.0-r1.ebuild +++ b/dev-python/setuptools/setuptools-60.5.0-r1.ebuild @@ -4,8 +4,7 @@ # please keep this ebuild at EAPI 7 -- sys-apps/portage dep EAPI=7 -# Set to 'manual' to avoid triggering install QA check -DISTUTILS_USE_SETUPTOOLS=manual +DISTUTILS_USE_PEP517=standalone PYTHON_COMPAT=( python3_{8..10} pypy3 ) PYTHON_REQ_USE="xml(+)" @@ -31,6 +30,7 @@ RDEPEND=" " BDEPEND=" ${RDEPEND} + dev-python/wheel[${PYTHON_USEDEP}] test? ( $(python_gen_cond_dep ' dev-python/build[${PYTHON_USEDEP}] @@ -54,9 +54,6 @@ PDEPEND=" >=dev-python/certifi-2016.9.26[${PYTHON_USEDEP}] dev-python/setuptools_scm[${PYTHON_USEDEP}]" -# Force in-source build because build system modifies sources. -DISTUTILS_IN_SOURCE_BUILD=1 - DOCS=( {CHANGES,README}.rst ) src_prepare() { @@ -79,7 +76,6 @@ python_test() { # keep in sync with python_gen_cond_dep above! has "${EPYTHON}" python3.{8..10} pypy3 || continue - distutils_install_for_testing local EPYTEST_DESELECT=( # network setuptools/tests/integration/test_pip_install_sdist.py::test_install_sdist @@ -100,8 +96,3 @@ python_test() { HOME="${PWD}" epytest \ -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" setuptools } - -python_install() { - export DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1 - distutils-r1_python_install -}