aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/source-checker
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2007-10-18 13:37:57 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2007-10-18 13:37:57 +0000
commit5dfeeef24d1802c6590f7943ffc6db6c5265985f (patch)
tree853fac77ecee9a6c785a9ceb69c09e46701a6252 /contrib/source-checker
parent6a30acc44364688866c7feafd2756b632ead3008 (diff)
downloadopenembedded-5dfeeef24d1802c6590f7943ffc6db6c5265985f.tar.gz
source-checker: move bad news to end of program (list of errors when program end)
Diffstat (limited to 'contrib/source-checker')
-rw-r--r--contrib/source-checker/oe-source-checker.py17
1 files changed, 12 insertions, 5 deletions
diff --git a/contrib/source-checker/oe-source-checker.py b/contrib/source-checker/oe-source-checker.py
index 45ddad9997..9ac147b00b 100644
--- a/contrib/source-checker/oe-source-checker.py
+++ b/contrib/source-checker/oe-source-checker.py
@@ -58,7 +58,7 @@ item = 1;
files_total = len(checksums_parser.sections())
files_checked = 0
files_good = 0
-files_wrong = 0
+files_wrong = []
for source in checksums_parser.sections():
archive = source.split("/")[-1]
@@ -86,7 +86,6 @@ for source in checksums_parser.sections():
if md5 != md5data:
file_ok = False
- print "\n%s has wrong md5: %s instead of %s url: %s" % (archive, md5data, md5, source)
shapipe = os.popen("oe_sha256sum " + localpath)
shadata = (shapipe.readline().split() or [ "" ])[0]
@@ -94,13 +93,21 @@ for source in checksums_parser.sections():
if shadata != "" and sha != shadata:
file_ok = False
- print "\n%s has wrong sha: %s instead of %s url: %s" % (archive, shadata, sha, source)
if file_ok:
files_good += 1
else:
- files_wrong += 1
+ files_wrong += [ [md5, md5data, sha, shadata, archive, source] ]
except:
pass
-print "\nChecked %d files. %d was OK and %d had wrong checksums." % (files_checked, files_good, files_wrong)
+print "\nChecked %d files. %d was OK and %d had wrong checksums." % (files_checked, files_good, len(files_wrong))
+
+if len(files_wrong) > 0:
+
+ print "\n"
+
+ for wrong_file in files_wrong:
+ print "%s [%s] is wrong" % ( wrong_file[4], wrong_file[5])
+ print "md5: %s instead of %s" % (wrong_file[1], wrong_file[0])
+ print "sha: %s instead of %s" % (wrong_file[3], wrong_file[2])