From: Zac Medico Date: Sun, 10 Dec 2006 19:55:58 +0000 (-0000) Subject: For bug #157734, fix repoman isvalidatom() checks. Thanks to Brian Harring for the... X-Git-Tag: v2.1.2~325 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8a5bafa0dcb3d00b2662ad82f66f634af894a30a;p=portage.git For bug #157734, fix repoman isvalidatom() checks. Thanks to Brian Harring for the patch. svn path=/main/trunk/; revision=5263 --- diff --git a/pym/portage_dep.py b/pym/portage_dep.py index a3186e8f1..f284ae73a 100644 --- a/pym/portage_dep.py +++ b/pym/portage_dep.py @@ -333,6 +333,8 @@ def isvalidatom(atom): global _invalid_atom_chars_regexp if _invalid_atom_chars_regexp.search(atom): return 0 + if atom.startswith("!"): + atom = atom[1:] mycpv_cps = catpkgsplit(dep_getcpv(atom)) operator = get_operator(atom) if operator: