Mercurial > treepkg
comparison demo.cfg @ 1:02d5702314a3
add demo.cfg
author | Bernhard Herzog <bh@intevation.de> |
---|---|
date | Tue, 06 Mar 2007 18:50:53 +0100 |
parents | |
children | e6a9f4037f68 |
comparison
equal
deleted
inserted
replaced
0:f78a02e79c84 | 1:02d5702314a3 |
---|---|
1 [DEFAULT] | |
2 # the default section provides defaults for the other sections. Also, | |
3 # other sections can use the values here in interpolations. | |
4 | |
5 # The basedir to use for interpolations in other sections | |
6 treepkg_dir: /home/builder/enterprise | |
7 | |
8 # The command to use to gain the permissions to execute pbuilder. The | |
9 # default is sudo. The actual command line used to run pbuilder is | |
10 # root_cmd followed by the pbuilder command line. With the default it | |
11 # is something like | |
12 # | |
13 # sudo pbuilder build <name-of-dsc-file> | |
14 # | |
15 # The way it's implemented now, the command is interpreted as a single | |
16 # shell word which means that you cannot define any command line | |
17 # parameters for the root_cmd. The reason for this limitation is that | |
18 # the code does not use a shell to interpret the command line. A later | |
19 # version might use Python's shlex module to split this command into | |
20 # words. | |
21 # | |
22 # Set an empty value to indicate that no special command is needed. | |
23 # | |
24 # You can override this in the pkg_ sections if you need package | |
25 # specific values | |
26 root_cmd: sudo | |
27 | |
28 # Email address and name to use as the packager in the debian packages. | |
29 # You can override this in the pkg_ sections if you need package | |
30 # specific values | |
31 deb_email: packager@example.com | |
32 deb_fullname: Sample Packager | |
33 | |
34 | |
35 [treepkg] | |
36 # Section for general tree packager configuration | |
37 | |
38 # Interval in seconds between checks for updates | |
39 check_interval: 300 | |
40 | |
41 | |
42 [pkg_kdepim] | |
43 # Sections with names starting with "pkg_" define the configuration for | |
44 # a package. | |
45 | |
46 # The SVN URL to check out for packaging | |
47 svn_url: svn://anonsvn.kde.org/home/kde/branches/kdepim/enterprise/kdepim | |
48 | |
49 # The directory under which the packager directory structure will be | |
50 # created. | |
51 base_dir: %(treepkg_dir)s/kdepim | |
52 | |
53 # Required fields for a pkg_ section inherited from the DEFAULT section | |
54 # in this example: root_cmd deb_email deb_fullname | |
55 | |
56 # An additional option, name, is inferred from the section name. Its | |
57 # value is the part of the section name after the pkg_ prefix. |