I use two tools:
a post-commit that I install in the hooks/ subdirectory of the Subversion repository. It uses the Subversion commit-email.pl program and emails me.
a custom program ran by cron which creates a syndication feed of the commits, for the people who prefer to use a feed reader.
My post-commit. Note that commits to the langtag directory are also emailed to a different address
REPOS="$1"
REV="$2"
# WARNING: for this script to work, commit-email.pl must use sendmail and not
# SMTP http://svn.haxx.se/users/archive-2007-05/0420.shtml
/usr/lib/subversion/hook-scripts/commit-email.pl "$REPOS" "$REV" -m 'langtag' -h langtag.net
-s "[Svn langtag]" webmaster@langtag.net -m '.' -s "[Svn R&D]" bortzmeyer@nic.fr
The command to create the syndication feed (Atom format). Makefile format:
HEAD=$(shell svnversion ${ROOT} | sed -r -e 's/:[0-9]+M?$$//' -e 's/M$$//')
START=$(shell echo ${HEAD} - ${NUMBER} | bc)
feed-subversion.atom:
svn log --xml --verbose -r ${START}:HEAD ${ROOT} | \
xsltproc --stringparam repository_name MyRepo \
--stringparam url https://svn.example.net/ \
--stringparam tag example.net,2009-04-29 \
--stringparam maintainer subversion@example.net \
--stringparam prefix 'https://viewvc.example.net/viewvc.cgi/?view=rev&root=MyRoot&revision=' \
--stringparam linktofiles https://viewvc.example.net/viewvc.cgi \
--stringparam endlinktofiles '?rev=REVISION_NUM&root=MyRoot∓view=markup' \
svnlog2atom.xsl - > $@
And you can get the svnlog2atom.xsl XSLT program (I believe it
came originally from Norman Walsh).