summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-08-06 19:29:40 +0000
committerZac Medico <zmedico@gentoo.org>2007-08-06 19:29:40 +0000
commitd90a4e2c6a38868faee26a9846bb34d5dc8e6a74 (patch)
tree6596e3b23b0ebd39909107d06e9bd8fcd8eca2ff /bin
parent001f5df9a5755dd92933b43f18f598506cdf91f3 (diff)
downloadportage-d90a4e2c6a38868faee26a9846bb34d5dc8e6a74.tar.gz
portage-d90a4e2c6a38868faee26a9846bb34d5dc8e6a74.tar.bz2
portage-d90a4e2c6a38868faee26a9846bb34d5dc8e6a74.zip
For bug #187795, remove pointless digest.disjointed and digest.notadded warnings since they are always added to cvs automatically anyway.
svn path=/main/trunk/; revision=7580
Diffstat (limited to 'bin')
-rwxr-xr-xbin/repoman12
1 files changed, 0 insertions, 12 deletions
diff --git a/bin/repoman b/bin/repoman
index b995c4706..ba2f163d1 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -137,8 +137,6 @@ qahelp={
"digest.fail":"Digest does not match the specified local file",
"digest.stray":"Digest files that do not have a corresponding ebuild",
"digest.missing":"Digest files that are missing (ebuild exists, digest doesn't)",
- "digest.disjointed":"Digests not added to cvs when the matching ebuild has been added",
- "digest.notadded":"Digests that exist but have not been added to cvs",
"digest.unmatch":"Digests which are incomplete (please check if your USE/ARCH includes all files)",
"ebuild.invalidname":"Ebuild files with a non-parseable or syntactically incorrect name (or using 2.1 versioning extensions)",
"ebuild.namenomatch":"Ebuild files that do not have the same name as their parent directory",
@@ -209,8 +207,6 @@ qawarnings=[
"ebuild.allmasked",
"ebuild.nesteddie",
"digest.assumed",
-"digest.notadded",
-"digest.disjointed",
"digest.missing",
"digestentry.unused",
"DEPEND.badmasked","RDEPEND.badmasked","PDEPEND.badmasked",
@@ -912,14 +908,6 @@ for x in scanlist:
for y in filesdirlist:
if not y.startswith("digest-"):
continue
- if y[7:] not in dadded:
- #digest not added to cvs
- stats["digest.notadded"]=stats["digest.notadded"]+1
- fails["digest.notadded"].append(x+"/files/"+y)
- if y[7:] in eadded:
- stats["digest.disjointed"]=stats["digest.disjointed"]+1
- fails["digest.disjointed"].append(x+"/files/"+y)
-
if os.stat(checkdir+"/files/"+y)[0] & 0x0248:
stats["file.executable"] += 1
fails["file.executable"].append(x+"/files/"+y)