2008-05-23 [paul] 3.4.0cvs65
[claws.git] / commitHelper
1 #!/bin/bash
2 args=`echo $@`
3 tmpfile=${0##*/}.tmp
4
5 head -n 16 configure.ac | grep VERSION= > $tmpfile
6 source $tmpfile
7 EXTRA_VERSION=`echo $EXTRA_VERSION | awk -F'.' '{for (i=1;i<NF;i++){printf $i"."};printf $NF+1}'`
8 nextsversion="${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}cvs${EXTRA_VERSION}"
9 nextextra="$EXTRA_VERSION"
10 nextextratype="head"
11 rm -f $tmpfile
12
13 IFS='
14 '
15 filelist=`cvs status $@ configure.ac 2>/dev/null |grep ^File`
16
17 for file in $filelist; do
18         merge=`echo $file | grep Merge`
19         modif=`echo $file | grep Locally`
20         patch=`echo $file | grep Patch`
21         if [ "$patch" != "" ]; then
22                 echo $patch 
23                 echo You have to update first
24                 exit
25         fi;
26         if [ "$merge" != "" ]; then
27                 echo $merge 
28                 echo You have to update first
29                 exit
30         fi;
31         if [ "$modif" != "" ]; then
32                 echo $modif
33         fi;
34 done;
35 patchset="("
36 log=""
37 files=`cvs diff -uN $@ 2>$tmpfile |grep ^Index`
38 if [ "$files" == "" ]; then
39         echo Nothing to commit\!
40         if [ -s $tmpfile ]; then
41                 echo See possible reason below:
42                 cat $tmpfile
43         fi
44         exit
45 fi
46 rm -f $tmpfile
47 name=`whoami`
48 #change if your login isn't your name
49 if [ "$name" == "claws" ]; then
50         name="paul";
51 fi;
52 if [ "$name" == "leroyc" ]; then
53         name="colin";
54 fi;
55 if [ "$name" == "torte" ]; then
56         name="thorsten";
57 fi;
58 if [ "$name" == "dinh" ]; then
59         name="hoa";
60 fi;
61 if [ "$name" == "f" -o "$name" == "darkok" ]; then
62         name="darko";
63 fi;
64 if [ "$name" == "msp" ]; then
65         name="martin";
66 fi;
67 if [ "$name" == "devel" ]; then
68         name="mones";
69 fi;
70 if [ "$name" == "hb" ]; then
71         name="holger";
72 fi;
73 if [ "$name" == "salvatore" ]; then
74         name="iwkse";
75 fi;
76
77 log="`date --utc +%Y-%m-%d` [$name]\t$nextsversion\n\n"
78 for line in $files; do
79         file=`echo $line | cut -d' ' -f2`
80         dir=`dirname $file`
81         filename=`basename $file`
82         cvsfile="$dir/CVS/Entries"
83         version=`grep "\/$filename\/" $cvsfile | cut -d'/' -f3`
84         nextversion=`echo $version | awk -F'.' '{for (i=1;i<NF;i++){printf $i"."};printf $NF+1}'`
85         
86         log="$log\t* $file\n"
87         if [ "$version" != "0" ]; then
88                 patchset="$patchset cvs diff -u -r $version -r $nextversion $file; "
89         else
90                 patchset="$patchset diff -u /dev/null $file; "
91         fi
92 done;
93 patchset="$patchset ) > $nextsversion.patchset"
94
95 if [ "$CVSEDITOR" == "" ]; then
96         if [ "$EDITOR" == "" ]; then
97                 if [ "$VISUAL" != "" ]; then
98                         EDITOR=$VISUAL
99                 else
100                         EDITOR=vi
101                 fi;
102         fi;
103 else
104         EDITOR=$CVSEDITOR
105 fi;
106
107 echo -e "#please complete the changelog entry below" > /tmp/logentry.$$
108 echo -e -n $log >> /tmp/logentry.$$
109
110 $EDITOR /tmp/logentry.$$
111
112 echo "--8<----------"
113 grep -v "^#" /tmp/logentry.$$ > /tmp/log.tmp.$$ \
114 && mv /tmp/log.tmp.$$ /tmp/logentry.$$
115 echo >> /tmp/logentry.$$
116 cat /tmp/logentry.$$
117
118 chlog="ChangeLog"
119
120 echo "--8<----------"
121 echo -n "Is it ok (write to $chlog and update configure.ac) [y/N]?"
122 read ans
123 if [ "$ans" == "y" ]; then
124         mv $chlog $chlog.old
125         cat /tmp/logentry.$$ > $chlog
126         cat $chlog.old >> $chlog
127         rm $chlog.old
128
129         cat configure.ac | sed "s/^EXTRA_VERSION=.*/EXTRA_VERSION=$nextextra/" > configure.ac.new \
130         && mv configure.ac.new configure.ac ;
131         
132         echo "$patchset" >> PATCHSETS
133
134         if [ "$args" != "" ]; then
135                 echo commiting $@ PATCHSETS $chlog configure.ac
136                 cvs commit -m "`cat /tmp/logentry.$$`" $@ PATCHSETS $chlog configure.ac
137         else
138                 echo commiting recursively
139                 cvs commit -m "`cat /tmp/logentry.$$` "
140         fi;
141         rm -f /tmp/logentry.$$
142         wget -O /dev/null -o /dev/null http://www.colino.net/sylpheed-claws/update.php3
143 fi