diff options
| author | Michał Górny <mgorny@gentoo.org> | 2025-02-13 07:28:16 +0100 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2025-02-15 08:08:59 +0100 |
| commit | 31b129be4f0f35449691a98a7b51db1a7f835c70 (patch) | |
| tree | f7f196817697310d2af5ec8e9511eb4e90602304 /eclass/python-any-r1.eclass | |
| parent | 0299d39ab3e2201a7e689eaf26054d12ee0c18ff (diff) | |
| download | gentoo-31b129be4f0f35449691a98a7b51db1a7f835c70.tar.gz gentoo-31b129be4f0f35449691a98a7b51db1a7f835c70.tar.bz2 gentoo-31b129be4f0f35449691a98a7b51db1a7f835c70.zip | |
python-any-r1.eclass: Fix := stripping again (now we have :3.11=)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/python-any-r1.eclass')
| -rw-r--r-- | eclass/python-any-r1.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/python-any-r1.eclass b/eclass/python-any-r1.eclass index adc7b1bfec47..d581b6a4647f 100644 --- a/eclass/python-any-r1.eclass +++ b/eclass/python-any-r1.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: python-any-r1.eclass @@ -175,7 +175,7 @@ _python_any_set_globals() { _python_export "${i}" PYTHON_PKG_DEP # note: need to strip '=' slot operator for || deps - deps="${PYTHON_PKG_DEP/:=} ${deps}" + deps="${PYTHON_PKG_DEP/=} ${deps}" done deps="|| ( ${deps})" @@ -258,7 +258,7 @@ python_gen_any_dep() { local i_depstr=${depstr//\$\{PYTHON_USEDEP\}/${PYTHON_USEDEP}} i_depstr=${i_depstr//\$\{PYTHON_SINGLE_USEDEP\}/${PYTHON_SINGLE_USEDEP}} # note: need to strip '=' slot operator for || deps - out="( ${PYTHON_PKG_DEP/:=} ${i_depstr} ) ${out}" + out="( ${PYTHON_PKG_DEP/=} ${i_depstr} ) ${out}" done echo "|| ( ${out})" } |
