From 044a78e5a985f110f2bd15a9102f673f23997e09 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Fri, 17 Oct 2014 19:40:32 +0200 Subject: reproducible: refactor, mv notes+issues html generation into seperate job --- bin/reproducible_common.sh | 125 +++++++++- bin/reproducible_html_dd_list.sh | 1 - bin/reproducible_html_notes.sh | 358 +++++++++++++++++++++++++++++ bin/reproducible_stats.sh | 479 +-------------------------------------- 4 files changed, 490 insertions(+), 473 deletions(-) create mode 100755 bin/reproducible_html_notes.sh (limited to 'bin') diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 954aa384..ebd58048 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -100,12 +100,15 @@ fi # shop trailing slash JENKINS_URL=${JENKINS_URL:0:-1} +# we only need them for html creation but we cannot declare them in a function +declare -A SPOKENTARGET +declare -A LINKTARGET + init_html() { SUITE=sid ALLSTATES="reproducible FTBR_with_buildinfo FTBR FTBFS 404 not_for_us blacklisted" MAINVIEW="stats" ALLVIEWS="last_24h last_48h all_abc" - declare -A SPOKENTARGET SPOKENTARGET["last_24h"]="packages tested in the last 24h" SPOKENTARGET["last_48h"]="packages tested in the last 48h" SPOKENTARGET["all_abc"]="all tested packages (sorted alphabetically)" @@ -132,6 +135,7 @@ init_html() { PERCENT_TOTAL=$(echo "scale=1 ; ($COUNT_TOTAL*100/$AMOUNT)" | bc) PERCENT_GOOD=$(echo "scale=1 ; ($COUNT_GOOD*100/$COUNT_TOTAL)" | bc) GUESS_GOOD=$(echo "$PERCENT_GOOD*$AMOUNT/100" | bc) + BUILDINFO_SIGNS=true } write_page() { @@ -173,6 +177,7 @@ write_icon() { write_page_header() { rm -f $PAGE + BUILDINFO_ON_PAGE=false write_page "" write_page "" write_page "" @@ -216,7 +221,7 @@ write_page_footer() { write_page_meta_sign() { write_page "

