diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-01-14 17:31:36 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-01-14 17:33:51 +0100 |
commit | b255d205ddf8eb6913b9f68d5a2efa6da2a667af (patch) | |
tree | 7af567631e85861d563968818c687dbecbcbc156 | |
parent | dd639c05cf10323fc842cf8f46624508929d43c0 (diff) | |
download | jenkins.debian.net-b255d205ddf8eb6913b9f68d5a2efa6da2a667af.tar.xz |
pbuilder: html_packages: strip out epoch also xfor buildinfo files
-rwxr-xr-x | bin/reproducible_html_packages.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 944e4afc..d1caaa9a 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -73,7 +73,7 @@ def check_package_status(package): 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 + '_' + version + '_amd64.buildinfo' + buildinfo = BUILDINFO_PATH + '/' + package + '_' + strip_epoch(version) + '_amd64.buildinfo' dbd = DBD_PATH + '/' + package + '_' + version + '.debbindiff.html' links = '' @@ -93,7 +93,7 @@ def gen_extra_links(package, version): else: log.debug('debbindiff not detetected at ' + dbd) if os.access(buildinfo, os.R_OK): - url = BUILDINFO_URI + '/' + package + '_' + version + '_amd64.buildinfo' + url = BUILDINFO_URI + '/' + package + '_' + strip_epoch(version) + '_amd64.buildinfo' links += '<a href="' + url + '" target="main">buildinfo</a>\n' if not default_view: default_view = url |