]> git.donarmstrong.com Git - wannabuild.git/blob - etc/wanna-build.conf.local
initial import of /org/wanna-build
[wannabuild.git] / etc / wanna-build.conf.local
1 #
2 # /etc/wanna-build.conf: local wanna-build configuration
3 #
4 # This is an example file, values are for for the m68k wanna-build on
5 # m68k.debian.org.
6 #
7
8 # directory for the databases, lock files and log files
9 $basedir = "/org/wanna-build/db";
10
11 # ignore all epochs? (needed if quinn-diff prints no epochs)
12 #$ignore_epochs = 0;
13
14 # mail address of database maintainer (informed about a few things)
15 $db_maint = "wb-team\@buildd.debian.org";
16
17 # mail address of not-for-us maintainer (informed about Not-For-Us state
18 # changes)
19 $notforus_maint = "rmurray-wanna-build";
20
21 # mail address for logs of all state changes
22 #$log_mail = "m68k-changes\@nocrew.org";
23
24 # where to send wanna-build statistics mails
25 $stat_mail = "wb-team\@buildd.debian.org";
26
27 # file to publish statistics over WWW (optional)
28 #$web_stats = "/var/www/buildd/stats.txt";
29
30 # sections to import and maintain in the database
31 # the full list would be:
32 # @sections = qw(main contrib non-free non-US non-US/main non-US/contrib non-US/non-free);
33 @sections = qw(main contrib non-US/main non-US/contrib);
34
35 # source for Packages files (for do-merge-packages)
36 # can be an ftp or http URL, or a local path
37 $pkgs_source = "/org/ftp.debian.org/ftp";
38
39 # source for quinn-diff output (for do-merge-quinn)
40 # can be an ftp or http URL, or a local path
41 #$quinn_source = "http://ftp.uni-erlangen.de/pub/Linux/LOCAL/Debian-support/quinn-diff";
42 $quinn_source = "/org/buildd.debian.org/web/quinn-diff/output";
43
44 # Is there quinn-diff output for more than one section (main)? This changes
45 # what structure under $quinn_source is assumed:
46 #   $quinn_source_has_section == 0 : ARCH/source-dependencies-DIST.gz
47 #   $quinn_source_has_section == 1 : ARCH/SECTION/DIST
48 # ftp.uni-erlangen.de is multi-section, buildd.debian.org not (yet)
49 $quinn_source_multi_section = 0;
50
51 @admin_users = qw(wbadm);
52
53 %distributions = (
54         "unstable" => { },
55         "testing" => { },
56         "testing-security" => { noadw => 1, hidden => 1 },
57         "stable" => { },
58         "stable-security" => { noadw => 1, hidden => 1 },
59         "oldstable" => { },
60         "oldstable-security" => { noadw => 1, hidden => 1 },
61 );
62
63 # don't remove this, Perl needs it:
64 1;