summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_breakages.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-05-30 02:34:04 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-01 16:39:12 +0200
commit03480336a8402a09d8cafff8ebaa203f91bb6043 (patch)
tree74dffb5c57b609f912dd671697d5081809f8d15b /bin/reproducible_breakages.py
parent427e2f31a1dcbc3b6a6c968d4d4dbdf217ea7a99 (diff)
downloadjenkins.debian.net-03480336a8402a09d8cafff8ebaa203f91bb6043.tar.xz
reproducible: html_packages, breakages: use that pkg_has_rbuild function. Gain support for .gz rbuilds for free
Diffstat (limited to 'bin/reproducible_breakages.py')
-rwxr-xr-xbin/reproducible_breakages.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/bin/reproducible_breakages.py b/bin/reproducible_breakages.py
index 37125cae..2f26eb37 100755
--- a/bin/reproducible_breakages.py
+++ b/bin/reproducible_breakages.py
@@ -75,10 +75,7 @@ def lack_rbuild():
ORDER BY s.name ASC, s.suite DESC'''
results = query_db(query)
for pkg, version, suite, arch in results:
- eversion = strip_epoch(version)
- rbuild = RBUILD_PATH + '/' + suite + '/' + arch + '/' + pkg + '_' + \
- eversion + '.rbuild.log'
- if not os.access(rbuild, os.R_OK):
+ if not pkg_has_rbuild(pkg, version, suite, arch):
bad_pkgs.append((pkg, version, suite, arch))
log.warning(pkg + '/' + suite + ' (' + version + ') has been '
'built, but a buildlog is missing.')
@@ -265,7 +262,8 @@ if __name__ == '__main__':
bugs = get_bugs()
html = '<p>This page lists unexpected things a human should look at and '
html += 'fix, like packages with an incoherent status or files that '
- html += 'should not be there.<em>Please help making this page empty!</em></p>'
+ html += 'should not be there. '
+ html += '<em>Please help making this page empty!</em></p>\n'
breakages = gen_html()
if breakages:
html += breakages