diff options
| author | Michał Górny <mgorny@gentoo.org> | 2025-02-13 09:38:15 +0100 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2025-02-15 08:09:00 +0100 |
| commit | 5f4a7c8aca6407db4183a59382eee342437cf91c (patch) | |
| tree | 6bb158416b2124a0c8720dcd81f0526e08b3d891 /eclass/python-r1.eclass | |
| parent | 31b129be4f0f35449691a98a7b51db1a7f835c70 (diff) | |
| download | gentoo-5f4a7c8aca6407db4183a59382eee342437cf91c.tar.gz gentoo-5f4a7c8aca6407db4183a59382eee342437cf91c.tar.bz2 gentoo-5f4a7c8aca6407db4183a59382eee342437cf91c.zip | |
python-r1.eclass: Fix PYTHON_PKG_DEP stripping (we have :3.11= now)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/python-r1.eclass')
| -rw-r--r-- | eclass/python-r1.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass index 9b03a269e88b..02d7215320a2 100644 --- a/eclass/python-r1.eclass +++ b/eclass/python-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-r1.eclass @@ -518,7 +518,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}" fi done echo "|| ( ${out})" |
