From 3e606ea25323c3e90543cd24005ab22f6d7b4d44 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 8 Oct 2014 13:46:18 +0200 Subject: reproducible: revert meaning of buildinfo signs --- bin/reproducible_stats.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/reproducible_stats.sh b/bin/reproducible_stats.sh index ee1a4d72..fc1dc7ac 100755 --- a/bin/reproducible_stats.sh +++ b/bin/reproducible_stats.sh @@ -108,7 +108,7 @@ process_packages() { VERSION=$(echo $RESULT|cut -d "|" -f2) # remove epoch EVERSION=$(echo $VERSION | cut -d ":" -f2) - if $EXTRA_STAR && [ ! -f "/var/lib/jenkins/userContent/buildinfo/${PKG}_${EVERSION}_amd64.buildinfo" ] ; then + if $BUILDINFO_SIGNS && [ -f "/var/lib/jenkins/userContent/buildinfo/${PKG}_${EVERSION}_amd64.buildinfo" ] ; then STAR[$PKG]="β" # used to be a star... fi # only build $PKG pages if they don't exist or are older than $BUILD_DATE @@ -194,9 +194,9 @@ publish_summary() { } echo "Processing $COUNT_TOTAL packages... this will take a while." -EXTRA_STAR=true +BUILDINFO_SIGNS=true process_packages ${BAD["all"]} -EXTRA_STAR=false +BUILDINFO_SIGNS=false process_packages ${UGLY["all"]} ${GOOD["all"]} MAINVIEW="all_abc" @@ -214,7 +214,6 @@ for VIEW in $ALLVIEWS ; do write_summary "

$COUNT_BAD packages ($PERCENT_BAD% of $COUNT_TOTAL) failed to built reproducibly in total$FINISH " link_packages ${BAD[$VIEW]} write_summary "

" - write_summary "

A β sign after a package name indicates that no .buildinfo file was generated.

" write_summary write_summary "

$COUNT_UGLY packages ($PERCENT_UGLY%) failed to build from source in total$FINISH " link_packages ${UGLY[$VIEW]} @@ -231,6 +230,7 @@ for VIEW in $ALLVIEWS ; do write_summary "

$COUNT_GOOD packages ($PERCENT_GOOD%) successfully built reproducibly$FINISH " link_packages ${GOOD[$VIEW]} write_summary "

" + write_summary "

A β sign after a package which is unreproducible indicates that no .buildinfo file was generated.

" write_summary_footer publish_summary done -- cgit v1.2.3-54-g00ecf