An underlined package is an indication that this package has a note. Visited packages are linked in green, those which have not been visited are linked in blue." - if $BETA_SIGN ; then + if $BUILDINFO_ON_PAGE ; then write_page "A β sign after a package which is unreproducible indicates that a .buildinfo file was generated." write_page "And that means the basics for building packages reproducibly are covered." fi @@ -229,5 +234,121 @@ publish_page() { cp $PAGE /var/lib/jenkins/userContent/reproducible.html fi rm $PAGE + echo "Enjoy $JENKINS_URL/userContent/$PAGE" +} + +set_package_star() { + if [ ! -z "$(find /var/lib/jenkins/userContent/buildinfo/ -name ${PKG}_*_amd64.buildinfo)" ] ; then + STAR="β" # used to be a star... + else + STAR="" + fi +} + +set_package_class() { + if [ -f ${NOTES_PATH}/${PKG}_note.html ] ; then + CLASS="class=\"noted\"" + else + CLASS="class=\"package\"" + fi +} + +force_package_targets() { + for PKG in $@ ; do + set_package_class + LINKTARGET[$PKG]="$PKG" + done +} + +link_packages() { + for PKG in $@ ; do + STAR="" + write_page " ${LINKTARGET[$PKG]}" + if $BUILDINFO_SIGNS ; then + set_package_star + if [ ! -z "$STAR" ] ; then + write_page "$STAR " + fi + fi + done +} + +init_pkg_page() { + echo "" > ${PKG_FILE} + echo "" >> ${PKG_FILE} + echo "$1 - reproducible builds results" >> ${PKG_FILE} + echo "
$1 $2" >> ${PKG_FILE} + set_icon "$3" $5 # this sets $STATE_TARGET_NAME and $ICON + echo "\"${STATE_TARGET_NAME}" >> ${PKG_FILE} + echo "at $4: " >> ${PKG_FILE} } +append2pkg_page() { + echo "$1" >> ${PKG_FILE} +} + +finish_pkg_page() { + echo "reproducible builds
" >> ${PKG_FILE} + echo "" >> ${PKG_FILE} + echo "" >> ${PKG_FILE} +} + +process_packages() { + for PKG in $@ ; do + RESULT=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT build_date,version,status FROM source_packages WHERE name = \"$PKG\"") + BUILD_DATE=$(echo $RESULT|cut -d "|" -f1) + # version with epoch removed + EVERSION=$(echo $RESULT | cut -d "|" -f2 | cut -d ":" -f2) + set_package_star + # only build $PKG pages if they don't exist or are older than $BUILD_DATE or have a note + PKG_FILE="/var/lib/jenkins/userContent/rb-pkg/${PKG}.html" + OLD_FILE=$(find $(dirname ${PKG_FILE}) -name $(basename ${PKG_FILE}) ! -newermt "$BUILD_DATE" 2>/dev/null || true) + # if no package file exists, or is older than last build_date + if [ ! -f ${PKG_FILE} ] || [ "$OLD_FILE" != "" ] ; then + VERSION=$(echo $RESULT | cut -d "|" -f2) + STATUS=$(echo $RESULT | cut -d "|" -f3) + MAINLINK="" + NOTES_LINK="" + if [ -f ${NOTES_PATH}/${PKG}_note.html ] ; then + NOTES_LINK=" notes " + fi + init_pkg_page "$PKG" "$VERSION" "$STATUS" "$BUILD_DATE" "$STAR" + append2pkg_page "${NOTES_LINK}" + if [ -f "/var/lib/jenkins/userContent/buildinfo/${PKG}_${EVERSION}_amd64.buildinfo" ] ; then + append2pkg_page " buildinfo " + MAINLINK="$JENKINS_URL/userContent/buildinfo/${PKG}_${EVERSION}_amd64.buildinfo" + fi + if [ -f "/var/lib/jenkins/userContent/dbd/${PKG}_${EVERSION}.debbindiff.html" ] ; then + append2pkg_page " debbindiff " + MAINLINK="$JENKINS_URL/userContent/dbd/${PKG}_${EVERSION}.debbindiff.html" + fi + RBUILD_LOG="rbuild/${PKG}_${EVERSION}.rbuild.log" + if [ -f "/var/lib/jenkins/userContent/${RBUILD_LOG}" ] ; then + SIZE=$(du -sh "/var/lib/jenkins/userContent/${RBUILD_LOG}" |cut -f1) + append2pkg_page " rbuild ($SIZE) " + if [ "$MAINLINK" = "" ] ; then + MAINLINK="$JENKINS_URL/userContent/${RBUILD_LOG}" + fi + fi + append2pkg_page " PTS " + append2pkg_page " BTS " + append2pkg_page " sources " + append2pkg_page " debian/rules " + + if [ ! -z "${NOTES_LINK}" ] ; then + MAINLINK="$JENKINS_URL/userContent/notes/${PKG}_note.html" + fi + finish_pkg_page "$MAINLINK" + fi + if [ -f "/var/lib/jenkins/userContent/rbuild/${PKG}_${EVERSION}.rbuild.log" ] ; then + set_package_class + LINKTARGET[$PKG]="$PKG$STAR" + else + LINKTARGET[$PKG]="$PKG" + fi + done +} + + diff --git a/bin/reproducible_html_dd_list.sh b/bin/reproducible_html_dd_list.sh index 07c6ba5a..60f00902 100755 --- a/bin/reproducible_html_dd_list.sh +++ b/bin/reproducible_html_dd_list.sh @@ -38,4 +38,3 @@ rm $TMPFILE write_page_footer publish_page -echo "Enjoy $JENKINS_URL/userContent/$PAGE" diff --git a/bin/reproducible_html_notes.sh b/bin/reproducible_html_notes.sh new file mode 100755 index 00000000..202dd083 --- /dev/null +++ b/bin/reproducible_html_notes.sh @@ -0,0 +1,358 @@ +#!/bin/bash + +# Copyright 2014 Holger Levsen +# released under the GPLv=2 + +. /srv/jenkins/bin/common-functions.sh +common_init "$@" + +# common code defining db access +. /srv/jenkins/bin/reproducible_common.sh + +# FIXME: move to daily cleanup job +# cp db away for backup purposes +cp $PACKAGES_DB /var/lib/jenkins/userContent/reproducible.db + +set +x +init_html + +# +# update git +# + +WORKSPACE=$PWD +cd /var/lib/jenkins +if [ -d notes.git ] ; then + cd notes.git + git pull +else + git clone git://git.debian.org/git/reproducible/notes.git notes.git +fi +cd $WORKSPACE + +# +# declare some variables +# + +PACKAGES_YML=/var/lib/jenkins/notes.git/packages.yml +ISSUES_YML=/var/lib/jenkins/notes.git/issues.yml + +declare -A NOTES_VERSION +declare -A NOTES_ISSUES +declare -A NOTES_BUGS +declare -A NOTES_COMMENTS +declare -A ISSUES_DESCRIPTION +declare -A ISSUES_URL + +# +# declare some functions only used for dealing with notes +# + +show_multi_values() { + TMPFILE=$(mktemp) + echo "$@" > $TMPFILE + while IFS= read -r p ; do + if [ "$p" = "-" ] || [ "$p" = "" ] ; then + continue + elif [ "${p:0:2}" = "- " ] ; then + p="${p:2}" + fi + echo " $PROPERTY = $p" + done < $TMPFILE + unset IFS + rm $TMPFILE +} + +tag_property_loop() { + BEFORE=$1 + shift + AFTER=$1 + shift + TMPFILE=$(mktemp) + echo "$@" > $TMPFILE + while IFS= read -r p ; do + if [ "$p" = "-" ] || [ "$p" = "" ] ; then + continue + elif [ "${p:0:2}" = "- " ] ; then + p="${p:2}" + fi + write_page "$BEFORE" + if $BUG ; then + # turn bugs into links + p="#$p" + else + # turn URLs into links + p="$(echo $p |sed -e 's|http[s:]*//[^ ]*|\0|g')" + fi + write_page "$p" + write_page "$AFTER" + done < $TMPFILE + unset IFS + rm $TMPFILE +} + +issues_loop() { + TTMPFILE=$(mktemp) + echo "$@" > $TTMPFILE + while IFS= read -r p ; do + if [ "${p:0:2}" = "- " ] ; then + p="${p:2}" + fi + write_page "" + if [ "${ISSUES_URL[$p]}" != "" ] ; then + write_page "" + fi + if [ "${ISSUES_DESCRIPTION[$p]}" != "" ] ; then + write_page "" + fi + write_page "
Identifier:$p
URL${ISSUES_URL[$p]}
Description" + tag_property_loop "" "
" "${ISSUES_DESCRIPTION[$p]}" + write_page "
" + done < $TTMPFILE + unset IFS + rm $TTMPFILE +} + +create_pkg_note() { + BUG=false + rm -f $PAGE + # write_page_header() is not used as it contains the

