blob: bf288d45efca0b4d9e29a2214bcc0f7a2d7d009c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# $NetBSD: build.conf-example,v 1.32 2005/12/03 01:00:37 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"
#
# 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 the 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
#
# Generating the report
#
# Where build will mail the report
ADMIN="you@some.whe.re"
# Who the report is signed by
ADMINSIG="-Your Name"
# 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
#
# 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=ftp.NetBSD.org:/pub/NetBSD/packages/pkgsrc-200xQy/NetBSD-a.b.c/i386
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"
|