summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_pkg_sets.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-11-08 22:08:53 +0100
committerHolger Levsen <holger@layer-acht.org>2016-11-08 22:08:53 +0100
commitfe6a86ad5070ac5438ab2b3b93dc96f4b64a6fb7 (patch)
treecdb43d4bc76564782267b584bdf956889e6c2ab5 /bin/reproducible_html_pkg_sets.py
parent8a8db27fafce64c38ba916931fceca7921e9d322 (diff)
downloadjenkins.debian.net-fe6a86ad5070ac5438ab2b3b93dc96f4b64a6fb7.tar.xz
reproducible Debian: other states includes depwait
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_html_pkg_sets.py')
-rwxr-xr-xbin/reproducible_html_pkg_sets.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_pkg_sets.py b/bin/reproducible_html_pkg_sets.py
index 99a19ebe..0cf155c4 100755
--- a/bin/reproducible_html_pkg_sets.py
+++ b/bin/reproducible_html_pkg_sets.py
@@ -220,14 +220,14 @@ def create_pkgset_page_and_graphs(suite, arch, stats, pkgset_name):
('unreproducible', 'bad', 'failed to build reproducibly'),
('FTBFS', 'ugly', 'failed to build from source'),
('rest', 'rest',
- 'are either blacklisted, not for us or cannot be downloaded'),
+ 'are either in depwait state, blacklisted, not for us, or cannot be downloaded'),
('reproducible', 'good', 'successfully build reproducibly'),
]
for (status, cutename, description) in status_cutename_descriptions:
icon_html = ''
if status == 'rest':
- for s in ['not_for_us', 'blacklisted', '404']:
+ for s in ['depwait', 'blacklisted', 'not_for_us', '404']:
s, icon, spokenstatus = get_status_icon(s)
icon_html += gen_status_link_icon(s, None, icon, suite, arch)
else: