From 4163308ecae26c76d22e4cc80d8bae729b06b94f Mon Sep 17 00:00:00 2001 From: james <> Date: Sun, 3 Feb 2008 16:20:24 +0000 Subject: *** empty log message *** --- maintainer/tag | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 maintainer/tag (limited to 'maintainer/tag') diff --git a/maintainer/tag b/maintainer/tag new file mode 100755 index 0000000..0565a54 --- /dev/null +++ b/maintainer/tag @@ -0,0 +1,36 @@ +#!/bin/sh +# +# tag: +# +# Copyright (c) 2008 James McKenzie , +# All rights reserved. +# +# $Id$ +# +# $Log$ +# Revision 1.1 2008/02/03 16:20:24 james +# *** 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 libsympathy-$MAJOR_$MINOR_$MICRO . -- cgit v1.2.3