tag... + write_page "" + write_page "" + write_page "" + write_page "Notes for $1" + write_page "" + write_page "" + + write_page "" + + if [ "${NOTES_ISSUES[$1]}" != "" ] ; then + write_page "" + fi + + BUG=true + if [ "${NOTES_BUGS[$1]}" != "" ] ; then + write_page "" + write_page "" + fi + BUG=false + + if [ "${NOTES_COMMENTS[$1]}" != "" ] ; then + write_page "" + write_page "" + fi + write_page "" + write_page "
Version annotated:${NOTES_VERSION[$1]}
Identified issues:" + issues_loop "${NOTES_ISSUES[$1]}" + write_page "
Bugs noted:" + tag_property_loop "" "
" "${NOTES_BUGS[$1]}" + write_page "
Comments:" + tag_property_loop "" "
" "${NOTES_COMMENTS[$1]}" + write_page "
 
" + write_page "Notes are stored in notes.git." + write_page "
" + write_page_footer +} + +create_issue() { + BUG=false + write_page_header "" "Notes about issue '$1'" + write_page "" + + write_page "" + + if [ "${ISSUES_URL[$1]}" != "" ] ; then + write_page "" + fi + if [ "${ISSUES_DESCRIPTION[$1]}" != "" ] ; then + write_page "" + write_page "" + fi + + write_page "" + write_page "" + write_page "
Identifier:$1
URL:${ISSUES_URL[$1]}
Description:" + tag_property_loop "" "
" "${ISSUES_DESCRIPTION[$1]}" + write_page "
Packages known to be affected by this issue:" + for PKG in $PACKAGES_WITH_NOTES ; do + if [ "${NOTES_ISSUES[$PKG]}" != "" ] ; then + TTMPFILE=$(mktemp) + echo "${NOTES_ISSUES[$PKG]}" > $TTMPFILE + while IFS= read -r p ; do + if [ "${p:0:2}" = "- " ] ; then + p="${p:2}" + fi + if [ "$p" = "$1" ] ; then + write_page " ${LINKTARGET[$PKG]} " + fi + done < $TTMPFILE + unset IFS + rm $TTMPFILE + fi + done + write_page "
 
