From: Michał Górny Date: Tue, 19 Nov 2019 06:59:04 +0000 (+0100) Subject: python-any-r1.eclass: Fix stripping :0= from PyPy w/ REQ_USE set X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bccbef7b48914b47441c60b692b3cb99dc17e2a8;p=gentoo.git python-any-r1.eclass: Fix stripping :0= from PyPy w/ REQ_USE set Signed-off-by: Michał Górny --- diff --git a/eclass/python-any-r1.eclass b/eclass/python-any-r1.eclass index db8f23647cd1..3863ef6fa849 100644 --- a/eclass/python-any-r1.eclass +++ b/eclass/python-any-r1.eclass @@ -156,7 +156,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/:0=/:0} ${deps}" done deps="|| ( ${deps})"