summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_packages.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-05-14 02:07:53 +0200
committerHolger Levsen <holger@layer-acht.org>2015-08-15 12:48:52 +0200
commitb15e0f3374d6bd6b7c2ec1c578e6f2d18f701ec7 (patch)
tree7783ff2bef4de90780febced7da43b48f6cc3574 /bin/reproducible_html_packages.py
parent955e4ceb12b155d3dc840f25197a11b663d09ecc (diff)
downloadjenkins.debian.net-b15e0f3374d6bd6b7c2ec1c578e6f2d18f701ec7.tar.xz
reproducible: html_packages: convert gen_suite_links() to the new objects instead of db quering
Diffstat (limited to 'bin/reproducible_html_packages.py')
-rwxr-xr-xbin/reproducible_html_packages.py29
1 files changed, 11 insertions, 18 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py
index 42fcf77e..6a6bf5a8 100755
--- a/bin/reproducible_html_packages.py
+++ b/bin/reproducible_html_packages.py
@@ -149,23 +149,16 @@ def gen_extra_links(package, version, suite, arch, status):
def gen_suites_links(package, suite):
+ # FIXME this function needs multiarchifing
+ arch = defaultarch
html = ''
- query = 'SELECT s.suite, s.architecture, s.version, r.version, r.status ' + \
- 'FROM sources AS s LEFT JOIN results AS r ON r.package_id=s.id ' + \
- 'WHERE s.name="{pkg}"'.format(pkg=package)
- results = query_db(query)
- if len(results) < 1:
- print_critical_message('This query produces 0 results:\n' + query)
- raise ValueError
- if len(results) == 1:
- return html
- for i in results:
- # i[0]: suite, i[1]: arch, i[2]: avail version, i[3]: tested version,
- # i[4]: status (i[2] and i[3] will be NULL if untested)
- if i[0] == suite: # don't link the current suite
+ for i in package._status:
+ if i == suite: # don't link the current suite
continue
- status = 'untested' if not i[4] else i[4]
- version = i[3] if i[3] else i[2]
+ if package._status[i][arch].status == False:
+ continue # The package is not available in that suite
+ status = package._status[i][arch].status
+ version = package._status[i][arch].version
if status == 'unreproducible':
status = 'FTBR'
elif status == 'not for us':
@@ -179,8 +172,8 @@ def gen_suites_links(package, suite):
suffix = '\n'
icon = prefix + '<img src="/static/{icon}" alt="{status}" title="{status}"/>' + suffix
html += icon.format(icon=join_status_icon(status)[1], status=status)
- html += tab + ' <a href="' + RB_PKG_URI + '/' + i[0] + '/' + i[1] + \
- '/' + str(package) + '.html" target="_parent">' + i[0] + \
+ html += tab + ' <a href="' + RB_PKG_URI + '/' + suite + '/' + arch + \
+ '/' + package.name + '.html" target="_parent">' + suite + \
':' + version + '</a>\n'
html += '</span>\n'
return tab*5 + (tab*7).join(html.splitlines(True))
@@ -207,7 +200,7 @@ def gen_packages_html(packages, no_clean=False):
version + ' built at ' + build_date)
links, default_view = gen_extra_links(pkg, version, suite, arch, status)
- suites_links = gen_suites_links(pkg, suite)
+ suites_links = gen_suites_links(package, suite)
status, icon = join_status_icon(status, pkg, version)
status = gen_status_link_icon(status, icon, suite, arch)