commit:     033ffdfa2348fe955ee2b6da60140d99a9e8e026
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May 31 08:21:53 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun  7 06:53:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=033ffdfa

distutils-r1.eclass: Support internal post-python_* phase functions

Support running additional post-python_* phase functions for internal
usage.  The goal is to replace some of the inline logic
in distutils-r1_python_* functions that relies on the user calling them
and additional calls to python_foreach_impl.

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 eclass/distutils-r1.eclass | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
index ed368da79896..d6fd176192de 100644
--- a/eclass/distutils-r1.eclass
+++ b/eclass/distutils-r1.eclass
@@ -1687,6 +1687,11 @@ distutils-r1_run_phase() {
        fi
 
        cd "${_DISTUTILS_INITIAL_CWD}" || die
+       if [[ ! ${_DISTUTILS_IN_COMMON_IMPL} ]] &&
+               declare -f "_distutils-r1_post_python_${EBUILD_PHASE}" 
>/dev/null
+       then
+               "_distutils-r1_post_python_${EBUILD_PHASE}"
+       fi
        return "${ret}"
 }
 
@@ -1701,6 +1706,7 @@ distutils-r1_run_phase() {
 # of sources made for the selected Python interpreter.
 _distutils-r1_run_common_phase() {
        local DISTUTILS_ORIG_BUILD_DIR=${BUILD_DIR}
+       local _DISTUTILS_IN_COMMON_IMPL=1
 
        if [[ ${DISTUTILS_SINGLE_IMPL} ]]; then
                # reuse the dedicated code branch

Reply via email to