python-utils-r1.eclass: Replace python_export with getters
authorMichał Górny <mgorny@gentoo.org>
Fri, 20 Mar 2020 08:10:44 +0000 (09:10 +0100)
committerMichał Górny <mgorny@gentoo.org>
Sun, 22 Mar 2020 05:36:57 +0000 (06:36 +0100)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
eclass/python-utils-r1.eclass

index e6c6ac1155f27c21acd8eb66d9f39d47505f3f15..064114b4faa3ea752461921485f90743c98f4823 100644 (file)
@@ -774,9 +774,8 @@ python_newexe() {
        local f=${1}
        local newfn=${2}
 
-       local PYTHON_SCRIPTDIR d
-       python_export PYTHON_SCRIPTDIR
-       d=${PYTHON_SCRIPTDIR#${EPREFIX}}
+       local scriptdir=$(python_get_scriptdir)
+       local d=${scriptdir#${EPREFIX}}
 
        (
                dodir "${wrapd}"
@@ -902,10 +901,8 @@ python_domodule() {
                d=${python_moduleroot}
        else
                # relative to site-packages
-               local PYTHON_SITEDIR=${PYTHON_SITEDIR}
-               [[ ${PYTHON_SITEDIR} ]] || python_export PYTHON_SITEDIR
-
-               d=${PYTHON_SITEDIR#${EPREFIX}}/${python_moduleroot//.//}
+               local sitedir=$(python_get_sitedir)
+               d=${sitedir#${EPREFIX}}/${python_moduleroot//.//}
        fi
 
        (
@@ -935,10 +932,8 @@ python_doheader() {
 
        [[ ${EPYTHON} ]] || die 'No Python implementation set (EPYTHON is null).'
 
-       local d PYTHON_INCLUDEDIR=${PYTHON_INCLUDEDIR}
-       [[ ${PYTHON_INCLUDEDIR} ]] || python_export PYTHON_INCLUDEDIR
-
-       d=${PYTHON_INCLUDEDIR#${EPREFIX}}
+       local includedir=$(python_get_includedir)
+       local d=${includedir#${EPREFIX}}
 
        (
                insopts -m 0644