summaryrefslogtreecommitdiffstats
path: root/scripts/commit
blob: 6bfa0a61581058b9abfd854b89862db24bfb3fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/bash
# need a Posix shell, so we simply use bash

set -e

uid=`id -u`
date=`date`
name=$(awk -F: "\$3==$uid { print \$5 }" /etc/passwd )
addr="<`id -un`@`hostname -d`>"

for i in `find . -name Changes -print`; do
    dir=`dirname $i`
    if [ -s $dir/Changes ]; then
	awk '
	state == 0 && /^[ \t]*$/  { next }
	state == 0  { state = 1 }
	/^[ \t]*$/ { empty++; next }
		   { while ( empty > 0 ) { print ""; empty--; }; print  }
	' < $dir/Changes > $dir/Changes.tmp
	if [ -s $dir/Changes.tmp ]; then
	    lines=`wc -l <$dir/Changes.tmp`
	    echo "$date  $name  $addr" >$dir/ChangeLog.new
	    echo >>$dir/ChangeLog.new
	    cat $dir/Changes.tmp   >>$dir/ChangeLog.new
	    echo >>$dir/ChangeLog.new
	    [ -f $dir/ChangeLog ] && cat $dir/ChangeLog >>$dir/ChangeLog.new
	    echo -n > $dir/Changes
	    [ -f $dir/ChangeLog ] && rm $dir/ChangeLog
	    mv $dir/ChangeLog.new $dir/ChangeLog
	    echo "$lines new lines in $dir/ChangeLog"
	fi
	rm $dir/Changes.tmp || true
    fi
done

# Execute canned cvs remove commands
for i in `find . -name cvs-remove -print`; do
    dir=`dirname $i`
    if [ -s $dir/cvs-remove ]; then
	here=`pwd`
	cd $dir
	if cvs remove -f `cat cvs-remove`; then
	    rm cvs-remove
	fi
	cd $here
    fi
done

# Execute canned cvs add commands
for i in `find . -name cvs-add -print`; do
    dir=`dirname $i`
    if [ -s $dir/cvs-add ]; then
	here=`pwd`
	cd $dir
	if cvs add `cat cvs-add`; then
	    rm cvs-add
	fi
	cd $here
    fi
done

cvs -z3 commit -m "See ChangeLog: $date  $name" $*