commit: 8a03543f3c9a7adbc73ecee5e6c693156011b389
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 10 15:24:05 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May 16 17:11:33 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a03543f
python-r1.eclass: python_gen_cond_dep, use _python_impl_matches()
eclass/python-r1.eclass | 27 +++++++++++----------------
1 file changed, 11 insertions(+), 16 deletions(-)
diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass
index 7ec77acd866..2618c6f5703 100644
--- a/eclass/python-r1.eclass
+++ b/eclass/python-r1.eclass
@@ -364,27 +364,22 @@ python_gen_useflags() {
python_gen_cond_dep() {
debug-print-function ${FUNCNAME} "${@}"
- local impl pattern
- local matches=()
-
+ local impl matches=()
local dep=${1}
shift
for impl in "${_PYTHON_SUPPORTED_IMPLS[@]}"; do
- for pattern; do
- if [[ ${impl} == ${pattern} ]]; then
- # substitute ${PYTHON_USEDEP} if used
- # (since python_gen_usedep() will not return
${PYTHON_USEDEP}
- # the code is run at most once)
- if [[ ${dep} == *'${PYTHON_USEDEP}'* ]]; then
- local usedep=$(python_gen_usedep "${@}")
-
dep=${dep//\$\{PYTHON_USEDEP\}/${usedep}}
- fi
-
- matches+=( "python_targets_${impl}? ( ${dep} )"
)
- break
+ if _python_impl_matches "${impl}" "${@}"; then
+ # substitute ${PYTHON_USEDEP} if used
+ # (since python_gen_usedep() will not return
${PYTHON_USEDEP}
+ # the code is run at most once)
+ if [[ ${dep} == *'${PYTHON_USEDEP}'* ]]; then
+ local usedep=$(python_gen_usedep "${@}")
+ dep=${dep//\$\{PYTHON_USEDEP\}/${usedep}}
fi
- done
+
+ matches+=( "python_targets_${impl}? ( ${dep} )" )
+ fi
done
echo "${matches[@]}"