summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-01-15 11:38:02 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-15 11:38:02 +0100
commita0bf06c658bb16117552e0575a8c7296dc9e9d21 (patch)
tree387b0584ba4c78eba3def77336e0990f5399a20d /bin/reproducible_html_notes.py
parent8393811602eecf89ee533a3e87acb1cca7ac50f4 (diff)
downloadjenkins.debian.net-a0bf06c658bb16117552e0575a8c7296dc9e9d21.tar.xz
reproducible: stop treating creating .buildinfo files specially (as every build creates it nowadays)
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py
index 64a9a00e..e4dd52e9 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -313,10 +313,7 @@ def index_notes(notes):
html = (tab*2).join(html.splitlines(True))
for pkg in sorted(notes):
url = RB_PKG_URI + '/' + pkg + '.html'
- html += tab*4 + '<a href="' + url + '" class="noted">' + pkg + '</a>'
- if pkg_has_buildinfo(pkg):
- html += '<span class="beta">&beta;</span>'
- html += '\n'
+ html += tab*4 + '<a href="' + url + '" class="noted">' + pkg + '</a>\n'
html += tab*3 + '</code>\n'
html += tab*2 + '</p>\n'
html += tab*2 + '<p>Notes are stored in <a href="https://anonscm.debian.org/cgit/reproducible/notes.git">notes.git</a>.</p>'
@@ -324,7 +321,7 @@ def index_notes(notes):
destfile = BASE + '/index_notes.html'
desturl = REPRODUCIBLE_URL + '/index_notes.html'
write_html_page(title=title, body=html, destfile=destfile,
- style_note=True, buildinfo_note=True)
+ style_note=True)
log.info('Notes index now available at ' + desturl)