summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-08-22 13:13:19 +0200
committerHolger Levsen <holger@layer-acht.org>2015-08-22 13:13:19 +0200
commitefe9b8d99cc784d3e1bad231ebbd8483c5083d49 (patch)
tree8200e23569e1052e541bd7cd2b7979f0074c764e
parent7e450121b6d25eb58039233a06a7eaf8c719aba5 (diff)
downloadjenkins.debian.net-efe9b8d99cc784d3e1bad231ebbd8483c5083d49.tar.xz
reproducible: only show links to unstable/armhf
-rwxr-xr-xbin/reproducible_html_packages.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py
index c12a2531..91590589 100755
--- a/bin/reproducible_html_packages.py
+++ b/bin/reproducible_html_packages.py
@@ -167,11 +167,11 @@ def gen_extra_links(package, version, suite, arch, status):
def gen_suites_links(package, current_arch):
html = '<ul>\n'
for a in ARCHS:
- if current_arch == 'amd64' and a != 'amd64':
- continue
html += tab + '<li>{}\n'.format(a)
html += tab + '<ul class="children">\n'
for s in SUITES:
+ if a == 'armhf' and s != 'unstable':
+ continue
status = package.get_status(s, a)
if not status: # The package is not available in that suite/arch
continue