X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=scripts%2Fdebian%2Fbyhand-di;h=783c2b9fda952aba54b6c0c697b067a63f57c70b;hb=86a3396c7be7012aefa8e548064673aa14c6eb39;hp=99cb313152555496227c56f751cad15f8e66d9a8;hpb=904ac9b520fb3a9449a42f7f26e71c372789227d;p=dak.git diff --git a/scripts/debian/byhand-di b/scripts/debian/byhand-di index 99cb3131..783c2b9f 100755 --- a/scripts/debian/byhand-di +++ b/scripts/debian/byhand-di @@ -1,7 +1,8 @@ -#!/bin/sh +#!/bin/bash set -u set -e +set -o pipefail if [ $# -lt 4 ]; then echo "Usage: $0 filename version arch changes_file" @@ -19,8 +20,9 @@ error() { } # Check validity of version number -# Expected are: YYYYMMDD, YYYYMMDD.x, YYYYMMDDx, YYYYMMDD+x and the +b[0-9] on the end -if ! echo "$VERSION" | grep -Eq "^[0-9]{8}(|(\.|\+?[a-z]+)[0-9]+)(\+b[0-9])?$"; then +# Expected are: YYYYMMDD, YYYYMMDD.x, YYYYMMDDx, YYYYMMDD+x, +# YYYYMMDD+debXuZ and the +b[0-9] on the end +if ! echo "$VERSION" | grep -Eq "^[0-9]{8}((\.|\+?[a-z]+|\+deb[0-9]+u|\+kbsd[0-9]+u)[0-9]+)?(\+b[0-9])?$"; then error "Invalid version: '$VERSION'" fi @@ -31,7 +33,7 @@ case $SUITE in "") error "Error: unable to determine suite from Changes file" ;; - unstable|sid) + unstable|sid|*-proposed-updates) : # nothing to do ;; *) @@ -54,7 +56,8 @@ if [ -d "$TARGET/$VERSION" ]; then fi # We know the VERSION is sane by here, we just need to make sure we escape the + in +b1 (if any) -VERSIONREGEXP="$(echo $VERSION | sed 's@+@\\\+@')" +# It needs 'g' as well as we may have +$DIST+b[0-9] or +debXuZ+bY +VERSIONREGEXP="$(echo $VERSION | sed 's@+@\\\+@g')" # We know all data to be in ./installer-/; see if there's # anything else in the tarball except that and the 'current' symlink