Send commit messages to mailing lists.
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 64 65 66 67 68 69 70 71 72 73
diff --git a/CVSROOT/auto_checkout b/CVSROOT/auto_checkout
index 3412cf8..754d3ac 100755
--- a/CVSROOT/auto_checkout
+++ b/CVSROOT/auto_checkout
@@ -10,16 +10,49 @@
# when log_accum is run from here), so we just send out a bogus little
# by-hand update note.
+# $1 is of the format "WEB_PAGE_DIRNAME" with the last component being
+# the project's name
+
+# $2 is of the format "DIRECTORYNAME FILENAME" with no final slash on DNAME.
+# DNAME is the directory name inside the project's CVS repository. e.g.
+# $2 can look like "htdocs index.html,1.3 foo.html,1.5"
+
+
+SHORTNAMES=`echo $2 | sed 's|,[^ ]*||g'`
REPONAME=`echo $1 | sed -e 's,/www/sourceware/htdocs/,,' -e 's,/.*$,,'`
-echo Files modified in the $REPONAME repository. |
- /bin/mail -s "$2" green@cygnus.com jsm@cygnus.com
+####------------------------------------------
+# Update the web pages
+####------------------------------------------
-# try to avoid a race (this kludge from the cvs docs!)
+# try to avoid a race (this kludge from the cvs docs)
/bin/sleep 2
cd $1
-# $1 is of the format "DIRECTORYNAME FILENAME" with no final slash on DNAME.
-
DIRNAME=`echo $2 | sed -e 's, .*,,' -e 's,^htdocs$,.,' -e 's,htdocs,.,'`
/usr/local/bin/cvs -q update -d -P -l $DIRNAME
+
+
+# DIRNAME has the last component of the directory name; $1 has the
+# full prefix. Combine them to get into the final real directory.
+
+cd $1/$DIRNAME
+
+####------------------------------------------
+# Send mail notification about the update
+####------------------------------------------
+
+firstfile=`echo $2 | sed -e 's,^[^ ]* ,,' -e 's, .*,,'`
+filename=`echo $firstfile | sed 's|,[^,]*$||'`
+fileversion=`echo $firstfile | sed 's|^.*,||'`
+
+QMAILHOST=sourceware.cygnus.com
+export QMAILHOST
+(
+ echo Files modified in the $REPONAME repository. Log entry:
+ echo ""
+ /usr/local/bin/cvs log -N -r$fileversion $filename | sed -e '1,/^date: /d' -e '$d'
+) |
+ /bin/mail -s "$SHORTNAMES" sourceware-cvs-${REPONAME}-webpages@sourceware.cygnus.com
+
+exit 0
diff --git a/CVSROOT/loginfo b/CVSROOT/loginfo
index 6921054..9024aee 100644
--- a/CVSROOT/loginfo
+++ b/CVSROOT/loginfo
@@ -24,6 +24,7 @@
#DEFAULT (echo ""; id; echo %s; date; cat) >> $CVSROOT/CVSROOT/commitlog
# or
#DEFAULT (echo ""; id; echo %{sVv}; date; cat) >> $CVSROOT/CVSROOT/commitlog
-^htdocs ($CVSROOT/CVSROOT/auto_checkout /www/sourceware/htdocs/libffi %s >> $CVSROOT/CVSROOT/updatelog 2>&1 &)
-DEFAULT /usr/bin/perl $CVSROOT/CVSROOT/log_accum -m green@cygnus.com -m jsm@cygnus.com -s %s
+^htdocs ($CVSROOT/CVSROOT/auto_checkout /www/sourceware/htdocs/libffi %{sv} >> $CVSROOT/CVSROOT/updatelog 2>&1 &)
+
+DEFAULT (QMAILHOST=sourceware.cygnus.com /usr/bin/perl $CVSROOT/CVSROOT/log_accum -m sourceware-cvs-libffi@sourceware.cygnus.com -s %s)