|
Last change
on this file since 3473 was 640, checked in by bcornec, 20 years ago |
|
mindi's version has to be computed for tools/mknewtag
|
-
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 |
|
|---|
| 10 | umask 022
|
|---|
| 11 | dname=`dirname $0`
|
|---|
| 12 | prem=`echo $dname |cut -c1`
|
|---|
| 13 | if [ ${prem} == "/" ]; then
|
|---|
| 14 | export TOOLHOME=$dname
|
|---|
| 15 | else
|
|---|
| 16 | export TOOLHOME=${PWD}/$dname
|
|---|
| 17 | fi
|
|---|
| 18 |
|
|---|
| 19 | . $TOOLHOME/common-env
|
|---|
| 20 | . $TOOLHOME/distro-env
|
|---|
| 21 |
|
|---|
| 22 | # We need to get $VER and $TAG
|
|---|
| 23 | if [ "$1" = "" ]; then
|
|---|
| 24 | LAST=`cat ${TOPDIR}/LAST`
|
|---|
| 25 | else
|
|---|
| 26 | LAST=$1
|
|---|
| 27 | shift
|
|---|
| 28 | fi
|
|---|
| 29 | VER=`echo $LAST | cut -d- -f1`
|
|---|
| 30 |
|
|---|
| 31 | TAG=`echo $LAST | cut -d- -f2`
|
|---|
| 32 | echo -n "Changing TAG of version $VER value from $TAG to "
|
|---|
| 33 | ((TAG=$TAG+1))
|
|---|
| 34 | echo "$TAG"
|
|---|
| 35 | nb=`svn diff $TOOLHOME/.. | wc -l`
|
|---|
| 36 | if [ $nb -gt 0 ]; then
|
|---|
| 37 | echo "You'll have to check in before updating the TAG"
|
|---|
| 38 | echo "$TAG" > $TOOLHOME/TAG
|
|---|
| 39 | else
|
|---|
| 40 | for p in mindi mondo; do
|
|---|
| 41 | v=`cat $TOOLHOME/../$p/VERSION`
|
|---|
| 42 | grep -q "${v}-${TAG}" $TOOLHOME/../$p/ChangeLog
|
|---|
| 43 | if [ $? -ne 0 ]; then
|
|---|
| 44 | echo "You'll have to document in ${p}'s ChangeLog for ${v}-${TAG} related modifications"
|
|---|
| 45 | exit -1
|
|---|
| 46 | fi
|
|---|
| 47 | done
|
|---|
| 48 | echo "$TAG" > $TOOLHOME/TAG
|
|---|
| 49 | (cd $TOOLHOME/.. ; svn ci -m "Automatic update of TAG to $TAG" ; svn up)
|
|---|
| 50 | fi
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.