~ubuntu-branches/ubuntu/karmic/sbuild/karmic-updates

« back to all changes in this revision

Viewing changes to etc/buildd.conf

  • Committer: Bazaar Package Importer
  • Author(s): Roger Leigh, Roger Leigh
  • Date: 2009-05-17 15:52:53 UTC
  • mfrom: (8.1.7 upstream) (3.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090517155253-fbxadfsyaf940ete
Tags: 0.58.3-1
[ Roger Leigh ]
* New release.
* debian/control:
  - Update to Standards Version 3.8.1.
  - Add buildd package.
  - Add libsbuild-perl package.
  - All packages depend upon libsbuild-perl.
* Add support for appending a tag to version numbers (Closes: #475777).
  Thanks to Timothy G Abbott for this patch.
* When using the --help or --version options, don't abort if not
  in the sbuild group (Closes: #523670).  Group membership is now
  only performed after options parsing, and only if required.
* Allow config files to use $HOME (Closes: #524564).  Thanks to
  James Vega for this patch.
* Restore buildd package.
* Split common library functions into new libsbuild-perl package.
* debian/sbuild.(preinst|postinst|postrm):
  - Remove special cases for versions older than oldstable.  Update
    addition and removal of sbuild group to use return value of getent
    rather than parsing getent output.
  - Use addgroup/delgroup in place of adduser/deluser.
  - Use --system when adding and deleting group, to ensure creation
    of a system group.  Migrate existing non-system group and group
    members if the system group is not present.
  - Handle removal of 50sbuild setup script.
* debian/buildd.(preinst|postinst|postrm): Add maintainer scripts for
  buildd package.  Move configuration file from /etc/buildd.conf to
  /etc/buildd/buildd.conf if present.  Also create buildd user and
  group for running the buildd daemon.
* Sbuild::Conf: Don't default MAINTAINER_NAME to $DEBEMAIL if unset
  in the configuration file (Closes: #520158).
* /etc/schroot/setup.d/50sbuild: Remove.  The setup tasks performed by
  this script are now handled internally by sbuild.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
# Some may be set by each individual user in their
7
7
# ~/.builddrc, but are listed here for completeness.
8
8
 
 
9
##
 
10
## LOGGING
 
11
##
 
12
 
 
13
# Set to 1 to enable verbose messages.
 
14
#$verbose = 0;
 
15
 
 
16
# Set to a number >= 1 to enable debugging messages.
 
17
#$debug = 0;
 
18
 
 
19
# Disable becoming a daemon, for debugging purposes.
 
20
# Set to 1 to stop daemonising, otherwise set to 0 to become a daemon.
 
21
#$no_detach = 0;
 
22
 
9
23
# max. number of packages to pass to sbuild at once
10
24
#$max_build = 10;
11
25
 
29
43
# how many days until to archive build logs
30
44
#$build_log_keep = 2;
31
45
 
 
46
# Main buildd daemon log file
 
47
#$daemon_log_file = "$HOME/daemon.log";
 
48
 
32
49
# how many days until to rotate daemon logs (one is kept as daemon.log.old,
33
50
# others are moved to old-logs and gzipped)
34
51
#$daemon_log_rotate = 1;
50
67
# period for making of statistic summary
51
68
#$statistics_period = 7;
52
69
 
53
 
# If wanna-build & Co. are installed on the local machine, set the
54
 
# following to the empty string. Otherwise make it an rsh/ssh command
55
 
# to execute the cmd on the machine where wanna-build is installed,
56
 
# e.g. "ssh -l roman kullervo.infodrom.north.de"
57
 
# remote access command for wanna-build
58
 
# Example: $sshcmd = "ssh -lbuildd_arch buildd.debian.org";
59
 
#$sshcmd = "";
60
 
# relative path to buildd socket file for master/slave mode
61
 
# Example: "buildd.debian.org.ssh"
62
 
#$sshsocket = "";
 
70
# Configure SSH to connect to a remote wanna-build host.  If wanna-build
 
71
# is running locally, set $ssh_host to an empty string.
 
72
# SSH program
 
73
#$ssh = "/usr/bin/ssh";
 
74
# Username on wanna-build host
 
75
#$ssh_user = "buildd_arch"
 
76
# Wanna-Build host
 
77
#$ssh_host = "buildd.debian.org"
 
78
# SSH control socket path for -S option
 
79
#$ssh_socket = "";
 
80
# Additional SSH options.
 
81
# Example: Use alternative port: @ssh_options = ('-p', 7657);
 
82
#@ssh_options = ();
63
83
 
64
84
# Username to use for wanna-build. Default if empty is the username of
65
85
# the user running the daemon.
96
116
#$secondary_daemon_threshold = 70;
97
117
 
98
118
# mail addr of admin
99
 
#$admin_mail = "USER-porters";
 
119
#$admin_mail = "root";
100
120
 
101
121
# mail address where to send statistics summaries
102
 
#$statistics_mail = 'USER-porters';
 
122
#$statistics_mail = 'root';
103
123
 
104
124
# Upload site for buildd-upload to pass to dupload(1); see
105
125
# /etc/dupload.conf for possible values.  Defaults to erlangen.
117
137
# database used for wanna-build
118
138
#$wanna_build_dbbase = "arch/build-db";
119
139
 
 
140
# PID file to identify running daemon
 
141
#$pidfile = "$HOME/build/daemon.pid"
120
142
 
121
143
# don't remove this, Perl needs it
122
144
1;