projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
587cce4
)
_wildcard_set: specify allow_repo=False
author
Zac Medico
<zmedico@gentoo.org>
Wed, 30 May 2012 20:25:08 +0000
(13:25 -0700)
committer
Zac Medico
<zmedico@gentoo.org>
Wed, 30 May 2012 20:25:08 +0000
(13:25 -0700)
This make is behave as it did prior to the change in Atom constructor
behavior in commit
587cce4816afc7d57b3edf0be6c0670ec0be89c9
.
pym/_emerge/depgraph.py
patch
|
blob
|
history
diff --git
a/pym/_emerge/depgraph.py
b/pym/_emerge/depgraph.py
index 572cea71d612c1c48dc18e64969857ca913d9795..be49b0f70da1beb5b0c5c0bd088ef7739c06237d 100644
(file)
--- 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