diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-09-28 00:50:08 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-09-28 00:50:08 +0200 |
commit | ce39465314667494026f1d02132672f30437fe4c (patch) | |
tree | e4ad2a09ce0c74405b31be904d2a111da36abf6c /bin | |
parent | 3d88e976d84b4cd39cbcd7c8c9a89342518280b5 (diff) | |
download | jenkins.debian.net-ce39465314667494026f1d02132672f30437fe4c.tar.xz |
reproducible: fix typos and install sqlite3 on the host
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index a4121c37..ce76e791 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -66,9 +66,9 @@ for SRCPACKAGE in $PACKAGES ; do if [ $RESULT != 0 ] ; then SOURCELESS="${SOURCELESS} ${SRCPACKAGE}" echo "Warning: ${SRCPACKAGE} is not a source package, or was removed or renamed. Please investigate." - sqlite3 $PACKAGES_DB "REPLACE INTO source_packages VALUES (\"${SRCPACKAGE}\", \"${VERSION}\", \"404\")" + sqlite3 $PACKAGES_DB "REPLACE INTO source_packages VALUES (\"${SRCPACKAGE}\", \"none available\", \"404\")" else - VERSION=$(grep ^Version ${SRCPACKAGE}_*.dsc | cut -d " " -f) + VERSION=$(grep ^Version ${SRCPACKAGE}_*.dsc | cut -d " " -f2 | head -1) STATUS=$(sqlite3 $PACKAGES_DB "SELECT status FROM source_packages WHERE name = \"${SRCPACKAGE}\" AND version = \"${VERSION}\"") if [ "$STATUS" = "reproducible" ] && [ $(( $RANDOM % 100 )) -gt 25 ] ; then echo "Package ${SRCPACKAGE} (${VERSION}) build reproducibly in the past and was thus randomly skipped." |