summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-05-30 13:25:08 -0700
committerZac Medico <zmedico@gentoo.org>2012-05-30 13:25:08 -0700
commitb6fa4dbba0297226ade42ad86b8ca95a5764e34b (patch)
tree9afe39d73a7efb1c1c35966dd5325c2a3b43e475 /pym
parent587cce4816afc7d57b3edf0be6c0670ec0be89c9 (diff)
downloadportage-b6fa4dbba0297226ade42ad86b8ca95a5764e34b.tar.gz
portage-b6fa4dbba0297226ade42ad86b8ca95a5764e34b.tar.bz2
portage-b6fa4dbba0297226ade42ad86b8ca95a5764e34b.zip
_wildcard_set: specify allow_repo=False
This make is behave as it did prior to the change in Atom constructor behavior in commit 587cce4816afc7d57b3edf0be6c0670ec0be89c9.
Diffstat (limited to 'pym')
-rw-r--r--pym/_emerge/depgraph.py4
1 files changed, 2 insertions, 2 deletions
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