summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_packages.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-08-11 12:28:55 +0000
committerHolger Levsen <holger@layer-acht.org>2015-08-15 12:48:52 +0200
commit9886c231a9a06be98c7c67268ddfb1c289377307 (patch)
tree335225eebe56f4e2500588569e2607862d0551ab /bin/reproducible_html_packages.py
parent751b74789cda5cfcca419ae6e457949087aa8a9e (diff)
downloadjenkins.debian.net-9886c231a9a06be98c7c67268ddfb1c289377307.tar.xz
reproducible: _html_packages: add architecture qualifier after the current suite name
Diffstat (limited to 'bin/reproducible_html_packages.py')
-rwxr-xr-xbin/reproducible_html_packages.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py
index 448df8cd..92b9a43a 100755
--- a/bin/reproducible_html_packages.py
+++ b/bin/reproducible_html_packages.py
@@ -16,7 +16,7 @@ html_package_page = Template((tab*2).join(("""
<tr>
<td>
<span class="avoidwrap">
- <span style="font-size:1.2em;">$package</span> $suite: $version
+ <span style="font-size:1.2em;">$package</span> $suite/$arch: $version
$status
<span style="font-size:0.9em;">$build_time:</span>
</span>
@@ -202,6 +202,7 @@ def gen_packages_html(packages, no_clean=False):
html = html_package_page.substitute(
package=pkg,
suite=suite,
+ arch=arch,
status=status,
version=version,
build_time=build_date,