diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-05-16 17:05:20 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-05-16 17:05:20 -0700 |
commit | 258f6393a8936e4a1c97f17f0ce15c98fc8bc467 (patch) | |
tree | 6c0ba7c1073149bff74db22137cc67463a251233 /bin | |
parent | Only count "merge" nodes when determining whether or not to trigger (diff) | |
download | portage-multirepo-258f6393a8936e4a1c97f17f0ce15c98fc8bc467.tar.gz portage-multirepo-258f6393a8936e4a1c97f17f0ce15c98fc8bc467.tar.bz2 portage-multirepo-258f6393a8936e4a1c97f17f0ce15c98fc8bc467.zip |
New mode: manifest-check - Checks Manifests for missing or incorrect digests
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/repoman | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/repoman b/bin/repoman index 7a4eafb2..14d442dc 100755 --- a/bin/repoman +++ b/bin/repoman @@ -150,6 +150,7 @@ def ParseArgs(args, qahelp): 'full' : 'Scan directory tree and print all issues (not a summary)', 'help' : 'Show this screen', 'manifest' : 'Generate a Manifest (fetches files if necessary)', + 'manifest-check' : 'Check Manifests for missing or incorrect digests', 'scan' : 'Scan directory tree for QA issues' } @@ -331,6 +332,7 @@ qahelp={ "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", + "manifest.bad":"Manifest has missing or incorrect digests", "metadata.missing":"Missing metadata.xml files", "metadata.bad":"Bad metadata.xml files", "metadata.warning":"Warnings in metadata.xml files", @@ -1000,6 +1002,14 @@ for x in scanlist: checkdir_relative = os.path.join(catdir, checkdir_relative) checkdir_relative = os.path.join(".", checkdir_relative) + if options.mode == 'manifest-check': + repoman_settings['O'] = checkdir + repoman_settings['PORTAGE_QUIET'] = '1' + if not portage.digestcheck([], repoman_settings, strict=1): + stats["manifest.bad"] += 1 + fails["manifest.bad"].append(os.path.join(x, 'Manifest')) + continue + if options.mode == "manifest" or \ options.mode in ('commit', 'fix') and not options.pretend: auto_assumed = set() |