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

« back to all changes in this revision

Viewing changes to sbuild.conf.local

  • Committer: Bazaar Package Importer
  • Author(s): Roger Leigh
  • Date: 2006-10-21 21:23:16 UTC
  • mfrom: (2.1.6 edgy)
  • Revision ID: james.westby@ubuntu.com-20061021212316-nh89o5rnhyk1epnn
Tags: 0.52
* New upstream release.
* sbuild: Remove incorrect WannaBuild:: prefix from version_compare.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# /etc/sbuild.conf.local: global sbuild settings that will survive
3
 
# an upgrade.  This makes it easier to drop this sbuild version into
4
 
# a buildd setting.  (Also see example.sbuildrc)
5
 
# Note: these are common buildd settings, not defaults for this package
 
2
# sbuild.conf: global sbuild settings that will survive an upgrade.
 
3
# This makes it easier to drop this sbuild version into a buildd
 
4
# setting.  (Also see example.sbuildrc) Note: these are common buildd
 
5
# settings, not defaults for this package
6
6
 
7
7
# File with the source dependencies (also used by update-sourcedeps)
8
 
#$source_dependencies = "/etc/source-dependencies";
 
8
#$source_dependencies = "/var/lib/sbuild/source-dependencies";
9
9
 
10
10
# Name of a database for logging package build times (optional, no database
11
11
# is written if empty)
12
 
#$avg_time_db = "/var/debbuild/avg-build-times";
 
12
#$avg_time_db = "/var/lib/sbuild/avg-build-times";
13
13
 
14
14
# Name of a database for logging package space requirement (optional)
15
 
#$avg_space_db = "/var/debbuild/avg-build-space";
 
15
#$avg_space_db = "/var/lib/sbuild/avg-build-space";
16
16
 
17
17
# Name for dir for source dependency lock files
18
 
#$srcdep_lock_dir = "/var/debbuild/srcdep-lock";
 
18
#$srcdep_lock_dir = "/var/lib/sbuild/srcdep-lock";
 
19
 
 
20
# sbuild behaviour; possible values are "user" (exit status reports
 
21
# build failures) and "buildd" (exit status does not report build
 
22
# failures).
 
23
#$sbuild_mode = "buildd";
 
24
 
 
25
# Chroot behaviour; possible values are "split" (apt and dpkg are run
 
26
# from the host system) and "schroot" (all package operations are done in
 
27
# the chroot with schroot, but the chroot must allow networking)
 
28
#$chroot_mode = "split";
 
29
 
 
30
# Require chrooted building?
 
31
#$chroot_only=1;
 
32
 
 
33
# APT policy.  1 to enable additional checking of package versions
 
34
# available in the APT cache, or 0 to disable.  0 is the traditional
 
35
# sbuild behaviour; 1 is needed to build from additional repositories
 
36
# such as sarge-backports or experimental, and has a small performance
 
37
# cost.
 
38
#$apt_policy = 1;
19
39
 
20
40
# don't remove this, Perl needs it:
21
41
1;