diff options
author | root <root> | 2007-09-08 16:49:37 +0000 |
---|---|---|
committer | root <root> | 2007-09-08 16:49:37 +0000 |
commit | 44341d32524c1621357bac52ffca7d8e9270c3e4 (patch) | |
tree | f9920382c2c19f05d3d09f4f5ce07f2cb1312247 /maintainer/tag | |
parent | 77f753281564930411f0a0a0965810fb80f22915 (diff) | |
download | gpt-44341d32524c1621357bac52ffca7d8e9270c3e4.tar.gz gpt-44341d32524c1621357bac52ffca7d8e9270c3e4.tar.bz2 gpt-44341d32524c1621357bac52ffca7d8e9270c3e4.zip |
*** empty log message ***
Diffstat (limited to 'maintainer/tag')
-rwxr-xr-x | maintainer/tag | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/maintainer/tag b/maintainer/tag new file mode 100755 index 0000000..7359975 --- /dev/null +++ b/maintainer/tag @@ -0,0 +1,36 @@ +#!/bin/sh +# +# tag: +# +# Copyright (c) 2007 James McKenzie <james@fishsoup.dhs.org>, +# All rights reserved. +# +# $Id: tag,v 1.1 2007/09/08 16:49:37 root Exp $ +# +# $Log: tag,v $ +# Revision 1.1 2007/09/08 16:49:37 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 gpt-$MAJOR_$MINOR_$MICRO . |