add --syncgtk2 param
[claws.git] / commitHelper
1 #!/bin/bash
2 if [ "$1" == "--syncgtk2" ]; then
3         shift
4         echo -n "sync with EXTRA_VERSION ? [xx] "
5         read newmicro
6         cat configure.ac | sed "s/^EXTRA_VERSION=.*/EXTRA_VERSION=$newmicro/" > configure.ac.new \
7                 && mv configure.ac.new configure.ac ;   
8         cat configure.ac | sed "s/^EXTRA_GTK2_VERSION=.*/EXTRA_GTK2_VERSION=.0/" > configure.ac.new \
9                 && mv configure.ac.new configure.ac ;   
10 fi;
11
12 head -16 configure.ac | grep VERSION= > /tmp/commitTool.tmp
13 source /tmp/commitTool.tmp
14 if [ -z "$EXTRA_GTK2_VERSION" ]; then
15         EXTRA_VERSION=`echo $EXTRA_VERSION | awk -F'.' '{for (i=1;i<NF;i++){printf $i"."};printf $NF+1}'`
16         nextsversion="${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}cvs${EXTRA_VERSION}"
17         nextextra="$EXTRA_VERSION"
18         nextextratype="head"
19 else
20         EXTRA_GTK2_VERSION=`echo $EXTRA_GTK2_VERSION | awk -F'.' '{for (i=1;i<NF;i++){printf $i"."};printf $NF+1}'`
21         nextsversion="${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}cvs${EXTRA_VERSION}${EXTRA_GTK2_VERSION}"
22         nextextra="$EXTRA_GTK2_VERSION"
23         nextextratype="gtk2"
24 fi
25 rm /tmp/commitTool.tmp
26
27 IFS='
28 '
29 filelist=`cvs status $@ 2>/dev/null |grep ^File`
30
31 for file in $filelist; do
32         merge=`echo $file | grep Merge`
33         modif=`echo $file | grep Locally`
34
35         if [ "$merge" != "" ]; then
36                 echo $merge
37                 echo You have to update first
38                 exit
39         fi;
40         if [ "$modif" != "" ]; then
41                 echo $modif
42         fi;
43 done;
44 patchset="("
45 log=""
46 files=`cvs diff -u $@ 2>/dev/null |grep ^Index`
47 echo "--8<----------"
48 name=`whoami`
49 #change if your login isn't your name
50 if [ "$name" == "claws" ]; then
51         name="paul";
52 fi;
53 if [ "$name" == "reboot" ]; then
54         name="christoph";
55 fi;
56
57 log="`date +%Y-%m-%d` [$name]\t$nextsversion\n\n"
58 for line in $files; do
59         file=`echo $line | cut -d' ' -f2`
60         dir=`dirname $file`
61         filename=`basename $file`
62         cvsfile="$dir/CVS/Entries"
63         version=`grep "\/$filename\/" $cvsfile | cut -d'/' -f3`
64         nextversion=`echo $version | awk -F'.' '{for (i=1;i<NF;i++){printf $i"."};printf $NF+1}'`
65         
66         log="$log\t* $file\n"
67         patchset="$patchset cvs diff -u -r $version -r $nextversion $file;\
68 "
69 done;
70 patchset="$patchset ) > $nextsversion.patchset"
71 echo -e -n $log
72
73 if [ "$EDITOR" == "" ]; then
74         EDITOR=vi
75 fi;
76
77 echo -e "\n#please type in the changelog entry" > /tmp/logentry
78 $EDITOR /tmp/logentry
79 grep -v "^#" /tmp/logentry |grep -v "^$" | sed "s/^/            /" > /tmp/log.tmp.$$ \
80 && mv /tmp/log.tmp.$$ /tmp/logentry
81 echo >> /tmp/logentry
82 cat /tmp/logentry
83
84 echo "--8<----------"
85 if [ -f ChangeLog-gtk2.claws ]; then
86         chlog="ChangeLog-gtk2.claws"
87 elif [ -f ChangeLog.claws ]; then
88         chlog="ChangeLog.claws"
89 else
90         chlog="ChangeLog"
91 fi
92 echo -n "Is it ok (write to $chlog and update configure.ac) [y/N]?"
93 read ans
94 if [ "$ans" == "y" ]; then
95         mv $chlog $chlog.old
96         echo -e -n $log > $chlog
97         cat /tmp/logentry >> $chlog
98         cat $chlog.old >> $chlog
99         rm $chlog.old
100
101         if [ "$nextextratype" == "head" ]; then
102                 cat configure.ac | sed "s/^EXTRA_VERSION=.*/EXTRA_VERSION=$nextextra/" > configure.ac.new \
103                 && mv configure.ac.new configure.ac ;
104         else
105                 cat configure.ac | sed "s/^EXTRA_GTK2_VERSION=.*/EXTRA_GTK2_VERSION=$nextextra/" > configure.ac.new \
106                 && mv configure.ac.new configure.ac ;
107         fi;
108         
109         echo "$patchset" >> PATCHSETS
110
111         if [ "$@" != "" ]; then
112                 echo commiting $@ PATCHSETS $chlog configure.ac
113                 cvs commit -m "`cat /tmp/logentry`" $@ PATCHSETS $chlog configure.ac
114         else
115                 echo commiting recursively
116                 cvs commit -m "`cat /tmp/logentry` "
117         fi;
118 fi
119 rm -f /tmp/logentry