" + write_page "Notes are stored in notes.git." + write_page "
" + write_page_meta_sign + write_page_footer +} + +write_issues() { + touch $ISSUES_PATH/stamp + for ISSUE in ${ISSUES} ; do + PAGE=$ISSUES_PATH/${ISSUE}_issue.html + create_issue $ISSUE + done + cd $ISSUES_PATH + for FILE in *.html ; do + # if issue is older than stamp file... + if [ $FILE -ot stamp ] ; then + rm $FILE + fi + done + rm stamp + cd - > /dev/null +} + +parse_issues() { + ISSUES=$(cat ${ISSUES_YML} | /srv/jenkins/bin/shyaml keys) + for ISSUE in ${ISSUES} ; do + echo " Issue = ${ISSUE}" + for PROPERTY in url description ; do + VALUE="$(cat ${ISSUES_YML} | /srv/jenkins/bin/shyaml get-value ${ISSUE}.${PROPERTY} )" + if [ "$VALUE" != "" ] ; then + case $PROPERTY in + url) ISSUES_URL[${ISSUE}]=$VALUE + echo " $PROPERTY = $VALUE" + ;; + description) ISSUES_DESCRIPTION[${ISSUE}]=$VALUE + show_multi_values "$VALUE" + ;; + esac + fi + done + done +} + +write_notes() { + touch $NOTES_PATH/stamp + for PKG in $PACKAGES_WITH_NOTES ; do + PAGE=$NOTES_PATH/${PKG}_note.html + create_pkg_note $PKG + done + cd $NOTES_PATH + for FILE in *.html ; do + PKG_FILE=/var/lib/jenkins/userContent/rb-pkg/${FILE:0:-10}.html + # if note was removed... + if [ $FILE -ot stamp ] ; then + # cleanup old notes + rm $FILE + # force re-creation of package file if there was a note + rm -f ${PKG_FILE} + else + # ... else re-recreate ${PKG_FILE} if it does not contain a link to the note + grep _note.html ${PKG_FILE} > /dev/null 2>&1 || rm -f ${PKG_FILE} + fi + done + rm stamp + cd - > /dev/null +} + +parse_notes() { + PACKAGES_WITH_NOTES=$(cat ${PACKAGES_YML} | /srv/jenkins/bin/shyaml keys) + for PKG in $PACKAGES_WITH_NOTES ; do + echo " Package = ${PKG}" + for PROPERTY in version issues bugs comments ; do + VALUE="$(cat ${PACKAGES_YML} | /srv/jenkins/bin/shyaml get-value ${PKG}.${PROPERTY} )" + if [ "$VALUE" != "" ] ; then + case $PROPERTY in + version) NOTES_VERSION[${PKG}]=$VALUE + echo " $PROPERTY = $VALUE" + ;; + issues) NOTES_ISSUES[${PKG}]=$VALUE + show_multi_values "$VALUE" + ;; + bugs) NOTES_BUGS[${PKG}]=$VALUE + show_multi_values "$VALUE" + ;; + comments) NOTES_COMMENTS[${PKG}]=$VALUE + show_multi_values "$VALUE" + ;; + esac + fi + done + done +} + +validate_yaml() { + VALID_YAML=true + set +e + cat $1 | /srv/jenkins/bin/shyaml keys > /dev/null 2>&1 || VALID_YAML=false + cat $1 | /srv/jenkins/bin/shyaml get-values > /dev/null 2>&1 || VALID_YAML=false + set -e + echo "$1 is valid yaml: $VALID_YAML" +} + +# +# end note parsing functions... +# + +# +# actually validate & parse the notes and then write pages for all notes and issues +# +validate_yaml ${ISSUES_YML} +validate_yaml ${PACKAGES_YML} +if $VALID_YAML ; then + echo "$(date) - processing notes and issues" + parse_issues + parse_notes + echo "$(date) - processing packages with notes" + force_package_targets ${PACKAGES_WITH_NOTES} + write_issues + write_notes + process_packages ${PACKAGES_WITH_NOTES} +else + echo "Warning: ${ISSUES_YML} or ${PACKAGES_YML} contains invalid yaml, please fix." +fi + +# +# write packages with notes page +# +VIEW=notes +PAGE=index_${VIEW}.html +echo "$(date) - starting to write $PAGE page." +write_page_header $VIEW "Overview of ${SPOKENTARGET[$VIEW]}" +if $VALID_YAML ; then + write_page "

Packages which have notes: " + PACKAGES_WITH_NOTES=$(echo $PACKAGES_WITH_NOTES | sed -s "s# #\n#g" | sort | xargs echo) + link_packages $PACKAGES_WITH_NOTES + write_page "

" +else + write_page "

Broken .yaml files in notes.git could not be parsed, please investigate and fix!

" +fi +write_page "

Notes are stored in notes.git.

" +write_page_meta_sign +write_page_footer +publish_page + +# +# write page with all issues +# +VIEW=issues +PAGE=index_${VIEW}.html +echo "$(date) - starting to write $PAGE page." +write_page_header $VIEW "Overview of ${SPOKENTARGET[$VIEW]}" +if $VALID_YAML ; then + write_page "" + ISSUES=$(echo ${ISSUES} | sed -s "s# #\n#g" | sort | xargs echo) + for ISSUE in ${ISSUES} ; do + write_page "" + done + write_page "
${ISSUE}
" +else + write_page "

Broken .yaml files in notes.git could not be parsed, please investigate and fix!

" +fi +write_page "

Notes are stored in notes.git.

