summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.py
diff options
context:
space:
mode:
authorValerie R Young <spectranaut@riseup.net>2016-07-19 18:22:02 -0400
committerHolger Levsen <holger@layer-acht.org>2016-07-24 11:46:03 -0400
commitd93ae1f0c54527fdf5f1fc26ac582e51b6dff965 (patch)
treea82ce7f4bdb43849de12e711a96e98c72e664974 /bin/reproducible_common.py
parent04ce1ef4e0778b6387739a4ba5b56fdbe90d0567 (diff)
downloadjenkins.debian.net-d93ae1f0c54527fdf5f1fc26ac582e51b6dff965.tar.xz
reproducible debian: add categories to meta_pkgset definitions
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_common.py')
-rwxr-xr-xbin/reproducible_common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index 13ef358f..7566e78d 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -83,11 +83,11 @@ DEBIAN_DASHBOARD_URI = '/debian/reproducible.html'
JENKINS_URL = 'https://jenkins.debian.net'
# global package set definitions
-# for unknown historical reasons the meta_pkgset list is 1-indexed
+# 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[1]
+ META_PKGSET[int(line[0])] = line[2]
parser = argparse.ArgumentParser()
group = parser.add_mutually_exclusive_group()