summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-10-06 06:10:07 +0000
committerZac Medico <zmedico@gentoo.org>2009-10-06 06:10:07 +0000
commitdaff4f017cbe9d14f147d0f7d46eef9ac776be49 (patch)
treecb24fac3ed3fd4c919ae7a4fb586c13b436d5534 /bin/repoman
parent2286d42ec0fd630eda45c2b1dbb867b98be76668 (diff)
downloadportage-daff4f017cbe9d14f147d0f7d46eef9ac776be49.tar.gz
portage-daff4f017cbe9d14f147d0f7d46eef9ac776be49.tar.bz2
portage-daff4f017cbe9d14f147d0f7d46eef9ac776be49.zip
Add a 'digest.missing' check, for cases like mythtv where the eclass has
modified the SRC_URI and now the Manifest has missing digests. Thanks to Brian Harring for the suggestion. svn path=/main/trunk/; revision=14500
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman15
1 files changed, 11 insertions, 4 deletions
diff --git a/bin/repoman b/bin/repoman
index 80939ca92..fd20b0778 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -314,7 +314,9 @@ qahelp={
"RDEPEND.implicit":"RDEPEND is unset in the ebuild which triggers implicit RDEPEND=$DEPEND assignment",
"RDEPEND.suspect":"RDEPEND contains a package that usually only belongs in DEPEND.",
"RESTRICT.invalid":"This ebuild contains invalid RESTRICT values.",
- "digestentry.unused":"Some files listed in the Manifest aren't referenced in SRC_URI",
+ "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",
@@ -336,7 +338,8 @@ qacats.sort()
qawarnings = set((
"changelog.missing",
"changelog.notadded",
-"digestentry.unused",
+"digest.assumed",
+"digest.unused",
"ebuild.notadded",
"ebuild.nostable",
"ebuild.allmasked",
@@ -1094,8 +1097,12 @@ for x in scanlist:
myfiles_all = set(myfiles_all)
for entry in mydigests:
if entry not in myfiles_all:
- stats["digestentry.unused"] += 1
- fails["digestentry.unused"].append(checkdir+"::"+entry)
+ stats["digest.unused"] += 1
+ fails["digest.unused"].append(checkdir+"::"+entry)
+ for entry in myfiles_all:
+ if entry not in mydigests:
+ stats["digest.missing"] += 1
+ fails["digest.missing"].append(checkdir+"::"+entry)
del myfiles_all
if os.path.exists(checkdir+"/files"):