source: MondoRescue/trunk/tools/mknewtag@ 649

Last change on this file since 649 was 649, checked in by bcornec, 18 years ago

merge -r617:641 $SVN_M/branches/stable

  • Property svn:executable set to *
File size: 1.0 KB
Line 
1#!/bin/bash
2#
3# Prepare a new delivery of the same version by changing TAG
4#
5# $Id$
6#
7# Syntax: mknewtag
8#
9
10umask 022
11dname=`dirname $0`
12prem=`echo $dname |cut -c1`
13if [ ${prem} == "/" ]; then
14 export TOOLHOME=$dname
15else
16 export TOOLHOME=${PWD}/$dname
17fi
18
19. $TOOLHOME/common-env
20. $TOOLHOME/distro-env
21
22# We need to get $VER and $TAG
23if [ "$1" = "" ]; then
24 LAST=`cat ${TOPDIR}/LAST`
25else
26 LAST=$1
27 shift
28fi
29VER=`echo $LAST | cut -d- -f1`
30
31TAG=`echo $LAST | cut -d- -f2`
32echo -n "Changing TAG of version $VER value from $TAG to "
33((TAG=$TAG+1))
34echo "$TAG"
35nb=`svn diff $TOOLHOME/.. | wc -l`
36if [ $nb -gt 0 ]; then
37 echo "You'll have to check in before updating the TAG"
38 echo "$TAG" > $TOOLHOME/TAG
39else
40 for p in mindi mondo; do
41 grep -q "${VER}-${TAG}" $TOOLHOME/../$p/Changelog
42 if [ $? -ne 0 ]; then
43 echo "You'll have to document in ${p}'s Changelog for ${VER}-${TAG} related modifications"
44 exit -1
45 fi
46 done
47 echo "$TAG" > $TOOLHOME/TAG
48 (cd $TOOLHOME/.. ; svn ci -m "Automatic update of TAG to $TAG" ; svn up)
49fi
Note: See TracBrowser for help on using the repository browser.