summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-01-11 17:34:18 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-11 17:17:57 +0000
commit55ba270573179c672f344d035920271fceb5326a (patch)
treeefa86863bd8b56ef696a397b90af70b218791b53 /bin
parent39ba372bf30e0f9594effc66e6a12d5a7f9025b7 (diff)
downloadjenkins.debian.net-55ba270573179c672f344d035920271fceb5326a.tar.xz
reproducible: html_packages: use de-epoched version also in the rbuild link
This change also made the rbuild link "optional": it will be displayed only if there is a rbuild file.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_html_packages.py28
1 files changed, 13 insertions, 15 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py
index ecf22a8b..3b6142d2 100755
--- a/bin/reproducible_html_packages.py
+++ b/bin/reproducible_html_packages.py
@@ -21,7 +21,6 @@ html_package_page = Template((tab*2).join(("""
</a>
<span style="font-size:0.9em;">at $build_time:</span>
$links
- <a href="/userContent/rbuild/${package}_$version.rbuild.log" target="main">rbuild ($rbuild_size)</a>
<a href="https://packages.qa.debian.org/$package" target="main">PTS</a>
<a href="https://bugs.debian.org/src:$package" target="main">BTS</a>
<a href="https://sources.debian.net/src/$package/" target="main">sources</a>
@@ -73,6 +72,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'
dbd = DBD_PATH + '/' + package + '_' + version + '.debbindiff.html'
@@ -99,6 +99,16 @@ def gen_extra_links(package, version):
default_view = url
else:
log.debug('buildinfo not detected at ' + buildinfo)
+ if os.access(rbuild, os.R_OK):
+ url = RBUILD_URI + '/' + package + '_' + strip_epoch(version) + '.rbuild.log'
+ log_size = os.stat(rbuild).st_size
+ links +='<a href="' + url + '" target="main">rbuild (' + \
+ sizeof_fmt(log_size) + ')</a>\n'
+ if not default_view:
+ default_view = url
+ else:
+ log.warning('The package ' + package +
+ ' did not produce any buildlog! Check ' + rbuild)
return (links, default_view)
@@ -115,31 +125,19 @@ def process_packages(packages):
log.info('Generating the page of ' + pkg + ' ' + version +
' builded at ' + build_date)
- rbuild = RBUILD_PATH + '/' + pkg + '_' + strip_epoch(version) + '.rbuild.log'
links, default_view = gen_extra_links(pkg, version)
-
- if not default_view: # this is only possible only if there are no notes,
- # debbindiff or buildinfo files
- default_view = RBUILD_URI + '/' + pkg + '_' + version + '.rbuild.log'
- try:
- log_size = os.stat(rbuild).st_size
- except OSError:
- log.warning('The package ' + pkg +
- ' did not produce any buildlog! Check ' + rbuild)
- log_size = 0
- pass
status, icon = join_status_icon(status, pkg, version)
+
html = html_package_page.substitute(package=pkg,
status=status,
version=version,
build_time=build_date,
icon=icon,
links=links,
- rbuild_size=sizeof_fmt(log_size),
default_view=default_view)
destfile = RB_PKG_PATH + '/' + pkg + '.html'
desturl = REPRODUCIBLE_URL + RB_PKG_URI + '/' + pkg + '.html'
- title = pkg + ' reproducible build results'
+ title = pkg + ' - reproducible build results'
write_html_page(title=title, body=html, destfile=destfile,
noheader=True, nofooter=True, noendpage=True)
log.info("Package page generated at " + desturl)