aboutsummaryrefslogtreecommitdiffstats
path: root/maintainer/tag
diff options
context:
space:
mode:
Diffstat (limited to 'maintainer/tag')
-rwxr-xr-xmaintainer/tag36
1 files changed, 36 insertions, 0 deletions
diff --git a/maintainer/tag b/maintainer/tag
new file mode 100755
index 0000000..1f62b38
--- /dev/null
+++ b/maintainer/tag
@@ -0,0 +1,36 @@
+#!/bin/sh
+#
+# tag:
+#
+# Copyright (c) 2009 James McKenzie <20@madingley.org>,
+# All rights reserved.
+#
+# $Id$
+#
+# $Log$
+# Revision 1.1 2009/02/08 16:25:32 root
+# *** empty log message ***
+#
+#
+#
+#
+cvs commit -m ""
+
+FILES=`cat version-files`
+CHK=`cat $FILES | md5sum | awk '{print $1}'`
+TG=`grep $CHK version-md5sums | awk '{print $2}'`
+if [ .$TG != . ]; then
+ echo This code already tagged as Version $TG
+ exit 0
+fi
+
+MAJOR=`cat version-major`
+MINOR=`cat version-minor`
+MICRO=$[ `cat version-micro` + 1 ]
+
+echo $MICRO > version-micro
+
+echo "$CHK ${MAJOR}.${MINOR}.${MICRO}" >> version-md5sums
+
+cvs commit -m ""
+cvs tag libjwg-$MAJOR_$MINOR_$MICRO .