repoman: remove ebuild.allmasked check
authorZac Medico <zmedico@gentoo.org>
Mon, 2 Jan 2012 07:48:07 +0000 (23:48 -0800)
committerZac Medico <zmedico@gentoo.org>
Mon, 2 Jan 2012 07:48:07 +0000 (23:48 -0800)
This check it pretty useless, since there packages don't necessarily
need to have any stable keywords, and nobody relies on this check to
decide when to keyword something. Also, remove references to the
ebuild.nostable which doesn't seem to exist anymore.

bin/repoman
man/repoman.1

index 1933489ef25bf45820937885cea43febf129c0ab..6e9125480aadba669b8ffc966515644a275096ec 100755 (executable)
@@ -373,8 +373,6 @@ qahelp={
        "digest.assumed":"Existing digest must be assumed correct (Package level only)",
        "digest.missing":"Some files listed in SRC_URI aren't referenced in the Manifest",
        "digest.unused":"Some files listed in the Manifest aren't referenced in SRC_URI",
-       "ebuild.nostable":"There are no ebuilds that are marked as stable for your ARCH",
-       "ebuild.allmasked":"All ebuilds are masked for this package (Package level only)",
        "ebuild.majorsyn":"This ebuild has a major syntax error that may cause the ebuild to fail partially or fully",
        "ebuild.minorsyn":"This ebuild has a minor syntax error that contravenes gentoo coding style",
        "ebuild.badheader":"This ebuild has a malformed header",
@@ -399,8 +397,6 @@ qawarnings = set((
 "digest.assumed",
 "digest.unused",
 "ebuild.notadded",
-"ebuild.nostable",
-"ebuild.allmasked",
 "ebuild.nesteddie",
 "desktop.invalid",
 "DEPEND.badmasked","RDEPEND.badmasked","PDEPEND.badmasked",
@@ -1593,7 +1589,6 @@ for x in effective_scanlist:
        changelog_path = os.path.join(checkdir_relative, "ChangeLog")
        changelog_modified = changelog_path in modified_changelogs
 
-       allmasked = True
        # detect unused local USE-descriptions
        used_useflags = set()
 
@@ -1776,7 +1771,6 @@ for x in effective_scanlist:
                                        arches.append([keyword, keyword[1:], [keyword[1:], keyword]])
                                else:
                                        arches.append([keyword, keyword, [keyword]])
-                                       allmasked = False
                        if not arches:
                                # Use an empty profile for checking dependencies of
                                # packages that have empty KEYWORDS.
@@ -2115,15 +2109,6 @@ for x in effective_scanlist:
                                fails["dependency.unknown"].append("%s: %s: %s" %
                                        (relative_path, mytype, ", ".join(sorted(atoms))))
 
-       # Check for 'all unstable' or 'all masked' -- ACCEPT_KEYWORDS is stripped
-       # XXX -- Needs to be implemented in dep code. Can't determine ~arch nicely.
-       #if not portage.portdb.xmatch("bestmatch-visible",x):
-       #    stats["ebuild.nostable"]+=1
-       #    fails["ebuild.nostable"].append(x)
-       if ebuildlist and allmasked and repolevel == 3:
-               stats["ebuild.allmasked"]+=1
-               fails["ebuild.allmasked"].append(x)
-
        # check if there are unused local USE-descriptions in metadata.xml
        # (unless there are any invalids, to avoid noise)
        if allvalid:
index 7bc5c45653de011ee0a0c670abe8c6aed00bff3f..f53a19e5f199cc4864ed9263cb8d691729a24bea 100644 (file)
@@ -274,9 +274,6 @@ Some files listed in SRC_URI aren't referenced in the Manifest
 .B digest.unused
 Some files listed in the Manifest aren't referenced in SRC_URI
 .TP
-.B ebuild.allmasked
-All ebuilds are masked for this package (Package level only)
-.TP
 .B ebuild.badheader
 This ebuild has a malformed header
 .TP
@@ -295,9 +292,6 @@ Ebuild files that do not have the same name as their parent directory
 .B ebuild.nesteddie
 Placing 'die' inside ( ) prints an error, but doesn't stop the ebuild.
 .TP
-.B ebuild.nostable
-There are no ebuilds that are marked as stable for your ARCH
-.TP
 .B ebuild.notadded
 Ebuilds that exist but have not been added to cvs
 .TP