bh@1: [DEFAULT] bh@1: # the default section provides defaults for the other sections. Also, bh@1: # other sections can use the values here in interpolations. bh@1: bh@1: # The basedir to use for interpolations in other sections bh@1: treepkg_dir: /home/builder/enterprise bh@1: bh@1: # The command to use to gain the permissions to execute pbuilder. The bh@1: # default is sudo. The actual command line used to run pbuilder is bh@1: # root_cmd followed by the pbuilder command line. With the default it bh@1: # is something like bh@1: # bh@1: # sudo pbuilder build bh@1: # bh@2: # The value of this option is split into words with the python function bh@2: # shlex.split. See the python documentation for the precise semantics. bh@2: # shlex.split works pretty much like a POSIX shell but it doesn't to any bh@2: # expansions. bh@1: # bh@1: # Set an empty value to indicate that no special command is needed. bh@1: # bh@1: # You can override this in the pkg_ sections if you need package bh@1: # specific values bh@1: root_cmd: sudo bh@1: bh@47: # The pbuilder config file to use. It should be an absolute filename. bh@47: # The script initpbuilder.py can create it and the rest of the pbuilder bh@47: # files and directories. You can override this in the pkg_ sections for bh@47: # individual packagers if necessaary. You will have to adapt pbuilder bh@47: # yourself, then, though. bh@47: pbuilderrc: %(treepkg_dir)s/pbuilder/pbuilderrc bh@47: bh@47: bh@1: # Email address and name to use as the packager in the debian packages. bh@1: # You can override this in the pkg_ sections if you need package bh@1: # specific values bh@1: deb_email: packager@example.com bh@1: deb_fullname: Sample Packager bh@1: bh@1: bh@1: [treepkg] bh@1: # Section for general tree packager configuration bh@1: bh@1: # Interval in seconds between checks for updates bh@1: check_interval: 300 bh@1: bh@1: bh@1: [pkg_kdepim] bh@1: # Sections with names starting with "pkg_" define the configuration for bh@1: # a package. bh@1: bh@3: # The SVN URL to check out for packaging. Will only be used for the bh@3: # initial checkout bh@1: svn_url: svn://anonsvn.kde.org/home/kde/branches/kdepim/enterprise/kdepim bh@1: bh@1: # The directory under which the packager directory structure will be bh@1: # created. bh@1: base_dir: %(treepkg_dir)s/kdepim bh@1: bh@6: # The packager class defines how the packaging works. The bh@6: # enterprise.kdepim class knows how to package the enterprise branch of bh@6: # KDE-PIM. bh@6: packager_class: enterprise.kdepim bh@6: bh@1: # Required fields for a pkg_ section inherited from the DEFAULT section bh@1: # in this example: root_cmd deb_email deb_fullname bh@1: bh@1: # An additional option, name, is inferred from the section name. Its bh@1: # value is the part of the section name after the pkg_ prefix. bh@6: bh@6: bh@6: [pkg_i18n] bh@6: # Another packager. This one for the the localizations. This packager bh@6: # requires and additional parameter, orig_tarball. bh@6: svn_url: svn://anonsvn.kde.org/home/kde/branches/kdepim/enterprise/kde-l10n bh@6: base_dir: %(treepkg_dir)s/kde-i18n bh@6: orig_tarball: /home/builder/kde-i18n-de-3.5.5.tar.bz2 bh@6: bh@6: packager_class: enterprise.kdei18n