~ubuntu-branches/ubuntu/edgy/sbuild/edgy

« back to all changes in this revision

Viewing changes to configs/example.sbuildrc

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2005-04-01 21:23:30 UTC
  • mfrom: (1.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050401212330-lnjvuwrm9urpy54l
Tags: 0.35
Michael Banck:

* bin/abort-current-build: Remove the `-B' from the grep line as
  `sbuild -s' does not pass that option to dpkg-configure and abort-
  current-build fails in that case.
* sbuild: Set the locale to `POSIX' to make debconf and debhelper calls in
  the chroot not spew out locale warnings all the time.
  (closes: #287672)
* sbuild: Removed check for specific distributions. Instead, fail if
  build/chroot-$dist is not there.
* sbuild: Only override Distribution in .changes if specified as option on
  the command-line.
  (closes: #300145)
* sbuild: Specify full path for Dir::Etc::main and Dir::Etc::parts.
* example.sbuildrc: Clarify that $maintainer_name is not mandatory and
  overrides Maintainer: field, whereas $uploader_name overrides
  the Changed-By: field in changes.
* Applied patch by Santiago Vila:
  - Moves scripts from /usr/lib/sbuild to /usr/share/sbuild and modifies
    all callers accordingly.
  - Add -n option to tail to comply with POSIX.
  - Call /usr/sbin/sendmail instead of /usr/lib/sendmail.
  (closes: #292717)
* sbuild: Tolerate '0' as version number, thanks Santiago Vila.
  (closes: #300205)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# example for ~/.sbuildrc
3
 
# commented out stuff are defaults
4
 
#
5
 
# $Id: example.sbuildrc,v 1.2 2000/03/09 13:13:16 rnhodek Exp $
6
 
#
7
 
 
8
 
# Directory for writing build logs to
9
 
#$log_dir = "$HOME/logs";
10
 
 
11
 
# Mail address where logs are sent to (mandatory, no default!)
12
 
#$mailto = "roman";
13
 
$mailto = "";
14
 
 
15
 
# Maintainer name to use in .changes files (mandatory, no default!)
16
 
#$maintainer_name="Roman Hodek <Roman.Hodek\@informatik.uni-erlangen.de>";
17
 
$maintainer_name="";
18
 
 
19
 
# When to purge the build directory afterwards; possible values are "never",
20
 
# "successful", and "always"
21
 
#$purge_build_directory="successful";
22
 
 
23
 
# Hack a "frozen" into the Distribution: line if compiling for frozen
24
 
#$hack_changes_for_frozen = 0;
25
 
 
26
 
# After that time (in minutes) of inactivity a build is terminated. Activity
27
 
# is measured by output to the log file.
28
 
#$stalled_pkg_timeout = 90;
29
 
 
30
 
# Some packages may exceed the general timeout (e.g. redirecting output to
31
 
# a file) and need a different timeout. Below are some examples.
32
 
#%individual_stalled_pkg_timeout = (
33
 
#    chess => 600,
34
 
#    cint => 300
35
 
#);
36