diff options
author | hubertf <hubertf> | 2000-09-15 22:05:46 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2000-09-15 22:05:46 +0000 |
commit | db0f5817e27350d958f29b207fd140519ff4c004 (patch) | |
tree | 67ed6b156f65a3fdbaaabab3bdd241af82ecf6eb /mk/bulk/build.conf-example | |
parent | d086afefbd5d4840f878e8b3990019390c1dea0f (diff) | |
download | pkgsrc-db0f5817e27350d958f29b207fd140519ff4c004.tar.gz |
Bulk build framework
Diffstat (limited to 'mk/bulk/build.conf-example')
-rw-r--r-- | mk/bulk/build.conf-example | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/mk/bulk/build.conf-example b/mk/bulk/build.conf-example new file mode 100644 index 00000000000..a4780eb5bd5 --- /dev/null +++ b/mk/bulk/build.conf-example @@ -0,0 +1,35 @@ +# build.conf +# $Id: build.conf-example,v 1.1 2000/09/15 22:05:47 hubertf Exp $ +# +# config file in /bin/sh syntax for {,pre,post}-build +# + + +# Some paths for output files and paths to log files +FTPx=`date +%Y%m%d.%H%M` +FTPURL="pub/NetBSD/pkgstat/${FTPx}" # relative to ~ftp ! +FTP="/home/ftp/${FTPURL}" # absolute base path +FTPHOST="ftp://ftp.machi.ne" # host for broken.html + +# Where build will mail the report +ADMIN="you@some.whe.re" + +# The OS release this bulk build is happening on +osrev=`uname -r` + +# The machine architecture this is happening on +arch=`uname -m` + +# Where our pkgsrc is located +USR_PKGSRC="/usr/pkgsrc" + +# As which user to run "cvs updates" +CVS_USER="yourlogin" + +########################################################################### +### No changes should be needed below this line !!! +########################################################################### + +# Name of the (generated) HTML file which lists all broken pkgs +REPORT="$FTP/broken.html" + |