summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-08-06 19:30:18 +0000
committerZac Medico <zmedico@gentoo.org>2007-08-06 19:30:18 +0000
commit32181823b62df1ecf7e8a81df794d5318379bf3e (patch)
tree4269d8656a8c4dfd3f960d3cb20c9ffb439b2798 /bin/repoman
parent3e402982231db8daa15c0a3a43087457445bd7e5 (diff)
downloadportage-32181823b62df1ecf7e8a81df794d5318379bf3e.tar.gz
portage-32181823b62df1ecf7e8a81df794d5318379bf3e.tar.bz2
portage-32181823b62df1ecf7e8a81df794d5318379bf3e.zip
For bug #187795, remove pointless digest.disjointed and digest.notadded warnings since they are always added to cvs automatically anyway. (trunk r7580)
svn path=/main/branches/2.1.2/; revision=7581
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman12
1 files changed, 0 insertions, 12 deletions
diff --git a/bin/repoman b/bin/repoman
index 081c8b021..20899baf9 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -135,8 +135,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",
@@ -207,8 +205,6 @@ qawarnings=[
"ebuild.allmasked",
"ebuild.nesteddie",
"digest.assumed",
-"digest.notadded",
-"digest.disjointed",
"digest.missing",
"digestentry.unused",
"DEPEND.badmasked","RDEPEND.badmasked","PDEPEND.badmasked",
@@ -910,14 +906,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)