Mercurial > treepkg
annotate demo.cfg @ 40:c544903eeced
Add real enums for status information
author | Bernhard Herzog <bh@intevation.de> |
---|---|
date | Thu, 15 Mar 2007 21:03:44 +0100 |
parents | 38330d45047f |
children | 2802be410156 |
rev | line source |
---|---|
1 | 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 # | |
2
e6a9f4037f68
readconfig.py is smarter now about conversions and supports shlex
Bernhard Herzog <bh@intevation.de>
parents:
1
diff
changeset
|
15 # The value of this option is split into words with the python function |
e6a9f4037f68
readconfig.py is smarter now about conversions and supports shlex
Bernhard Herzog <bh@intevation.de>
parents:
1
diff
changeset
|
16 # shlex.split. See the python documentation for the precise semantics. |
e6a9f4037f68
readconfig.py is smarter now about conversions and supports shlex
Bernhard Herzog <bh@intevation.de>
parents:
1
diff
changeset
|
17 # shlex.split works pretty much like a POSIX shell but it doesn't to any |
e6a9f4037f68
readconfig.py is smarter now about conversions and supports shlex
Bernhard Herzog <bh@intevation.de>
parents:
1
diff
changeset
|
18 # expansions. |
1 | 19 # |
20 # Set an empty value to indicate that no special command is needed. | |
21 # | |
22 # You can override this in the pkg_ sections if you need package | |
23 # specific values | |
24 root_cmd: sudo | |
25 | |
26 # Email address and name to use as the packager in the debian packages. | |
27 # You can override this in the pkg_ sections if you need package | |
28 # specific values | |
29 deb_email: packager@example.com | |
30 deb_fullname: Sample Packager | |
31 | |
32 | |
33 [treepkg] | |
34 # Section for general tree packager configuration | |
35 | |
36 # Interval in seconds between checks for updates | |
37 check_interval: 300 | |
38 | |
39 | |
40 [pkg_kdepim] | |
41 # Sections with names starting with "pkg_" define the configuration for | |
42 # a package. | |
43 | |
3 | 44 # The SVN URL to check out for packaging. Will only be used for the |
45 # initial checkout | |
1 | 46 svn_url: svn://anonsvn.kde.org/home/kde/branches/kdepim/enterprise/kdepim |
47 | |
48 # The directory under which the packager directory structure will be | |
49 # created. | |
50 base_dir: %(treepkg_dir)s/kdepim | |
51 | |
6
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
52 # The packager class defines how the packaging works. The |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
53 # enterprise.kdepim class knows how to package the enterprise branch of |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
54 # KDE-PIM. |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
55 packager_class: enterprise.kdepim |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
56 |
1 | 57 # Required fields for a pkg_ section inherited from the DEFAULT section |
58 # in this example: root_cmd deb_email deb_fullname | |
59 | |
60 # An additional option, name, is inferred from the section name. Its | |
61 # value is the part of the section name after the pkg_ prefix. | |
6
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
62 |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
63 |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
64 [pkg_i18n] |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
65 # Another packager. This one for the the localizations. This packager |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
66 # requires and additional parameter, orig_tarball. |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
67 svn_url: svn://anonsvn.kde.org/home/kde/branches/kdepim/enterprise/kde-l10n |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
68 base_dir: %(treepkg_dir)s/kde-i18n |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
69 orig_tarball: /home/builder/kde-i18n-de-3.5.5.tar.bz2 |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
70 |
38330d45047f
Adapt demo.cfg to the new packager classes
Bernhard Herzog <bh@intevation.de>
parents:
3
diff
changeset
|
71 packager_class: enterprise.kdei18n |