pkgsrc/mk/bulk/build.conf-example
rillig 2f5783121f - Replaced spaces with tabs in the "build --help" message.
- Added file post-build-conf, which provides functions to print and
  export the config variables from build.conf.
- All config variables are shown at the start of a bulk build.
- Added a configuration variable MAKECONF with the obvious meaning.
2005-11-05 23:22:05 +00:00

107 lines
2.6 KiB
Text

# $NetBSD: build.conf-example,v 1.30 2005/11/05 23:22:05 rillig Exp $
#
# This is an example configuration file for pkgsrc bulk builds.
# Actually it's a shell script that is sourced in by the pre-build,
# build and post-build programs.
#
#
# System information
#
# 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"
# An absolute pathname to your mk.conf file.
# The file must be outside ${PREFIX}, or it will be overwritten.
#MAKECONF="$HOME/etc/mk.conf"
#
# Keeping pkgsrc up-to-date
#
# 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-2005Q1"
#CVS_FLAGS="-A" # pkgsrc-current
#
# Getting distfiles
#
# 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/
#
# Building packages
#
# List of package directories to build.
# Defaults to all packages if PKGLIST is empty or undefined.
#PKGLIST="www/mozilla meta-pkgs/kde3"
# Nice level for builds
NICE_LEVEL="nice -n 20"
# whether to cache the lintpkgsrc database for PRUNE* or uploading
# can be set to 'yes' or 'no'.
LINTPKGSRC_CACHE=no
# Where build will mail the report
ADMIN="you@some.whe.re"
# Who the report is signed by
ADMINSIG="-Your Name"
#
# Uploading binary packages
#
# Update vulnerability database before uploading.
# can be set to 'yes' or 'no'.
UPDATE_VULNERABILITY_LIST=yes
# prune binary packages to remove those which are out of date
# can be set to 'yes' or 'no'.
PRUNEPACKAGES=yes
# Whether or not to create checksum files
MKSUMS=yes
# If you want to PGP sign the checksum files, set and correct
#SIGN_AS=username@NetBSD.org
# Destination for packages and rsync options
RSYNC_DST=$CVS_USER@ftp.NetBSD.org:/pub/NetBSD/packages/pkgsrc-200xQy/NetBSD-a.b.c/i386
RSYNC_OPTS='-e ssh'
# 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
###########################################################################
### No changes should be needed below this line !!!
###########################################################################
# Name of the (generated) HTML file which lists all broken pkgs
REPORT="$FTP/broken.html"