diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-14 17:58:55 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-14 17:58:55 +0100 |
commit | 0c074ea069b10b66bb5f01e996def39f471c78ea (patch) | |
tree | 98bc9e59e2bac959e29d01384b9086ae034f6c69 /bin | |
parent | 0372afcb617d95a0f1dd791d2f989c2053b6ca10 (diff) | |
download | jenkins.debian.net-0c074ea069b10b66bb5f01e996def39f471c78ea.tar.xz |
reproducible: simplify wording
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_dd_list.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_html_indexes.py | 4 | ||||
-rwxr-xr-x | bin/reproducible_html_notes.py | 6 | ||||
-rwxr-xr-x | bin/reproducible_html_repo_stats.sh | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/bin/reproducible_html_dd_list.sh b/bin/reproducible_html_dd_list.sh index 0b4985f0..024860a6 100755 --- a/bin/reproducible_html_dd_list.sh +++ b/bin/reproducible_html_dd_list.sh @@ -18,7 +18,7 @@ VIEW=dd-list for SUITE in $SUITES ; do PAGE=index_${VIEW}.html echo "$(date) - starting to write $PAGE page." - write_page_header $VIEW "Overview of maintainers of unreproducible packages in $SUITE" + write_page_header $VIEW "Maintainers of unreproducible packages in $SUITE" TMPFILE=$(mktemp) SOURCES=$(mktemp) schroot --directory /tmp -c source:jenkins-reproducible-$SUITE cat /var/lib/apt/lists/*_source_Sources > $SOURCES || \ diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index 0a5a084e..39aeed43 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -127,7 +127,7 @@ pages = { ] }, 'all_abc': { - 'title': 'Overview of reproducible builds in {suite}/{arch} of all tested packages (sorted alphabetically)', + 'title': 'Alphabetically sorted overview of all tested packages in {suite}/{arch})', 'body': [ { 'icon_status': 'FTBR', @@ -235,7 +235,7 @@ pages = { global_pages = { 'scheduled': { - 'title': 'Overview of packages currently scheduled for testing for build reproducibility', + 'title': 'Packages currently scheduled for testing for build reproducibility', 'body': [ { 'query': 'scheduled', diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 1a2750c3..c0f01c1b 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -370,7 +370,7 @@ def index_issues(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>.</p>' - title = 'Overview of known issues related to reproducible builds' + title = 'Known issues related to reproducible builds' destfile = BASE + '/index_issues.html' desturl = REPRODUCIBLE_URL + '/index_issues.html' write_html_page(title=title, body=html, destfile=destfile) @@ -400,7 +400,7 @@ def index_notes(notes, bugs): html += '</p>\n' html += '<p>Notes are stored in <a href="https://anonscm.debian.org/cgit/reproducible/notes.git" target="_parent">notes.git</a>.</p>' html = (tab*2).join(html.splitlines(True)) - title = 'Overview of packages with notes' + title = 'Packages with notes' destfile = BASE + '/index_notes.html' desturl = REPRODUCIBLE_URL + '/index_notes.html' write_html_page(title=title, body=html, destfile=destfile, @@ -445,7 +445,7 @@ def index_no_notes(notes, bugs): html += index_no_notes_section(notes, bugs, pkgs, suite, arch) html += '<p>Notes are stored in <a href="https://anonscm.debian.org/cgit/reproducible/notes.git" target="_parent">notes.git</a>.</p>' html = (tab*2).join(html.splitlines(True)) - title = 'Overview of packages without notes' + title = 'Packages without notes' destfile = BASE + '/index_no_notes.html' desturl = REPRODUCIBLE_URL + '/index_no_notes.html' write_html_page(title=title, body=html, destfile=destfile, diff --git a/bin/reproducible_html_repo_stats.sh b/bin/reproducible_html_repo_stats.sh index b501e8f0..7a6fe055 100755 --- a/bin/reproducible_html_repo_stats.sh +++ b/bin/reproducible_html_repo_stats.sh @@ -19,7 +19,7 @@ TMPFILE=$(mktemp) TMP2FILE=$(mktemp) echo "$(date) - starting to write $PAGE page." -write_page_header $VIEW "Overview about the reproducible builds apt repository (and comparison to Debian suites)" +write_page_header $VIEW "Comparison between the reproducible builds apt repository and regular Debian suites)" write_page "<p>These source packages are different from sid in our apt repository on alioth. They are available for <a href=\"https://wiki.debian.org/ReproducibleBuilds/ExperimentalToolchain#Usage_example\">testing using these sources.lists</a> entries:<pre>" write_page "deb http://reproducible.alioth.debian.org/debian/ ./" write_page "deb-src http://reproducible.alioth.debian.org/debian/ ./" |