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 0155015808B for ; Fri, 25 Feb 2022 15:53:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6192E0833; Fri, 25 Feb 2022 15:53:16 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 91800E0830 for ; Fri, 25 Feb 2022 15:53:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 7CC1A342F74 for ; Fri, 25 Feb 2022 15:53:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA7072EC for ; Fri, 25 Feb 2022 15:53:13 +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: <1645804386.63b22909d5809da83fe893ba2400c9b69b4dbbfb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/distutils-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 63b22909d5809da83fe893ba2400c9b69b4dbbfb X-VCS-Branch: master Date: Fri, 25 Feb 2022 15:53:13 +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: c153d9f6-8e59-4dd4-908d-ff3d5b933e84 X-Archives-Hash: 9180ba9c0bd745a13be79bc447d8f829 commit: 63b22909d5809da83fe893ba2400c9b69b4dbbfb Author: Michał Górny gentoo org> AuthorDate: Mon Feb 21 18:30:18 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Feb 25 15:53:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63b22909 distutils-r1.eclass: Update the desc for PEP517 mode Do not call PEP517 mode "experimental" anymore, and instead describe the potential problem with it. Signed-off-by: Michał Górny gentoo.org> eclass/distutils-r1.eclass | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index f0059d2756bf..f6c797a9684e 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -82,11 +82,16 @@ esac # @PRE_INHERIT # @DEFAULT_UNSET # @DESCRIPTION: -# Enable experimental PEP 517 mode for the specified build system. -# In this mode, the complete build and install is done -# in python_compile(), venv-style install tree is provided -# to python_test() and python_install() just merges the temporary -# install tree into real fs. +# Enable the PEP 517 mode for the specified build system. In this mode, +# the complete build and install is done in python_compile(), +# a venv-style install tree is provided to python_test(), +# and python_install() just merges the temporary install tree +# into the real fs. +# +# This mode is recommended for Python packages. However, some packages +# using custom hacks on top of distutils/setuptools may not install +# correctly in this mode. Please verify the list of installed files +# when using it. # # The variable specifies the build system used. Currently, # the following values are supported: