From: Alec Warner Date: Sat, 10 Jun 2006 22:54:44 +0000 (-0000) Subject: Fix LIVEVCS.stable for -* keywords X-Git-Tag: v2.1.1~503 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c2db634dd974530aa67d557e93a94410bd888f2c;p=portage.git Fix LIVEVCS.stable for -* keywords svn path=/main/trunk/; revision=3487 --- diff --git a/bin/repoman b/bin/repoman index b6808d1f9..4125aa972 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1020,7 +1020,7 @@ for x in scanlist: not be allowed to be marked stable """ if set(["darcs","cvs","subversion","git"]).intersection(myaux["INHERITED"].split()): - bad_stable_keywords = [keyword for keyword in myaux["KEYWORDS"].split() if not keyword.startswith("~")] + bad_stable_keywords = [keyword for keyword in myaux["KEYWORDS"].split() if not keyword.startswith("~") and not keyword.startswith("-")] if bad_stable_keywords: stats["LIVEVCS.stable"] += 1 fails["LIVEVCS.stable"].append(x+"/"+y+".ebuild with stable keywords:%s " % bad_stable_keywords)