diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-11-09 19:59:33 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-11-09 19:59:33 +0100 |
commit | bb2e3d842c1322360631f4cdbb42b87e4cae04ed (patch) | |
tree | ba9bca2583946b61bc376885a75a5c8ed21ac3f7 /bin | |
parent | 966103791cb078be193fc178db7556cad21b351d (diff) | |
download | jenkins.debian.net-bb2e3d842c1322360631f4cdbb42b87e4cae04ed.tar.xz |
reproducible: add more links to Reproducible-builds.org
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 1 | ||||
-rwxr-xr-x | bin/reproducible_common.sh | 1 | ||||
-rwxr-xr-x | bin/reproducible_html_packages.py | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 5331d70e..273c8500 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -194,6 +194,7 @@ $links <li><a href="/index_repositories.html">repositories overview</a></li> <li><a href="/reproducible.html">dashboard</a></li> <li><a href="https://wiki.debian.org/ReproducibleBuilds" target="_blank">wiki</a></li> + <li><a href="https://Reproducible-builds.org" target="_blank">Reproducible-builds.org</a></li> </ul></nav> </header>""".splitlines(True))) diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 19dc39fe..6aa382f7 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -262,6 +262,7 @@ write_page_header() { fi done write_page "<li><a href=\"https://wiki.debian.org/ReproducibleBuilds\" target=\"_blank\">wiki</a></li>" + write_page "<li><a href=\"https://Reproducible-builds.org\" target=\"_blank\">Reproducible-builds.org</a></li>" write_page "</ul></nav>" if [ "$1" = "$MAINVIEW" ] ; then LATEST=$(sqlite3 -init $INIT ${PACKAGES_DB} "SELECT s.name FROM results AS r JOIN sources AS s ON r.package_id = s.id WHERE r.status IN ('unreproducible') AND s.suite = 'unstable' AND s.architecture = 'amd64' AND s.id NOT IN (SELECT package_id FROM notes) ORDER BY build_date DESC LIMIT 23"|sort -R|head -1) diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index 8d604f7d..975871fc 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -44,11 +44,12 @@ html_package_page = Template((tab*2).join((""" ${suites_links} <ul class="reproducible-links"> - Reproducible Builds project links + Reproducible Builds projects links <li> <a href="%s">Dashboard</a><br /> <a href="https://wiki.debian.org/ReproducibleBuilds">Wiki</a><br /> <a href="https://reproducible.debian.net/howto">HowTo</a> + <a href="https://Reproducible-builds.org">Reproducible-builds.org</a> </li> </ul> </header> |