diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-10-04 01:31:43 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-04 01:31:43 +0200 |
commit | ee9848202ab712d32bc9f9dbd1f7d10497a56987 (patch) | |
tree | f5a5b04d55ca90f40b1a18a7b287f2e2b0d21801 /bin | |
parent | 230b7cdd4de3c2e9ccefea821881422bff0ecd39 (diff) | |
download | jenkins.debian.net-ee9848202ab712d32bc9f9dbd1f7d10497a56987.tar.xz |
reproducible: explain that notes are only usually targeted at unstable/amd64
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_notes.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index ad55d0a7..f47ab13e 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -32,7 +32,7 @@ note_html = Template((tab*2).join(""" <tr> <td colspan="2" style="text-align:right; font-size:0.9em;"> <p> - Notes are stored in <a href="https://anonscm.debian.org/cgit/reproducible/notes.git" target="_parent">notes.git</a> and are targeted at packages in 'unstable'. + Notes are stored in <a href="https://anonscm.debian.org/cgit/reproducible/notes.git" target="_parent">notes.git</a> and are targeted at packages in 'unstable/amd64' (unless they say otherwise). </p> </td> </tr> @@ -150,7 +150,7 @@ $affected_pkgs <tr><td colspan="2"> </td></tr> <tr> <td colspan="2" style="text-align:right; font-size:0.9em;"> - <p>Notes are stored in <a href="https://anonscm.debian.org/cgit/reproducible/notes.git" target="_parent">notes.git</a> and are targeted at packages in 'unstable'.</p> + <p>Notes are stored in <a href="https://anonscm.debian.org/cgit/reproducible/notes.git" target="_parent">notes.git</a> and are targeted at packages in 'unstable/amd64' (unless they say otherwise).</p> </td> </tr> </table>""".splitlines(True))) @@ -410,7 +410,7 @@ def index_issues(issues): str(len([x for x in notes if notes[x].get('issues')])) + \ '</b> packages categorized in <b>' + str(len(issues)) + \ '</b> issues.</p>' - html += tab*2 + '<p>Notes are stored in <a href="https://anonscm.debian.org/cgit/reproducible/notes.git" target="_parent">notes.git</a> and are targeted at packages in \'unstable\'.</p>' + html += tab*2 + '<p>Notes are stored in <a href="https://anonscm.debian.org/cgit/reproducible/notes.git" target="_parent">notes.git</a> and are targeted at packages in \'unstable/amd64\' (unless they say otherwise).</p>' title = 'Known issues related to reproducible builds' destfile = BASE + '/index_issues.html' desturl = REPRODUCIBLE_URL + '/index_issues.html' |