aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-01-01 23:48:07 -0800
committerZac Medico <zmedico@gentoo.org>2012-01-01 23:48:07 -0800
commit2fce72c6af32d2d1ffc92684e810f221185cdda8 (patch)
tree9ffa1e2c64c326eee73f53b909923c5089621f9a
parentrepoman: discard xmatch caches from previous pkgs (diff)
downloadportage-2fce72c6af32d2d1ffc92684e810f221185cdda8.tar.gz
portage-2fce72c6af32d2d1ffc92684e810f221185cdda8.tar.bz2
portage-2fce72c6af32d2d1ffc92684e810f221185cdda8.zip
repoman: remove ebuild.allmasked check
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.
-rwxr-xr-xbin/repoman15
-rw-r--r--man/repoman.16
2 files changed, 0 insertions, 21 deletions
diff --git a/bin/repoman b/bin/repoman
index 1933489ef..6e9125480 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -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:
diff --git a/man/repoman.1 b/man/repoman.1
index 7bc5c4565..f53a19e5f 100644
--- a/man/repoman.1
+++ b/man/repoman.1
@@ -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