" +write_page_footer +publish_page + diff --git a/bin/reproducible_stats.sh b/bin/reproducible_stats.sh index 08e1d730..c6188712 100755 --- a/bin/reproducible_stats.sh +++ b/bin/reproducible_stats.sh @@ -21,8 +21,6 @@ declare -A BAD declare -A UGLY declare -A SOURCELESS declare -A NOTFORUS -declare -A STAR -declare -A LINKTARGET LAST24="AND build_date > datetime('now', '-24 hours') " LAST48="AND build_date > datetime('now', '-48 hours') " GOOD["all"]=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT name FROM source_packages WHERE status = \"reproducible\" ORDER BY build_date DESC" | xargs echo) @@ -52,415 +50,15 @@ PERCENT_UGLY=$(echo "scale=1 ; ($COUNT_UGLY*100/$COUNT_TOTAL)" | bc) PERCENT_NOTFORUS=$(echo "scale=1 ; ($COUNT_NOTFORUS*100/$COUNT_TOTAL)" | bc) PERCENT_SOURCELESS=$(echo "scale=1 ; ($COUNT_SOURCELESS*100/$COUNT_TOTAL)" | bc) -# -# gather notes -# -WORKSPACE=$PWD -cd /var/lib/jenkins -if [ -d notes.git ] ; then - cd notes.git - git pull -else - git clone git://git.debian.org/git/reproducible/notes.git notes.git -fi -cd $WORKSPACE - -PACKAGES_YML=/var/lib/jenkins/notes.git/packages.yml -ISSUES_YML=/var/lib/jenkins/notes.git/issues.yml - -declare -A NOTES_VERSION -declare -A NOTES_ISSUES -declare -A NOTES_BUGS -declare -A NOTES_COMMENTS -declare -A ISSUES_DESCRIPTION -declare -A ISSUES_URL - -show_multi_values() { - TMPFILE=$(mktemp) - echo "$@" > $TMPFILE - while IFS= read -r p ; do - if [ "$p" = "-" ] || [ "$p" = "" ] ; then - continue - elif [ "${p:0:2}" = "- " ] ; then - p="${p:2}" - fi - echo " $PROPERTY = $p" - done < $TMPFILE - unset IFS - rm $TMPFILE -} - -tag_property_loop() { - BEFORE=$1 - shift - AFTER=$1 - shift - TMPFILE=$(mktemp) - echo "$@" > $TMPFILE - while IFS= read -r p ; do - if [ "$p" = "-" ] || [ "$p" = "" ] ; then - continue - elif [ "${p:0:2}" = "- " ] ; then - p="${p:2}" - fi - write_page "$BEFORE" - if $BUG ; then - # turn bugs into links - p="#$p" - else - # turn URLs into links - p="$(echo $p |sed -e 's|http[s:]*//[^ ]*|\0|g')" - fi - write_page "$p" - write_page "$AFTER" - done < $TMPFILE - unset IFS - rm $TMPFILE -} - -issues_loop() { - TTMPFILE=$(mktemp) - echo "$@" > $TTMPFILE - while IFS= read -r p ; do - if [ "${p:0:2}" = "- " ] ; then - p="${p:2}" - fi - write_page "" - if [ "${ISSUES_URL[$p]}" != "" ] ; then - write_page "" - fi - if [ "${ISSUES_DESCRIPTION[$p]}" != "" ] ; then - write_page "" - fi - write_page "
Identifier:$p
URL${ISSUES_URL[$p]}
Description" - tag_property_loop "" "
" "${ISSUES_DESCRIPTION[$p]}" - write_page "
" - done < $TTMPFILE - unset IFS - rm $TTMPFILE -} - -create_pkg_note() { - BUG=false - rm -f $PAGE - # write_page_header() is not used as it contains the

tag... - write_page "" - write_page "" - write_page "" - write_page "Notes for $1" - write_page "" - write_page "" - - write_page "" - - if [ "${NOTES_ISSUES[$1]}" != "" ] ; then - write_page "" - fi - - BUG=true - if [ "${NOTES_BUGS[$1]}" != "" ] ; then - write_page "" - write_page "" - fi - BUG=false - - if [ "${NOTES_COMMENTS[$1]}" != "" ] ; then - write_page "" - write_page "" - fi - write_page "" - write_page "
Version annotated:${NOTES_VERSION[$1]}
Identified issues:" - issues_loop "${NOTES_ISSUES[$1]}" - write_page "
Bugs noted:" - tag_property_loop "" "
" "${NOTES_BUGS[$1]}" - write_page "
Comments:" - tag_property_loop "" "
" "${NOTES_COMMENTS[$1]}" - write_page "
 
