diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-16 11:17:20 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-16 11:17:20 +0200 |
commit | 9b2a7c5fff105edc5bedec249a21ca1409670e33 (patch) | |
tree | e9393adf888a1cbe316f98bd95477387c8d3b436 | |
parent | 547f1d19e8dcb2b2a5b10fe03e21165fd0861f34 (diff) | |
download | jenkins.debian.net-9b2a7c5fff105edc5bedec249a21ca1409670e33.tar.xz |
reproducible: also link boring packages on main page
-rwxr-xr-x | bin/reproducible_stats.sh | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/bin/reproducible_stats.sh b/bin/reproducible_stats.sh index 9ee96322..c30a5e2d 100755 --- a/bin/reproducible_stats.sh +++ b/bin/reproducible_stats.sh @@ -609,19 +609,25 @@ for VIEW in $ALLVIEWS ; do write_page "<p>For " set_icon 404 write_icon - write_page "$COUNT_SOURCELESS ($PERCENT_SOURCELESS%) packages in total sources could not be downloaded: <code>${SOURCELESS[$VIEW]}</code></p>" + write_page "$COUNT_SOURCELESS ($PERCENT_SOURCELESS%) packages in total sources could not be downloaded: <code>" + link_packages ${SOURCELESS[$VIEW]} + write_page "</code></p>" fi if [ "${VIEW:0:3}" = "all" ] && [ $COUNT_NOTFORUS -gt 0 ] ; then write_page "<p>In total there were " set_icon not_for_us write_icon - write_page "$COUNT_NOTFORUS ($PERCENT_NOTFORUS%) packages which are neither Architecture: 'any', 'all', 'amd64', 'linux-any', 'linux-amd64' nor 'any-amd64': <code>${NOTFORUS[$VIEW]}</code></p>" + write_page "$COUNT_NOTFORUS ($PERCENT_NOTFORUS%) packages which are neither Architecture: 'any', 'all', 'amd64', 'linux-any', 'linux-amd64' nor 'any-amd64': <code>" + link_packages ${NOTFORUS[$VIEW]} + write_page "</code></p>" fi if [ "${VIEW:0:3}" = "all" ] && [ $COUNT_BLACKLISTED -gt 0 ] ; then write_page "<p>" set_icon blacklisted write_icon - write_page "$COUNT_BLACKLISTED packages are blacklisted and will never be tested here: <code>$BLACKLISTED</code></p>" + write_page "$COUNT_BLACKLISTED packages are blacklisted and will never be tested here: <code>" + link_packages $BLACKLISTED + write_page "</code></p>" fi write_page "<p>" set_icon reproducible |