]> git.donarmstrong.com Git - wannabuild.git/blob - etc/wanna-build.conf.local
add view on built/uploaded packages for distribution_architectures
[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 = "notforus\@buildd.debian.org";
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 # mail domain under which the buildds can be reached
28 $buildd_domain = "buildd.debian.org";
29
30 # file to publish statistics over WWW (optional)
31 #$web_stats = "/var/www/buildd/stats.txt";
32
33 # sections to import and maintain in the database
34 # the full list would be:
35 # @sections = qw(main contrib non-free non-US non-US/main non-US/contrib non-US/non-free);
36 @sections = qw(main contrib non-US/main non-US/contrib);
37
38 # source for Packages files (for do-merge-packages)
39 # can be an ftp or http URL, or a local path
40 $pkgs_source = "/org/ftp.debian.org/ftp";
41
42 # source for quinn-diff output (for do-merge-quinn)
43 # can be an ftp or http URL, or a local path
44 #$quinn_source = "http://ftp.uni-erlangen.de/pub/Linux/LOCAL/Debian-support/quinn-diff";
45 $quinn_source = "/org/buildd.debian.org/web/quinn-diff/output";
46
47 # Is there quinn-diff output for more than one section (main)? This changes
48 # what structure under $quinn_source is assumed:
49 #   $quinn_source_has_section == 0 : ARCH/source-dependencies-DIST.gz
50 #   $quinn_source_has_section == 1 : ARCH/SECTION/DIST
51 # ftp.uni-erlangen.de is multi-section, buildd.debian.org not (yet)
52 $quinn_source_multi_section = 0;
53
54 @admin_users = qw(wbadm);
55
56 # don't remove this, Perl needs it:
57 1;