" - write_page "Notes are stored in notes.git." - write_page "
" - write_page_footer -} - -create_issue() { - BUG=false - write_page_header "" "Notes about issue '$1'" - write_page "" - - write_page "" - - if [ "${ISSUES_URL[$1]}" != "" ] ; then - write_page "" - fi - if [ "${ISSUES_DESCRIPTION[$1]}" != "" ] ; then - write_page "" - write_page "" - fi - - write_page "" - write_page "" - write_page "
Identifier:$1
URL:${ISSUES_URL[$1]}
Description:" - tag_property_loop "" "
" "${ISSUES_DESCRIPTION[$1]}" - write_page "
Packages known to be affected by this issue:" - BETA_SIGN=false - for PKG in $PACKAGES_WITH_NOTES ; do - if [ "${NOTES_ISSUES[$PKG]}" != "" ] ; then - TTMPFILE=$(mktemp) - echo "${NOTES_ISSUES[$PKG]}" > $TTMPFILE - while IFS= read -r p ; do - if [ "${p:0:2}" = "- " ] ; then - p="${p:2}" - fi - if [ "$p" = "$1" ] ; then - write_page " ${LINKTARGET[$PKG]} " - if ! $BETA_SIGN && [ "${STAR[$PKG]}" != "" ] ; then - BETA_SIGN=true - fi - fi - done < $TTMPFILE - unset IFS - rm $TTMPFILE - fi - done - write_page "
 
