diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 75907a40..393e5aa4 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -355,6 +355,14 @@ def link_package(package, suite, arch, bugs={}): return html +def link_packages(packages, suite, arch): + bugs = get_bugs() + html = '' + for pkg in packages: + html += link_package(pkg, suite, arch, bugs) + return html + + def join_status_icon(status, package=None, version=None): table = {'reproducible' : 'weather-clear.png', 'FTBFS': 'weather-storm.png', |