From c6618277c3748ee9faae8d11f202d7f07032f1b8 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 25 Nov 2013 13:21:17 +0000 Subject: [PATCH] allow usage of previous version + comments --- debian/orig-tar.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index 7b543f0e..6d394be7 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -18,11 +18,12 @@ MAJOR_VERSION=3.4 if test -n "$1"; then # http://llvm.org/svn/llvm-project/{cfe,llvm,compiler-rt,...}/branches/google/stable/ +# For example: sh 3.4/debian/orig-tar.sh release_34 BRANCH=$1 fi if test -n "$1" -a -n "$2"; then -# http://llvm.org/svn/llvm-project/{cfe,llvm,compiler-rt,...}/branches/google/stable/ +# http://llvm.org/svn/llvm-project/{cfe,llvm,compiler-rt,...}/tags/RELEASE_34/rc1/ BRANCH=$1 TAG=$2 RCRELEASE="true" @@ -125,6 +126,6 @@ cd $PATH_DEBIAN if test -z "$DISTRIBUTION"; then DISTRIBUTION="experimental" fi -dch --distribution $DISTRIBUTION --newversion 1:$VERSION-1~exp1 "New snapshot release" +dch --allow-lower-version --distribution $DISTRIBUTION --newversion 1:$VERSION-1~exp1 "New snapshot release" exit 0