" - write_page "Notes are stored in notes.git." - write_page "
" - write_page_meta_sign - write_page_footer -} - -write_issues() { - touch $ISSUES_PATH/stamp - for ISSUE in ${ISSUES} ; do - PAGE=$ISSUES_PATH/${ISSUE}_issue.html - create_issue $ISSUE - done - cd $ISSUES_PATH - for FILE in *.html ; do - # if issue is older than stamp file... - if [ $FILE -ot stamp ] ; then - rm $FILE - fi - done - rm stamp - cd - > /dev/null -} - -parse_issues() { - ISSUES=$(cat ${ISSUES_YML} | /srv/jenkins/bin/shyaml keys) - for ISSUE in ${ISSUES} ; do - echo " Issue = ${ISSUE}" - for PROPERTY in url description ; do - VALUE="$(cat ${ISSUES_YML} | /srv/jenkins/bin/shyaml get-value ${ISSUE}.${PROPERTY} )" - if [ "$VALUE" != "" ] ; then - case $PROPERTY in - url) ISSUES_URL[${ISSUE}]=$VALUE - echo " $PROPERTY = $VALUE" - ;; - description) ISSUES_DESCRIPTION[${ISSUE}]=$VALUE - show_multi_values "$VALUE" - ;; - esac - fi - done - done -} - -write_notes() { - touch $NOTES_PATH/stamp - for PKG in $PACKAGES_WITH_NOTES ; do - PAGE=$NOTES_PATH/${PKG}_note.html - create_pkg_note $PKG - done - cd $NOTES_PATH - for FILE in *.html ; do - PKG_FILE=/var/lib/jenkins/userContent/rb-pkg/${FILE:0:-10}.html - # if note was removed... - if [ $FILE -ot stamp ] ; then - # cleanup old notes - rm $FILE - # force re-creation of package file if there was a note - rm ${PKG_FILE} - else - # ... else re-recreate ${PKG_FILE} if it does not contain a link to the note - grep _note.html ${PKG_FILE} > /dev/null || rm ${PKG_FILE} - fi - done - rm stamp - cd - > /dev/null -} - -parse_notes() { - PACKAGES_WITH_NOTES=$(cat ${PACKAGES_YML} | /srv/jenkins/bin/shyaml keys) - for PKG in $PACKAGES_WITH_NOTES ; do - echo " Package = ${PKG}" - for PROPERTY in version issues bugs comments ; do - VALUE="$(cat ${PACKAGES_YML} | /srv/jenkins/bin/shyaml get-value ${PKG}.${PROPERTY} )" - if [ "$VALUE" != "" ] ; then - case $PROPERTY in - version) NOTES_VERSION[${PKG}]=$VALUE - echo " $PROPERTY = $VALUE" - ;; - issues) NOTES_ISSUES[${PKG}]=$VALUE - show_multi_values "$VALUE" - ;; - bugs) NOTES_BUGS[${PKG}]=$VALUE - show_multi_values "$VALUE" - ;; - comments) NOTES_COMMENTS[${PKG}]=$VALUE - show_multi_values "$VALUE" - ;; - esac - fi - done - done -} - -validate_yaml() { - VALID_YAML=true - set +e - cat $1 | /srv/jenkins/bin/shyaml keys > /dev/null 2>&1 || VALID_YAML=false - cat $1 | /srv/jenkins/bin/shyaml get-values > /dev/null 2>&1 || VALID_YAML=false - set -e - echo "$1 is valid yaml: $VALID_YAML" -} - -# -# end note parsing functions... -# - -init_pkg_page() { - echo "" > ${PKG_FILE} - echo "" >> ${PKG_FILE} - echo "$1 - reproducible builds results" >> ${PKG_FILE} - echo "
$1 $2" >> ${PKG_FILE} - set_icon "$3" $5 # this sets $STATE_TARGET_NAME and $ICON - echo "\"${STATE_TARGET_NAME}" >> ${PKG_FILE} - echo "at $4: " >> ${PKG_FILE} -} - -append2pkg_page() { - echo "$1" >> ${PKG_FILE} -} - -finish_pkg_page() { - echo "reproducible builds
" >> ${PKG_FILE} - echo "" >> ${PKG_FILE} - echo "" >> ${PKG_FILE} -} - -set_package_class() { - if [ -f ${NOTES_PATH}/${PKG}_note.html ] ; then - CLASS="class=\"noted\"" - else - CLASS="class=\"package\"" - fi -} - -process_packages() { - for PKG in $@ ; do - RESULT=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT build_date,version,status FROM source_packages WHERE name = \"$PKG\"") - BUILD_DATE=$(echo $RESULT|cut -d "|" -f1) - # version with epoch removed - EVERSION=$(echo $RESULT | cut -d "|" -f2 | cut -d ":" -f2) - 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 or have a note - PKG_FILE="/var/lib/jenkins/userContent/rb-pkg/${PKG}.html" - OLD_FILE=$(find $(dirname ${PKG_FILE}) -name $(basename ${PKG_FILE}) ! -newermt "$BUILD_DATE" 2>/dev/null || true) - # if no package file exists, or is older than last build_date - if [ ! -f ${PKG_FILE} ] || [ "$OLD_FILE" != "" ] ; then - VERSION=$(echo $RESULT | cut -d "|" -f2) - STATUS=$(echo $RESULT | cut -d "|" -f3) - MAINLINK="" - NOTES_LINK="" - if [ -f ${NOTES_PATH}/${PKG}_note.html ] ; then - NOTES_LINK=" notes " - fi - init_pkg_page "$PKG" "$VERSION" "$STATUS" "$BUILD_DATE" "${STAR[$PKG]}" - append2pkg_page "${NOTES_LINK}" - if [ -f "/var/lib/jenkins/userContent/buildinfo/${PKG}_${EVERSION}_amd64.buildinfo" ] ; then - append2pkg_page " buildinfo " - MAINLINK="$JENKINS_URL/userContent/buildinfo/${PKG}_${EVERSION}_amd64.buildinfo" - fi - if [ -f "/var/lib/jenkins/userContent/dbd/${PKG}_${EVERSION}.debbindiff.html" ] ; then - append2pkg_page " debbindiff " - MAINLINK="$JENKINS_URL/userContent/dbd/${PKG}_${EVERSION}.debbindiff.html" - fi - RBUILD_LOG="rbuild/${PKG}_${EVERSION}.rbuild.log" - if [ -f "/var/lib/jenkins/userContent/${RBUILD_LOG}" ] ; then - SIZE=$(du -sh "/var/lib/jenkins/userContent/${RBUILD_LOG}" |cut -f1) - append2pkg_page " rbuild ($SIZE) " - if [ "$MAINLINK" = "" ] ; then - MAINLINK="$JENKINS_URL/userContent/${RBUILD_LOG}" - fi - fi - append2pkg_page " PTS " - append2pkg_page " BTS " - append2pkg_page " sources " - append2pkg_page " debian/rules " - - if [ ! -z "${NOTES_LINK}" ] ; then - MAINLINK="$JENKINS_URL/userContent/notes/${PKG}_note.html" - fi - finish_pkg_page "$MAINLINK" - fi - if [ -f "/var/lib/jenkins/userContent/rbuild/${PKG}_${EVERSION}.rbuild.log" ] ; then - set_package_class - LINKTARGET[$PKG]="$PKG${STAR[$PKG]}" - else - LINKTARGET[$PKG]="$PKG" - fi - done -} - -force_package_targets() { - for PKG in $@ ; do - set_package_class - LINKTARGET[$PKG]="$PKG${STAR[$PKG]}" - done -} - -link_packages() { - for PKG in $@ ; do - write_page " ${LINKTARGET[$PKG]} " - if ! $BETA_SIGN && [ "${STAR[$PKG]}" != "" ] ; then - BETA_SIGN=true - fi - done -} - -# -# actually parse the notes -# -validate_yaml ${ISSUES_YML} -validate_yaml ${PACKAGES_YML} -if $VALID_YAML ; then - echo "$(date) - processing notes and issues" - parse_issues - parse_notes - echo "$(date) - processing packages with notes" - process_packages ${PACKAGES_WITH_NOTES} - force_package_targets ${PACKAGES_WITH_NOTES} - write_issues - write_notes -else - echo "Warning: ${ISSUES_YML} or ${PACKAGES_YML} contains invalid yaml, please fix." -fi - # # actually build the package pages # echo "$(date) - processing $COUNT_TOTAL packages... this will take a while." -BUILDINFO_SIGNS=true process_packages ${BAD["all"]} -BUILDINFO_SIGNS=false process_packages ${UGLY["all"]} ${GOOD["all"]} ${SOURCELESS["all"]} ${NOTFORUS["all"]} $BLACKLISTED for VIEW in $ALLVIEWS ; do - BETA_SIGN=false + BUILDINFO_SIGNS=true PAGE=index_${VIEW}.html echo "$(date) - starting to write $PAGE page." write_page_header $VIEW "Overview of reproducible builds of ${SPOKENTARGET[$VIEW]}" @@ -513,6 +111,7 @@ for VIEW in $ALLVIEWS ; do set_icon reproducible write_icon write_page "$COUNT_GOOD packages ($PERCENT_GOOD%) successfully built reproducibly$FINISH " + BUILDINFO_SIGNS=false link_packages ${GOOD[$VIEW]} write_page "

