From: Arfrever Frehtes Taifersar Arahesis Date: Tue, 11 Dec 2012 09:39:38 +0000 (+0100) Subject: Disallow SLOT="${slot}/${subslot}=" in ebuilds. X-Git-Tag: v2.2.0_alpha148~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f0e2fa9404570891e564d9c6f65f0d577ba53d35;p=portage.git Disallow SLOT="${slot}/${subslot}=" in ebuilds. --- diff --git a/pym/portage/dep/__init__.py b/pym/portage/dep/__init__.py index b3417e226..634b42bb5 100644 --- a/pym/portage/dep/__init__.py +++ b/pym/portage/dep/__init__.py @@ -64,7 +64,7 @@ def _get_slot_re(eapi_attrs): return slot_re if eapi_attrs.slot_operator: - slot_re = _slot + r'(/' + _slot + r'=?)?' + slot_re = _slot + r'(/' + _slot + r')?' else: slot_re = _slot