diff options
author | Jason Stubbs <jstubbs@gentoo.org> | 2005-12-25 10:49:40 +0000 |
---|---|---|
committer | Jason Stubbs <jstubbs@gentoo.org> | 2005-12-25 10:49:40 +0000 |
commit | 4c195aad5572ccd11d585f9768834344acc9f908 (patch) | |
tree | 910a56608e52a42b1d29049057a628db8f721079 | |
parent | 4a666b4e9bf3978ddcf64efe6f0829bfb276bf24 (diff) | |
download | portage-4c195aad5572ccd11d585f9768834344acc9f908.tar.gz portage-4c195aad5572ccd11d585f9768834344acc9f908.tar.bz2 portage-4c195aad5572ccd11d585f9768834344acc9f908.zip |
Remove the now unnecessary USE="*" hack.
svn path=/main/trunk/; revision=2469
-rw-r--r-- | pym/portage.py | 5 | ||||
-rw-r--r-- | pym/portage_dep.py | 4 |
2 files changed, 1 insertions, 8 deletions
diff --git a/pym/portage.py b/pym/portage.py index 24d1ded55..9129aa494 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -3292,10 +3292,7 @@ def dep_check(depstring,mydbapi,mysettings,use="yes",mode=None,myuse=None,use_ca #check_config_instance(mysettings) - if use=="all": - #enable everything (for repoman) - myusesplit=["*"] - elif use=="yes": + if use=="yes": if myuse==None: #default behavior myusesplit = string.split(mysettings["USE"]) diff --git a/pym/portage_dep.py b/pym/portage_dep.py index 287366734..59a48185d 100644 --- a/pym/portage_dep.py +++ b/pym/portage_dep.py @@ -73,10 +73,6 @@ def use_reduce(deparray, uselist=[], masklist=[], matchall=0, excludeall=[]): # Conditional with no target raise portage_exception.InvalidDependString("INVALID "+deparray[x]+" DEPEND STRING: "+str(deparray)) - #XXX: Compatibility -- Still required? - if ("*" in uselist): - matchall=1 - mydeparray = deparray[:] rlist = [] while mydeparray: |