" write_page_meta_sign @@ -520,61 +119,26 @@ for VIEW in $ALLVIEWS ; do publish_page done -VIEW=notes -PAGE=index_${VIEW}.html -echo "$(date) - starting to write $PAGE page." -write_page_header $VIEW "Overview of ${SPOKENTARGET[$VIEW]}" -if $VALID_YAML ; then - BETA_SIGN=false - write_page "

Packages which have notes: " - force_package_targets ${PACKAGES_WITH_NOTES} - PACKAGES_WITH_NOTES=$(echo $PACKAGES_WITH_NOTES | sed -s "s# #\n#g" | sort | xargs echo) - link_packages $PACKAGES_WITH_NOTES - write_page "

" -else - write_page "

Broken .yaml files in notes.git could not be parsed, please investigate and fix!

" -fi -write_page "

Notes are stored in notes.git.

" -write_page_meta_sign -write_page_footer -publish_page - -VIEW=issues -PAGE=index_${VIEW}.html -echo "$(date) - starting to write $PAGE page." -write_page_header $VIEW "Overview of ${SPOKENTARGET[$VIEW]}" -if $VALID_YAML ; then - write_page "" - ISSUES=$(echo ${ISSUES} | sed -s "s# #\n#g" | sort | xargs echo) - for ISSUE in ${ISSUES} ; do - write_page "" - done - write_page "
${ISSUE}
" -else - write_page "

Broken .yaml files in notes.git could not be parsed, please investigate and fix!

" -fi -write_page "

Notes are stored in notes.git.

" -write_page_footer -publish_page - count_packages() { COUNT=${#@} PERCENT=$(echo "scale=1 ; ($COUNT*100/$COUNT_TOTAL)" | bc) } for STATE in $ALLSTATES ; do - BETA_SIGN=false + BUILDINFO_SIGNS=true PAGE=index_${STATE}.html echo "$(date) - starting to write $PAGE page." write_page_header $STATE "Overview of ${SPOKENTARGET[$STATE]}" WITH="" case "$STATE" in - reproducible) PACKAGES=${GOOD["all"]} + reproducible) BUILDINFO_SIGNS=false + PACKAGES=${GOOD["all"]} ;; FTBR) CANDIDATES=${BAD["all"]} PACKAGES="" for PKG in $CANDIDATES ; do - if [ "${STAR[$PKG]}" = "" ] ; then + set_package_star + if [ "$STAR" = "" ] ; then PACKAGES="$PACKAGES $PKG" fi done @@ -582,7 +146,8 @@ for STATE in $ALLSTATES ; do FTBR_with_buildinfo) CANDIDATES=${BAD["all"]} PACKAGES="" for PKG in $CANDIDATES ; do - if [ "${STAR[$PKG]}" != "" ] ; then + set_package_star + if [ "$STAR" != "" ] ; then PACKAGES="$PACKAGES $PKG" fi done @@ -610,31 +175,6 @@ for STATE in $ALLSTATES ; do publish_page done -VIEW=dd-list -PAGE=index_${VIEW}.html -echo "$(date) - starting to write $PAGE page." -write_page_header $VIEW "Overview of ${SPOKENTARGET[$VIEW]}" -TMPFILE=$(mktemp) -echo "${BAD["all"]}" | dd-list -i > $TMPFILE || true -write_page "

The following maintainers and uploaders are listed for packages which have built unreproducibly:

"
-while IFS= read -r LINE ; do
-	if [ "${LINE:0:3}" = "   " ] ; then
-		PACKAGE=$(echo "${LINE:3}" | cut -d " " -f1)
-		UPLOADERS=$(echo "${LINE:3}" | cut -d " " -f2-)
-		if [ "$UPLOADERS" = "$PACKAGE" ] ; then
-			UPLOADERS=""
-		fi
-		write_page "   $PACKAGE $UPLOADERS"
-	else
-		LINE="$(echo $LINE | sed 's#&#\&#g ; s#<#\<#g ; s#>#\>#g')"
-		write_page "$LINE"
-	fi
-done < $TMPFILE
-write_page "

" -rm $TMPFILE -write_page_footer -publish_page - # # create stats # @@ -802,4 +342,3 @@ write_page "

" write_page_footer publish_page -echo "Enjoy $JENKINS_URL/userContent/reproducible.html" -- cgit v1.2.3-70-g09d2