From c1fe1c605e3bd126809fb87d0cd650473a43be80 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sat, 4 Oct 2014 11:14:01 +0200 Subject: reproducible: parse version correctly, without leading space --- bin/reproducible_build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin/reproducible_build.sh') diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 695d1cac..d006010b 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -86,7 +86,7 @@ if [[ $1 =~ ^-?[0-9]+$ ]] ; then fi done else - # this is kind of a hack: if $1 is 0, then schedule 33 failed packages which were nadomly picked and where a new version is available + # this is kind of a hack: if $1 is 0, then schedule 33 failed packages which were randomly picked and where a new version is available CSVFILE=$(mktemp) sqlite3 -csv -init $INIT ${PACKAGES_DB} "DELETE from sources" (xzcat $TMPFILE | egrep "(^Package:|^Version:)" | sed -s "s#^Version: ##g; s#Package: ##g; s#\n# #g"| while read PKG ; do read VERSION ; echo "$PKG,$VERSION" ; done) > $CSVFILE @@ -167,8 +167,8 @@ for SRCPACKAGE in ${PACKAGES} ; do echo "Warning: ${SRCPACKAGE} is not a source package, or was removed or renamed. Please investigate." continue else - VERSION=$(grep "^Version: " ${SRCPACKAGE}_*.dsc| grep -v "GnuPG v" | sort -r | head -1 | cut -d ":" -f2-) - ARCH=$(grep "^Architecture: " ${SRCPACKAGE}_*.dsc| sort -r | head -1 | cut -d ":" -f2) + VERSION=$(grep "^Version: " ${SRCPACKAGE}_*.dsc| grep -v "GnuPG v" | sort -r | head -1 | cut -d " " -f2-) + ARCH=$(grep "^Architecture: " ${SRCPACKAGE}_*.dsc| sort -r | head -1 | cut -d " " -f2) if [[ ! "$ARCH" =~ "amd64" ]] && [[ ! "$ARCH" =~ "all" ]] && [[ ! "$ARCH" =~ "any" ]] ; then sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO source_packages VALUES (\"${SRCPACKAGE}\", \"${VERSION}\", \"not for us\", \"$DATE\", \"\")" echo "Package ${SRCPACKAGE} (${VERSION}) shall only be build on \"$ARCH\" and was thus skipped." -- cgit v1.2.3-70-g09d2