From 8f4f51c3f5b80ead0bb526db958817cb4b1bb1d9 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Fri, 18 Dec 2015 13:45:32 +0100 Subject: reproducible archlinux: improve wording --- bin/reproducible_html_archlinux.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/reproducible_html_archlinux.sh b/bin/reproducible_html_archlinux.sh index 67935781..59693136 100755 --- a/bin/reproducible_html_archlinux.sh +++ b/bin/reproducible_html_archlinux.sh @@ -69,10 +69,10 @@ for REPOSITORY in $ARCHLINUX_REPOS ; do EXTRA_REASON="with 503 - service unavailable" elif [ ! -z "$(grep 'FAILED (unknown public key' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then HTML_TARGET=${HTML_404[4]} - EXTRA_REASON="(failed to verify source with PGP due to unknown public key)" + EXTRA_REASON="to verify source with PGP due to unknown public key" elif [ ! -z "$(egrep '==> ERROR: One or more PGP signatures could not be verified' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then HTML_TARGET=${HTML_404[5]} - EXTRA_REASON="(failed to verify source with PGP signatures)" + EXTRA_REASON="to verify source with PGP signatures" fi echo " \"404 download failed $EXTRA_REASON" >> $HTML_BUFFER elif [ ! -z "$(egrep '==> ERROR: One or more files did not pass the validity check' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then @@ -86,11 +86,11 @@ for REPOSITORY in $ARCHLINUX_REPOS ; do elif [ ! -z "$(egrep '==> ERROR: A failure occurred in check' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then HTML_TARGET=${HTML_FTBFS[2]} let NR_FTBFS+=1 - echo " \"ftbfs failed to build from source while running tests" >> $HTML_BUFFER + echo " \"ftbfs failed to build while running tests" >> $HTML_BUFFER elif [ ! -z "$(egrep '==> ERROR: A failure occurred in (build|package)' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then HTML_TARGET=${HTML_FTBFS[3]} let NR_FTBFS+=1 - echo " \"ftbfs failed to build from source" >> $HTML_BUFFER + echo " \"ftbfs failed to build" >> $HTML_BUFFER elif [ ! -z "$(egrep 'makepkg was killed by timeout after' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then HTML_TARGET=${HTML_FTBFS[4]} let NR_FTBFS+=1 -- cgit v1.2.3-54-g00ecf