Commit 956b5a70 authored by Holger Levsen's avatar Holger Levsen
Browse files

reproducible debian: instead of 'other', show depwait, blacklisted and...

reproducible debian: instead of 'other', show depwait, blacklisted and not_for_us in suite_arch_stats table
parent a182039f
...@@ -350,7 +350,7 @@ write_suite_arch_table() { ...@@ -350,7 +350,7 @@ write_suite_arch_table() {
local SUITE="" local SUITE=""
local ARCH="" local ARCH=""
write_page "<p>" write_page "<p>"
write_page "<table class=\"main\"><tr><th>suite</th><th>all sources packages</th><th>reproducible packages</th><th>unreproducible packages</th><th>packages failing to build</th><th>other packages</th></tr>" write_page "<table class=\"main\"><tr><th>suite</th><th>all sources packages</th><th>reproducible packages</th><th>unreproducible packages</th><th>packages failing to build</th><th>packages in depwait state</th><th>not for this architecture</th><th>blacklisted</th></tr>"
for SUITE in $SUITES ; do for SUITE in $SUITES ; do
for ARCH in ${ARCHS} ; do for ARCH in ${ARCHS} ; do
gather_suite_arch_stats gather_suite_arch_stats
...@@ -358,7 +358,7 @@ write_suite_arch_table() { ...@@ -358,7 +358,7 @@ write_suite_arch_table() {
if [ $(echo $PERCENT_TOTAL/1|bc) -lt 99 ] ; then if [ $(echo $PERCENT_TOTAL/1|bc) -lt 99 ] ; then
write_page "<span style=\"font-size:0.8em;\">($PERCENT_TOTAL% tested)</span>" write_page "<span style=\"font-size:0.8em;\">($PERCENT_TOTAL% tested)</span>"
fi fi
write_page "</td><td>$COUNT_GOOD / $PERCENT_GOOD%</td><td>$COUNT_BAD / $PERCENT_BAD%</td><td>$COUNT_UGLY / $PERCENT_UGLY%</td><td>$COUNT_OTHER / $PERCENT_OTHER%</td></tr>" write_page "</td><td>$COUNT_GOOD / $PERCENT_GOOD%</td><td>$COUNT_BAD / $PERCENT_BAD%</td><td>$COUNT_UGLY / $PERCENT_UGLY%</td><td>$COUNT_DEPWAIT / $PERCENT_DEPWAIT%</td><td>$COUNT_NOTFORUS / $PERCENT_NOTFORUS%</td><td>$COUNT_BLACKLISTED / $PERCENT_BLACKLISTED%</td></tr>"
done done
done done
write_page "</table>" write_page "</table>"
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment