summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.py
diff options
context:
space:
mode:
authorValerie R Young <spectranaut@riseup.net>2016-07-19 18:29:01 -0400
committerHolger Levsen <holger@layer-acht.org>2016-07-24 11:46:03 -0400
commitd5182ed952f11ff7452f9d3c420a5d42595e197a (patch)
tree63cfb440e080f9ae52b52bfc9a6a63092aaa70b8 /bin/reproducible_common.py
parentd93ae1f0c54527fdf5f1fc26ac582e51b6dff965 (diff)
downloadjenkins.debian.net-d5182ed952f11ff7452f9d3c420a5d42595e197a.tar.xz
reproducible debian: add collapsible sections to pkgset navigation
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_common.py')
-rwxr-xr-xbin/reproducible_common.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index 7566e78d..1c2df8ea 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -83,11 +83,12 @@ DEBIAN_DASHBOARD_URI = '/debian/reproducible.html'
JENKINS_URL = 'https://jenkins.debian.net'
# global package set definitions
+# META_PKGSET[pkgset_id] = (pkgset_name, pkgset_group)
# csv file columns: (pkgset_id, pkgset_group, pkgset_name)
META_PKGSET = {}
with open(os.path.join(BIN_PATH, './meta_pkgset.csv'), newline='') as f:
for line in csv.reader(f):
- META_PKGSET[int(line[0])] = line[2]
+ META_PKGSET[int(line[0])] = (line[2], line[1])
parser = argparse.ArgumentParser()
group = parser.add_mutually_exclusive_group()