1 |
tdb |
1.1 |
#!/bin/sh |
2 |
|
|
|
3 |
|
|
#--------------------------------------------------------- |
4 |
|
|
# cvslog.sh |
5 |
|
|
# |
6 |
|
|
# Script to send daily cvslog e-mails. |
7 |
|
|
# Written by Tim Bishop [tdb1@ukc.ac.uk] 26/01/2001 |
8 |
|
|
# |
9 |
|
|
# Copyright i-Scream, 2000 |
10 |
|
|
# http://www.i-scream.org.uk |
11 |
|
|
#--------------------------------------------------------- |
12 |
|
|
|
13 |
|
|
## settings |
14 |
|
|
|
15 |
tdb |
1.2 |
# e-mail addresses |
16 |
tdb |
1.3 |
TOADDR="commits@i-scream.org.uk" |
17 |
tdb |
1.4 |
FROMADDR="commits@i-scream.org.uk" |
18 |
tdb |
1.1 |
|
19 |
|
|
# cvs path |
20 |
tdb |
1.2 |
CVS="/usr/bin/cvs" |
21 |
tdb |
1.1 |
|
22 |
|
|
# cvs repository |
23 |
tdb |
1.2 |
CVSROOT="/cvs/i-scream" |
24 |
tdb |
1.1 |
|
25 |
|
|
# temporary checkout directory (checked out modules already) |
26 |
tdb |
1.2 |
CHECKOUTDIR="/home/sites/www.i-scream.org.uk/cvsscripttemp" |
27 |
tdb |
1.1 |
|
28 |
|
|
# path to cvs2cl |
29 |
tdb |
1.5 |
CVS2CLPATH="/home/sites/www.i-scream.org.uk/bin/cvs2cl2.pl" |
30 |
tdb |
1.1 |
|
31 |
|
|
# command line args for cvs2cl |
32 |
tdb |
1.7 |
#CVS2CLARGS="-w -r -b -t -U ${CVSROOT}/CVSROOT/users -l \"-dyesterday<today\" -g \"-d${CVSROOT}\" -g \"-Q\"" |
33 |
|
|
CVS2CLARGS="-w -r -t -U ${CVSROOT}/CVSROOT/users -l \"-dyesterday<today\" -g \"-d${CVSROOT}\" -g \"-Q\"" |
34 |
tdb |
1.1 |
|
35 |
|
|
# cvs2cl command |
36 |
|
|
CVS2CL="${CVS2CLPATH} ${CVS2CLARGS}" |
37 |
|
|
|
38 |
|
|
# subject line |
39 |
|
|
SUBJECT="i-scream daily commit logs - " |
40 |
|
|
|
41 |
tdb |
1.2 |
# full cvs update script |
42 |
|
|
FULLCVSUPDATE="/home/sites/www.i-scream.org.uk/bin/fullcvsupdate.sh" |
43 |
|
|
|
44 |
tdb |
1.3 |
# path to sendmail |
45 |
|
|
SENDMAIL="/usr/sbin/sendmail" |
46 |
|
|
|
47 |
tdb |
1.5 |
# cvslog webpage for this day :) |
48 |
|
|
DATE=`/bin/date --date="1 day ago" "+%Y/%m/%d"` |
49 |
tdb |
1.6 |
CVSLOGURL="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=date&date=${DATE}&module=" |
50 |
|
|
CVSLOGLINE="This log is viewable online at ${CVSLOGURL}" |
51 |
tdb |
1.1 |
|
52 |
|
|
## code |
53 |
|
|
|
54 |
tdb |
1.2 |
${FULLCVSUPDATE} |
55 |
|
|
|
56 |
|
|
MODULES=`ls ${CVSROOT}` |
57 |
|
|
|
58 |
tdb |
1.1 |
cd ${CHECKOUTDIR} |
59 |
|
|
|
60 |
tdb |
1.2 |
for MODULE in ${MODULES}; do |
61 |
tdb |
1.1 |
|
62 |
tdb |
1.2 |
${CVS2CL} ${MODULE} |
63 |
tdb |
1.1 |
if test -r "ChangeLog"; then \ |
64 |
tdb |
1.2 |
( echo "To: ${TOADDR}"; echo "From: ${FROMADDR}"; \ |
65 |
tdb |
1.6 |
echo "Subject: ${SUBJECT}${MODULE}"; echo ${CVSLOGLINE}${MODULE}; \ |
66 |
|
|
echo; echo; cat ChangeLog; \ |
67 |
tdb |
1.3 |
echo "." ) | ${SENDMAIL} ${TOADDR}; \ |
68 |
tdb |
1.1 |
rm -f ChangeLog |
69 |
|
|
fi; |
70 |
|
|
|
71 |
|
|
done |