From 36feec984328edc2ecf54efd06932e97535b86e8 Mon Sep 17 00:00:00 2001 From: Valerie R Young Date: Thu, 31 Mar 2016 21:33:42 -0400 Subject: reproducible debian: updated reproducible-tracker.json --- bin/reproducible_json.py | 39 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 37 insertions(+), 2 deletions(-) (limited to 'bin/reproducible_json.py') diff --git a/bin/reproducible_json.py b/bin/reproducible_json.py index 0200ded5..5cf7be38 100755 --- a/bin/reproducible_json.py +++ b/bin/reproducible_json.py @@ -16,7 +16,6 @@ import json import os import tempfile - output = [] output4tracker = [] @@ -32,13 +31,49 @@ result = sorted(query_db(query)) log.info('\tprocessing ' + str(len(result))) keys = ['package', 'version', 'suite', 'architecture', 'status', 'build_date'] +crossarchkeys = ['package', 'version', 'suite', 'status'] +archdetailkeys = ['architecture', 'status', 'build_date'] + +# crossarch is a dictionary of all packages used to build a summary of the package's test results +# across all archs (for suite=unstable only) +crossarch = {} for row in result: pkg = dict(zip(keys, row)) log.debug(pkg) output.append(pkg) + # tracker.d.o should only care about results in unstable if pkg['suite'] == 'unstable': - output4tracker.append(pkg) + + package = pkg['package'] + if package in crossarch: + + # compare statuses to get cross-arch package status + status1 = crossarch[package]['status'] + status2 = pkg['status'] + newstatus = '' + + if 'FTBFS' in [status1, status2]: + newstatus = 'FTBFS' + elif 'unreproducible' in [status1, status2]: + newstatus = 'unreproducible' + elif 'reproducible' in [status1, status2]: + newstatus = 'reproducible' + else: + newstatus = 'depwait' + + # update the crossarch status + crossarch[package]['status'] = newstatus + + # add arch specific test results to architecture_details list + crossarch[package]['architecture_details'].append({key:pkg[key] for key in archdetailkeys}) + + else: + # add package to crossarch + crossarch[package] = {key:pkg[key] for key in crossarchkeys} + crossarch[package]['architecture_details'] = [{key:pkg[key] for key in archdetailkeys}] + +output4tracker = list(crossarch.values()) # normal json tmpfile = tempfile.mkstemp(dir=os.path.dirname(REPRODUCIBLE_JSON))[1] -- cgit v1.2.3-54-g00ecf