From: Zac Medico Date: Wed, 30 May 2012 20:25:08 +0000 (-0700) Subject: _wildcard_set: specify allow_repo=False X-Git-Tag: v2.2.0_alpha109~26 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b6fa4dbba0297226ade42ad86b8ca95a5764e34b;p=portage.git _wildcard_set: specify allow_repo=False This make is behave as it did prior to the change in Atom constructor behavior in commit 587cce4816afc7d57b3edf0be6c0670ec0be89c9. --- diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 572cea71d..be49b0f70 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -85,9 +85,9 @@ def _wildcard_set(atoms): pkgs = InternalPackageSet(allow_wildcard=True) for x in atoms: try: - x = Atom(x, allow_wildcard=True) + x = Atom(x, allow_wildcard=True, allow_repo=False) except portage.exception.InvalidAtom: - x = Atom("*/" + x, allow_wildcard=True) + x = Atom("*/" + x, allow_wildcard=True, allow_repo=False) pkgs.add(x) return pkgs