]> git.decadent.org.uk Git - dak.git/commitdiff
Support +b[0-9] versions in autobyhand for di
authorMark Hymers <mhy@debian.org>
Wed, 7 Jul 2010 17:24:31 +0000 (17:24 +0000)
committerChris Lamb <lamby@debian.org>
Wed, 7 Jul 2010 21:25:42 +0000 (22:25 +0100)
Signed-off-by: Mark Hymers <mhy@debian.org>
scripts/debian/byhand-di

index 70faceb63cfec40a53a0089508729d258cc1be4a..ab01536d7adf4f165c2c1fabd7d30b297ec1e9db 100755 (executable)
@@ -16,8 +16,8 @@ error() {
 }
 
 # Check validity of version number
-# Expected are: YYYYMMDD, YYYYMMDD.x, YYYYMMDD<suite>x
-if ! echo "$VERSION" | grep -Eq "^[0-9]{8}(|(\.|[a-z]+)[0-9]+)$"; then
+# Expected are: YYYYMMDD, YYYYMMDD.x, YYYYMMDD<suite>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
        error "Invalid version: '$VERSION'"
 fi
 
@@ -50,10 +50,13 @@ if [ -d "$TARGET/$VERSION" ]; then
        error "Directory already exists: $TARGET/$VERSION"
 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@+@\\\+@')"
+
 # We know all data to be in ./installer-<arch>/<version>; see if there's
 # anything else in the tarball except that and the 'current' symlink
 if tar tzf "$TARBALL" | \
-   grep -Eqv "^\./(installer-$ARCH/($VERSION/.*|current|)|)$"; then
+   grep -Eqv "^\./(installer-$ARCH/($VERSIONREGEXP/.*|current|)|)$"; then
        error "Tarball contains unexpected contents"
 fi