From: dlezcano Date: Mon, 26 Jan 2009 08:31:52 +0000 (+0000) Subject: Remove the release script X-Git-Tag: lxc_0_6_0~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d8370a5ef198c988abce69a1a1710ce775b6fc1;p=thirdparty%2Flxc.git Remove the release script From: Daniel Lezcano Removed the release.sh script which is not in the right place in this source tree. Signed-off-by: Daniel Lezcano Signed-off-by: Daniel Lezcano --- diff --git a/release.sh b/release.sh deleted file mode 100644 index 1aeba803b..000000000 --- a/release.sh +++ /dev/null @@ -1,34 +0,0 @@ -# -# This script is for the maintainer to release rpm, dist and -# tag with the version found in the configure file the cvs -# repository -# -#!/bin/bash - -NAME=$1 -MAJOR=$2 -MINOR=$3 -MICRO=$4 -VERSION=$MAJOR\_$MINOR\_$MICRO -TAG=$NAME\_$VERSION - -release_tag() { - echo - echo -n "Ready to tag $TAG [Y/n] " - read - - test -z "$REPLY" || echo $REPLY | egrep "y|Y|Yes" && \ - cvs tag $TAG - test ! -z "$REPLY" && echo "Aborted" -} - -release_changelog() { - echo "Generating ChangeLog" - echo -n "Please give the previous tag name: " - read - cvs2cl --delta $REPLY:$TAG --stdout > ChangeLog.diff -} - -release_tag - -release_changelog \ No newline at end of file