From 80d8bce1a6be1f869d7eb26247ae14351193fa7a Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 26 Jun 2009 23:01:46 +0000 Subject: Fix PROVIDE code since the Package class automatically evaluates USE conditionals now. svn path=/main/trunk/; revision=13702 --- bin/repoman | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/repoman b/bin/repoman index 1ca55cd8d..41c811039 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1237,14 +1237,15 @@ for x in scanlist: # if x.startswith("no"): # print "Bad RESTRICT value: %s" % x try: - myaux["PROVIDE"] = portage.dep.use_reduce( + portage.dep.use_reduce( portage.dep.paren_reduce(myaux["PROVIDE"]), matchall=1) except portage.exception.InvalidDependString, e: stats["PROVIDE.syntax"] = stats["PROVIDE.syntax"] + 1 fails["PROVIDE.syntax"].append(mykey+".ebuild PROVIDE: "+str(e)) del e continue - myaux["PROVIDE"] = " ".join(portage.flatten(myaux["PROVIDE"])) + + # The Package class automatically evaluates USE conditionals. for myprovide in myaux["PROVIDE"].split(): prov_cp = portage.dep_getkey(myprovide) if prov_cp != myprovide: -- cgit v1.2.3-1-g7c22