Remove the now unnecessary USE="*" hack.
authorJason Stubbs <jstubbs@gentoo.org>
Sun, 25 Dec 2005 10:49:40 +0000 (10:49 -0000)
committerJason Stubbs <jstubbs@gentoo.org>
Sun, 25 Dec 2005 10:49:40 +0000 (10:49 -0000)
svn path=/main/trunk/; revision=2469

pym/portage.py
pym/portage_dep.py

index 24d1ded55463949f65c8eaa65abd336fd46f9d21..9129aa494f7443fc83bc61b495a1f558c58483ff 100644 (file)
@@ -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"])
index 287366734a7c4fa8e994b46ca5736bdebabb7880..59a48185d940338580c4efcc9933a39db06673ea 100644 (file)
@@ -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: