diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-09-08 17:57:37 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-09-08 17:57:37 +0000 |
commit | 310ce3b0a4046b905aa0daaea2baccecb6fd1631 (patch) | |
tree | 3b33c0e5b42baf813ddd17ce457c74c6d7eb9177 /Tools | |
parent | 828d733316bf7f1c4ee2b0ac31f56ed5ac89ee8a (diff) | |
download | ports-310ce3b0a4046b905aa0daaea2baccecb6fd1631.tar.gz ports-310ce3b0a4046b905aa0daaea2baccecb6fd1631.zip |
Remove some hardcoded values to hopefully stop random users from shooting
their feet off in public.
Suggested by: adamw
Notes
Notes:
svn path=/head/; revision=142233
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/tindex | 39 |
1 files changed, 27 insertions, 12 deletions
diff --git a/Tools/scripts/tindex b/Tools/scripts/tindex index a4755e9c02a5..7ab84a3c8159 100755 --- a/Tools/scripts/tindex +++ b/Tools/scripts/tindex @@ -2,13 +2,33 @@ # # INDEX build tinderbox script. Build an INDEX for all supported FreeBSD branches # using the latest value of OSVERSION according to the src trees. If the build -# fails, yowl about it on ports@. If not, copy the index to www.freebsd.org so +# fails, yowl about it on ${REPORT_ADDRESS} If not, copy the index to www.freebsd.org so # that 'make fetchindex' sees it. # # When INDEX is broken, assemble the list of committers who touched files # on the most recent 'cvs update', and put those committers "on the hook". # These committers all stay on the hook until INDEX is buildable again. +# -------------------------------------------------------- +# Change these! + +# Address for success/failure reports +REPORT_ADDRESS=root@localhost + +# Address for script errors +ERROR_ADDRESS=root@localhost + +# Where to scp the resulting indexes after build +SCP_DEST=root@localhost:/usr/local/www/ports + +# Location of ports tree and source trees +export PORTSDIR=/vol/vol0/users/kris/ports.clean +export SRCDIR4=/vol/vol0/users/kris/src.4 +export SRCDIR5=/vol/vol0/users/kris/src.5 +export SRCDIR6=/vol/vol0/users/kris/src.6 + +# -------------------------------------------------------- + blame() { # Find out who is responsible for current version of file $1 @@ -69,7 +89,7 @@ indexfail() { echo echo "Most recent CVS update was:"; grep -v '/work$' cvs.log | grep -v '^\?' - ) | mail -s "INDEX build failed for ${BRANCH}" ports@FreeBSD.org + ) | mail -s "INDEX build failed for ${BRANCH}" ${REPORT_ADDRESS} exit 1 } @@ -80,7 +100,7 @@ checkfixed() { # INDEX succeeded, so announce this. if [ -e ${PORTSDIR}/broken.${BRANCH} ]; then rm -f ${PORTSDIR}/broken.${BRANCH} - mail -s "INDEX now builds successfully on ${BRANCH}" ports@FreeBSD.org < /dev/null + mail -s "INDEX now builds successfully on ${BRANCH}" ${REPORT_ADDRESS} < /dev/null fi } @@ -90,11 +110,6 @@ export __MAKE_CONF=/dev/null export PORT_DBDIR=/nonexistent export PKG_DBDIR=/nonexistent -export PORTSDIR=/vol/vol0/users/kris/ports.clean -export SRCDIR4=/vol/vol0/users/kris/src.4 -export SRCDIR5=/vol/vol0/users/kris/src.5 -export SRCDIR6=/vol/vol0/users/kris/src.6 - # First update the source trees to get current OSVERSION cd ${SRCDIR4}/sys/sys cvs -Rq update -PdA -r RELENG_4 param.h @@ -113,7 +128,7 @@ rm -f INDEX INDEX.bz2 INDEX-5 INDEX-5.bz2 INDEX-6 INDEX-6.bz2 (cvs -Rq update -PdA 2>1 ) > cvs.log if grep -q ^C cvs.log ; then (echo "cvs update failed with conflicts:"; - grep ^C cvs.log) | mail -s "Ports cvsup failed" kris@FreeBSD.org + grep ^C cvs.log) | mail -s "Ports cvsup failed" ${PRIVATE_ADDRESS} exit 1 fi @@ -132,7 +147,7 @@ fi checkfixed ${BRANCH} bzip2 -kf ${PORTSDIR}/INDEX -scp ${PORTSDIR}/INDEX ${PORTSDIR}/INDEX.bz2 kris@www.freebsd.org:/usr/local/www/ports || mail -s "Cannot copy INDEX" kris@FreeBSD.org < /dev/null +scp ${PORTSDIR}/INDEX ${PORTSDIR}/INDEX.bz2 ${SCP_DEST} || mail -s "Cannot copy INDEX" ${ERROR_ADDRESS} < /dev/null BRANCH=5.x export OSVERSION=${OSVERSION5} @@ -145,7 +160,7 @@ fi checkfixed ${BRANCH} bzip2 -kf ${PORTSDIR}/INDEX-5 -scp ${PORTSDIR}/INDEX-5 ${PORTSDIR}/INDEX-5.bz2 kris@www.freebsd.org:/usr/local/www/ports || mail -s "Cannot copy INDEX-5" kris@FreeBSD.org < /dev/null +scp ${PORTSDIR}/INDEX-5 ${PORTSDIR}/INDEX-5.bz2 ${SCP_DEST} || mail -s "Cannot copy INDEX-5" ${ERROR_ADDRESS} < /dev/null BRANCH=6.x export OSVERSION=${OSVERSION6} @@ -158,7 +173,7 @@ fi checkfixed ${BRANCH} bzip2 -kf ${PORTSDIR}/INDEX-6 -scp ${PORTSDIR}/INDEX-6 ${PORTSDIR}/INDEX-6.bz2 kris@www.freebsd.org:/usr/local/www/ports || mail -s "Cannot copy INDEX-6" kris@FreeBSD.org < /dev/null +scp ${PORTSDIR}/INDEX-6 ${PORTSDIR}/INDEX-6.bz2 ${SCP_DEST} || mail -s "Cannot copy INDEX-6" ${ERROR_ADDRESS} < /dev/null # All indexes built successfully, clear the hook rm -f ${PORTSDIR}/hook |