]> git.proxmox.com Git - mirror_lxc.git/commitdiff
Remove the release script
authordlezcano <dlezcano>
Mon, 26 Jan 2009 08:31:52 +0000 (08:31 +0000)
committerdlezcano <dlezcano>
Mon, 26 Jan 2009 08:31:52 +0000 (08:31 +0000)
From: Daniel Lezcano <daniel.lezcano@free.fr>

Removed the release.sh script which is not in the right place in this source
tree.

Signed-off-by: Daniel Lezcano <daniel.lezcano@free.fr>
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
release.sh [deleted file]

diff --git a/release.sh b/release.sh
deleted file mode 100644 (file)
index 1aeba80..0000000
+++ /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