64 lines
1.9 KiB
Text
64 lines
1.9 KiB
Text
# build.conf
|
|
# $NetBSD: build.conf-example,v 1.16 2004/01/31 03:37:24 grant Exp $
|
|
#
|
|
# config file in /bin/sh syntax for {,pre,post}-build
|
|
#
|
|
|
|
# List of package directories to build.
|
|
# Defaults to all packages if PKGLIST is empty or undefined.
|
|
#PKGLIST="www/mozilla meta-pkgs/kde3"
|
|
|
|
# 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"
|
|
|
|
# Who the report is signed by
|
|
ADMINSIG="-Your Name"
|
|
|
|
# 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". Leave empty for no update.
|
|
CVS_USER="yourlogin"
|
|
|
|
# Flags to pass to 'cvs update', e.g. to get a certain branch
|
|
#CVS_FLAGS="-rnetbsd-1-6"
|
|
#CVS_FLAGS="-A"
|
|
|
|
# prune distfiles to remove those which are out of date
|
|
# can be set to 'yes' or 'no'.
|
|
PRUNEDISTFILES=no
|
|
|
|
# Proxies (optional):
|
|
#ftp_proxy=http://proxy.machi.ne:3128/
|
|
#http_proxy=http://proxy.machi.ne:3128/
|
|
|
|
# Uploading binary packages:
|
|
|
|
# destination for packages with the OSVERSION_SPECIFIC flag set. Needs major.minor.patch
|
|
# version.
|
|
RSYNC_DST_SPECIFIC=$CVS_USER@ftp.netbsd.org:/pub/NetBSD/packages/x.y.z/arch
|
|
|
|
# destination for packages without the OSVERSION_SPECIFIC flag set. Needs major.minor
|
|
# version.
|
|
RSYNC_DST_OTHER=$CVS_USER@ftp.netbsd.org:/pub/NetBSD/packages/x.y/arch
|
|
RSYNC_OPTS='-e ssh'
|
|
|
|
###########################################################################
|
|
### No changes should be needed below this line !!!
|
|
###########################################################################
|
|
|
|
# Name of the (generated) HTML file which lists all broken pkgs
|
|
REPORT="$FTP/broken.html"
|
|
|