claws-mail/commitHelper

138 lines
3.1 KiB
Plaintext
Raw Normal View History

#!/bin/bash
2004-08-07 18:52:36 +02:00
args=`echo $@`
tmpfile=${0##*/}.tmp
head -n 16 configure.ac | grep VERSION= > $tmpfile
source $tmpfile
EXTRA_VERSION=`echo $EXTRA_VERSION | awk -F'.' '{for (i=1;i<NF;i++){printf $i"."};printf $NF+1}'`
nextsversion="${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}cvs${EXTRA_VERSION}"
nextextra="$EXTRA_VERSION"
nextextratype="head"
rm -f $tmpfile
IFS='
'
2004-08-07 14:35:24 +02:00
filelist=`cvs status $@ configure.ac 2>/dev/null |grep ^File`
for file in $filelist; do
merge=`echo $file | grep Merge`
modif=`echo $file | grep Locally`
2005-04-12 22:56:53 +02:00
patch=`echo $file | grep Patch`
2005-04-12 19:58:06 +02:00
if [ "$patch" != "" ]; then
echo $patch
echo You have to update first
exit
fi;
if [ "$merge" != "" ]; then
echo $merge
echo You have to update first
exit
fi;
if [ "$modif" != "" ]; then
echo $modif
fi;
done;
patchset="("
log=""
files=`cvs diff -uN $@ 2>$tmpfile |grep ^Index`
if [ "$files" == "" ]; then
echo Nothing to commit\!
if [ -s $tmpfile ]; then
echo See possible reason below:
cat $tmpfile
fi
exit
fi
rm -f $tmpfile
2004-07-09 11:07:30 +02:00
name=`whoami`
#change if your login isn't your name
if [ "$name" == "claws" ]; then
name="paul";
fi;
2004-08-11 08:45:23 +02:00
if [ "$name" == "leroyc" ]; then
name="colin";
fi;
2005-02-05 11:40:04 +01:00
if [ "$name" == "torte" ]; then
name="thorsten";
fi;
if [ "$name" == "dinh" ]; then
name="hoa";
fi;
if [ "$name" == "f" -o "$name" == "darkok" ]; then
name="darko";
fi;
if [ "$name" == "msp" ]; then
name="martin";
fi;
if [ "$name" == "devel" ]; then
name="mones";
fi;
2004-07-22 14:34:57 +02:00
2004-08-08 11:46:46 +02:00
log="`date --utc +%Y-%m-%d` [$name]\t$nextsversion\n\n"
for line in $files; do
file=`echo $line | cut -d' ' -f2`
dir=`dirname $file`
filename=`basename $file`
cvsfile="$dir/CVS/Entries"
2004-07-09 11:07:30 +02:00
version=`grep "\/$filename\/" $cvsfile | cut -d'/' -f3`
nextversion=`echo $version | awk -F'.' '{for (i=1;i<NF;i++){printf $i"."};printf $NF+1}'`
2004-07-09 11:07:30 +02:00
log="$log\t* $file\n"
2005-05-31 08:48:27 +02:00
if [ "$version" != "0" ]; then
patchset="$patchset cvs diff -u -r $version -r $nextversion $file; "
2005-05-31 08:48:27 +02:00
else
patchset="$patchset diff -u /dev/null $file; "
2005-05-31 08:48:27 +02:00
fi
done;
patchset="$patchset ) > $nextsversion.patchset"
if [ "$CVSEDITOR" == "" ]; then
if [ "$EDITOR" == "" ]; then
if [ "$VISUAL" != "" ]; then
EDITOR=$VISUAL
else
EDITOR=vi
fi;
fi;
else
EDITOR=$CVSEDITOR
fi;
echo -e "#please complete the changelog entry below" > /tmp/logentry
echo -e -n $log >> /tmp/logentry
$EDITOR /tmp/logentry
2004-08-07 14:35:24 +02:00
echo "--8<----------"
grep -v "^#" /tmp/logentry > /tmp/log.tmp.$$ \
&& mv /tmp/log.tmp.$$ /tmp/logentry
echo >> /tmp/logentry
cat /tmp/logentry
chlog="ChangeLog"
echo "--8<----------"
2004-08-06 17:57:10 +02:00
echo -n "Is it ok (write to $chlog and update configure.ac) [y/N]?"
read ans
if [ "$ans" == "y" ]; then
mv $chlog $chlog.old
cat /tmp/logentry > $chlog
cat $chlog.old >> $chlog
rm $chlog.old
2004-08-06 17:57:10 +02:00
cat configure.ac | sed "s/^EXTRA_VERSION=.*/EXTRA_VERSION=$nextextra/" > configure.ac.new \
&& mv configure.ac.new configure.ac ;
2004-08-06 17:57:10 +02:00
echo "$patchset" >> PATCHSETS
2004-08-07 18:52:36 +02:00
if [ "$args" != "" ]; then
echo commiting $@ PATCHSETS $chlog configure.ac
cvs commit -m "`cat /tmp/logentry`" $@ PATCHSETS $chlog configure.ac
2004-07-28 09:56:28 +02:00
else
echo commiting recursively
cvs commit -m "`cat /tmp/logentry` "
2004-07-28 09:56:28 +02:00
fi;
2004-08-07 14:35:24 +02:00
rm -f /tmp/logentry
2005-04-29 19:28:43 +02:00
wget -O /dev/null -o /dev/null http://www.colino.net/sylpheed-claws-gtk2/update.php3
fi