summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-01-14 17:44:30 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-14 17:46:35 +0100
commita8f4e2aa4a4f310300dbb631f43d34849061ac7e (patch)
tree4a0e32a66cef253eaaf27ee9cb52aa128af57f09 /bin
parentb255d205ddf8eb6913b9f68d5a2efa6da2a667af (diff)
downloadjenkins.debian.net-a8f4e2aa4a4f310300dbb631f43d34849061ac7e.tar.xz
pbuilder: html_packages: strip out epoch also for debbindiff files
Diffstat (limited to 'bin')
-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 d1caaa9a..3ce58166 100755
--- a/bin/reproducible_html_packages.py
+++ b/bin/reproducible_html_packages.py
@@ -74,7 +74,7 @@ def gen_extra_links(package, version):
notes = NOTES_PATH + '/' + package + '_note.html'
rbuild = RBUILD_PATH + '/' + package + '_' + strip_epoch(version) + '.rbuild.log'
buildinfo = BUILDINFO_PATH + '/' + package + '_' + strip_epoch(version) + '_amd64.buildinfo'
- dbd = DBD_PATH + '/' + package + '_' + version + '.debbindiff.html'
+ dbd = DBD_PATH + '/' + package + '_' + strip_epoch(version) + '.debbindiff.html'
links = ''
default_view = False
@@ -86,7 +86,7 @@ def gen_extra_links(package, version):
else:
log.debug('notes not detected at ' + notes)
if os.access(dbd, os.R_OK):
- url = DBD_URI + '/' + package + '_' + version + '.debbindiff.html'
+ url = DBD_URI + '/' + package + '_' + strip_epoch(version) + '.debbindiff.html'
links += '<a href="' + url + '" target="main">debbindiff</a>\n'
if not default_view:
default_view = url