diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-03-20 09:16:27 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-03-22 06:36:57 +0100 |
commit | e230589a0c796ee7e7b22ed52d1a32ef88763b32 (patch) | |
tree | 6d43c03c25b47f502d75906f1fd8516c18aa8949 /eclass/python-single-r1.eclass | |
parent | python-utils-r1.eclass: Replace python_export with getters (diff) | |
download | gentoo-e230589a0c796ee7e7b22ed52d1a32ef88763b32.tar.gz gentoo-e230589a0c796ee7e7b22ed52d1a32ef88763b32.tar.bz2 gentoo-e230589a0c796ee7e7b22ed52d1a32ef88763b32.zip |
python-utils-r1.eclass: Mark python_export private
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/python-single-r1.eclass')
-rw-r--r-- | eclass/python-single-r1.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/python-single-r1.eclass b/eclass/python-single-r1.eclass index 888db3631d9c..ab3df94dcf11 100644 --- a/eclass/python-single-r1.eclass +++ b/eclass/python-single-r1.eclass @@ -213,7 +213,7 @@ _python_single_set_globals() { local deps= i PYTHON_PKG_DEP for i in "${_PYTHON_SUPPORTED_IMPLS[@]}"; do - python_export "${i}" PYTHON_PKG_DEP + _python_export "${i}" PYTHON_PKG_DEP # 1) well, python-exec would suffice as an RDEP # but no point in making this overcomplex, BDEP doesn't hurt anyone # 2) python-exec should be built with all targets forced anyway @@ -436,7 +436,7 @@ python_gen_impl_dep() { for impl in "${_PYTHON_SUPPORTED_IMPLS[@]}"; do if _python_impl_matches "${impl}" "${@}"; then local PYTHON_PKG_DEP - python_export "${impl}" PYTHON_PKG_DEP + _python_export "${impl}" PYTHON_PKG_DEP matches+=( "python_single_target_${impl}? ( ${PYTHON_PKG_DEP} )" ) fi done @@ -465,7 +465,7 @@ python_setup() { ewarn ewarn "Dependencies won't be satisfied, and PYTHON_SINGLE_TARGET flags will be ignored." - python_export "${impls[0]}" EPYTHON PYTHON + _python_export "${impls[0]}" EPYTHON PYTHON _python_wrapper_setup einfo "Using ${EPYTHON} to build" return @@ -483,7 +483,7 @@ python_setup() { die "More than one implementation in PYTHON_SINGLE_TARGET." fi - python_export "${impl}" EPYTHON PYTHON + _python_export "${impl}" EPYTHON PYTHON _python_wrapper_setup einfo "Using ${EPYTHON} to build" fi |