From: Anthony Towns Date: Wed, 5 Dec 2007 07:07:18 +0000 (+0000) Subject: add {} as valid characters in tags X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=164bd4615cb96a8b8d5bac8d67c0b5c57a7f64e2;p=dak.git add {} as valid characters in tags automatically update extra overrides when accepting new tags as autobyhand --- diff --git a/scripts/debian/byhand-tag b/scripts/debian/byhand-tag index 3bb32808..e9cb43ac 100755 --- a/scripts/debian/byhand-tag +++ b/scripts/debian/byhand-tag @@ -4,7 +4,7 @@ INPUT="${1:?"Usage: $0 filename"}" # Regular expression used to validate tag lines -CHECKRE='^[a-z0-9A-Z.+-]+[[:space:]]+Tag[[:space:]]+[a-z0-9:. ,+-]+$' +CHECKRE='^[a-z0-9A-Z.+-]+[[:space:]]+Tag[[:space:]]+[a-z0-9:. ,{}+-]+$' # This must end with / TARGET=/srv/ftp.debian.org/scripts/external-overrides/ @@ -38,6 +38,8 @@ mv "$OUTNONFREE" "$TARGET"tag.non-free chmod 644 "$TARGET"tag "$TARGET"tag.contrib "$TARGET"tag.non-free +(cd $TARGET && ./mk-extra-overrides.sh) + trap - EXIT exit 0