# HG changeset patch # User Bernhard Herzog # Date 1173203453 -3600 # Node ID 02d5702314a321d595d3d269e4916b863c20d755 # Parent f78a02e79c841565ba1e1a446c313e3a443cb240 add demo.cfg diff -r f78a02e79c84 -r 02d5702314a3 demo.cfg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/demo.cfg Tue Mar 06 18:50:53 2007 +0100 @@ -0,0 +1,57 @@ +[DEFAULT] +# the default section provides defaults for the other sections. Also, +# other sections can use the values here in interpolations. + +# The basedir to use for interpolations in other sections +treepkg_dir: /home/builder/enterprise + +# The command to use to gain the permissions to execute pbuilder. The +# default is sudo. The actual command line used to run pbuilder is +# root_cmd followed by the pbuilder command line. With the default it +# is something like +# +# sudo pbuilder build +# +# The way it's implemented now, the command is interpreted as a single +# shell word which means that you cannot define any command line +# parameters for the root_cmd. The reason for this limitation is that +# the code does not use a shell to interpret the command line. A later +# version might use Python's shlex module to split this command into +# words. +# +# Set an empty value to indicate that no special command is needed. +# +# You can override this in the pkg_ sections if you need package +# specific values +root_cmd: sudo + +# Email address and name to use as the packager in the debian packages. +# You can override this in the pkg_ sections if you need package +# specific values +deb_email: packager@example.com +deb_fullname: Sample Packager + + +[treepkg] +# Section for general tree packager configuration + +# Interval in seconds between checks for updates +check_interval: 300 + + +[pkg_kdepim] +# Sections with names starting with "pkg_" define the configuration for +# a package. + +# The SVN URL to check out for packaging +svn_url: svn://anonsvn.kde.org/home/kde/branches/kdepim/enterprise/kdepim + +# The directory under which the packager directory structure will be +# created. +base_dir: %(treepkg_dir)s/kdepim + +# Required fields for a pkg_ section inherited from the DEFAULT section +# in this example: root_cmd deb_email deb_fullname + +# An additional option, name, is inferred from the section name. Its +# value is the part of the section name after the pkg_ prefix.