]> git.decadent.org.uk Git - dak.git/blob - config/debian/dak.conf
control_suite.py: generate changelog for britney runs
[dak.git] / config / debian / dak.conf
1 Dinstall
2 {
3    GPGKeyring {
4       "/srv/keyring.debian.org/keyrings/debian-keyring.gpg";
5       "/srv/keyring.debian.org/keyrings/debian-maintainers.gpg";
6    };
7    SigningKeyring "/srv/ftp-master.debian.org/s3kr1t/dot-gnupg/secring.gpg";
8    SigningPubKeyring "/srv/ftp-master.debian.org/s3kr1t/dot-gnupg/pubring.gpg";
9    SigningKeyIds "55BE302B";
10 //   SendmailCommand "/usr/sbin/sendmail -odq -oi -t -f envelope@ftp-master.debian.org";
11    SendmailCommand "/usr/sbin/sendmail -oi -t -f envelope@ftp-master.debian.org";
12    MyEmailAddress "Archive Administrator <installer@ftp-master.debian.org>";
13    MyAdminAddress "ftpmaster@debian.org";
14    MyHost "debian.org";  // used for generating user@my_host addresses in e.g. manual_reject()
15    MyDistribution "Debian"; // Used in emails
16    BugServer "bugs.debian.org";
17    PackagesServer "packages.debian.org";
18    TrackingServer "packages.qa.debian.org";
19    LockFile "/srv/ftp-master.debian.org/lock/dinstall.lock";
20    Bcc "archive@ftp-master.debian.org";
21    FutureTimeTravelGrace 28800; // 8 hours
22    PastCutoffYear "1984";
23    SkipTime 300;
24    BXANotify "true";
25    CloseBugs "true";
26    OverrideDisparityCheck "true";
27    DefaultSuite "unstable";
28    LintianTags "/srv/ftp-master.debian.org/dak/config/debian/lintian.tags";
29    QueueBuildSuites
30    {
31      unstable;
32    };
33    Reject
34    {
35      NoSourceOnly "true";
36      ReleaseTransitions "/srv/ftp.debian.org/web/transitions.yaml";
37    };
38    // if you setup an own dak repository and want to upload Debian packages you most possibly want
39    // to set the following option to a real path/filename and then enter those mail addresses that
40    // you want to be able to receive mails generated by your dak installation. This avoids spamming
41    // the real maintainers of a package you upload with mail.
42    // format of entries: one entry per line. Either an email address directly, or a regular expression,
43    // prefixed by "RE:". Examples: "jane.doe@domain.com" or "RE:jane[^@]@domain.com", where the first will
44    // only allow to mail jane.doe@domain.com while the second will mail all of jane*@domain.com
45    //  MailWhiteList "/some/path/to/a/file";
46 };
47
48 Transitions
49 {
50    Notifications "debian-devel@lists.debian.org";
51 };
52
53 Generate-Index-Diffs
54 {
55    Options
56    {
57      TempDir "/srv/ftp-master.debian.org/tiffani";
58      MaxDiffs { Default 14; };
59    };
60 };
61
62 Override
63 {
64    MyEmailAddress "Debian FTP Masters <ftpmaster@ftp-master.debian.org>";
65 };
66
67 Show-New
68 {
69   HTMLPath "/srv/ftp.debian.org/web/new/";
70 }
71
72 Show-Deferred
73 {
74   LinkPath "/srv/ftp.debian.org/web/deferred/";
75   DeferredQueue "/srv/upload.debian.org/DEFERRED/";
76 }
77
78 Import-Users-From-Passwd
79 {
80   ValidGID "800";
81   // Comma separated list of users who are in Postgres but not the passwd file
82   KnownPostgres "postgres,dak,katie,release,qa,www-data,guest";
83 };
84
85 Clean-Queues
86 {
87   Options
88   {
89     Days 14;
90    };
91  MorgueSubDir "queues";
92 };
93
94 Control-Overrides
95 {
96   Options
97   {
98     Component "main";
99     Suite "unstable";
100     Type "deb";
101    };
102
103  ComponentPosition "prefix"; // Whether the component is prepended or appended to the section name
104 };
105
106 Rm
107 {
108   Options
109   {
110     Suite "unstable";
111    };
112
113    MyEmailAddress "Debian Archive Maintenance <ftpmaster@ftp-master.debian.org>";
114    LogFile "/srv/ftp.debian.org/web/removals.txt";
115    LogFile822 "/srv/ftp.debian.org/web/removals.822";
116    Bcc "removed-packages@qa.debian.org";
117 };
118
119 Import-Archive
120 {
121   ExportDir "/srv/ftp-master.debian.org/dak/import-archive-files/";
122 };
123
124 Import-Keyring
125 {
126   /srv/keyring.debian.org/keyrings/debian-maintainers.gpg
127     {
128       Debian-Maintainer "true";
129     };
130 };
131
132 Reject-Proposed-Updates
133 {
134    StableRejector "the Stable Release Team";
135    StableMail "debian-release@lists.debian.org";
136    MoreInfoURL "http://release.debian.org/stable/4.0/4.0r7/";
137 };
138
139 Import-LDAP-Fingerprints
140 {
141   LDAPDn "ou=users,dc=debian,dc=org";
142   LDAPServer "db.debian.org";
143   ExtraKeyrings
144   {
145     "/srv/keyring.debian.org/keyrings/removed-keys.pgp";
146     "/srv/keyring.debian.org/keyrings/removed-keys.gpg";
147     "/srv/keyring.debian.org/keyrings/extra-keys.pgp";
148   };
149   KeyServer "wwwkeys.eu.pgp.net";
150 };
151
152 Clean-Suites
153 {
154   // How long (in seconds) dead packages are left before being killed
155   StayOfExecution 129600; // 1.5 days
156   QueueBuildStayOfExecution 86400; // 24 hours
157   MorgueSubDir "pool";
158 };
159
160 Process-New
161 {
162   DinstallLockFile "/srv/ftp-master.debian.org/lock/processnew.lock";
163   LockDir "/srv/ftp-master.debian.org/lock/new/";
164 };
165
166 Check-Overrides
167 {
168   OverrideSuites
169   {
170     Stable
171     {
172       Process "0";
173     };
174
175     Testing
176     {
177       Process "1";
178       OriginSuite "Unstable";
179     };
180
181     Unstable
182     {
183       Process "1";
184     };
185   };
186 };
187
188 Suite
189 {
190   Stable
191   {
192         Components
193         {
194           main;
195           contrib;
196           non-free;
197         };
198         Announce "debian-changes@lists.debian.org";
199         // Version "5.0r0";
200         Origin "Debian";
201         // Description "Debian 5.0r0 Released 14 February 2009";
202         CodeName "lenny";
203         OverrideCodeName "lenny";
204         Priority "5";
205         ChangeLogBase "dists/stable/";
206         UdebComponents
207         {
208           main;
209           non-free;
210         };
211   };
212
213   Proposed-Updates
214   {
215         Components
216         {
217           main;
218           contrib;
219           non-free;
220         };
221         Announce "debian-changes@lists.debian.org";
222         CopyChanges "dists/proposed-updates/";
223         CopyDotDak "/srv/ftp-master.debian.org/queue/proposed-updates/";
224         CommentsDir "/srv/ftp-master.debian.org/queue/p-u-new/COMMENTS/";
225         Version "5.0-updates";
226         Origin "Debian";
227         Description "Debian 5.0 Proposed Updates - Not Released";
228         CodeName "lenny-proposed-updates";
229         OverrideCodeName "lenny";
230         OverrideSuite "stable";
231         ValidTime 604800; // 7 days
232         Priority "4";
233         VersionChecks
234         {
235           MustBeNewerThan
236           {
237             OldStable;
238             Stable;
239           };
240 //        MustBeOlderThan
241 //        {
242 //          Testing;
243 //          Unstable;
244 //          Experimental;
245 //        };
246           Enhances
247           {
248             Stable;
249           };
250         };
251         UdebComponents
252         {
253           main;
254           non-free;
255         };
256   };
257
258   Lenny-Volatile
259   {
260         Components
261         {
262           main;
263           contrib;
264           non-free;
265         };
266         Announce "debian-changes@lists.debian.org";
267         Origin "Debian";
268         Description "Volatile Packages for Debian 5.0";
269         CodeName "lenny-volatile";
270         OverrideCodeName "lenny";
271         OverrideSuite "stable";
272         ValidTime 604800; // 7 days
273         NotAutomatic "yes";
274         Priority "0";
275         VersionChecks
276         {
277           MustBeNewerThan
278           {
279             Stable;
280           };
281           Enhances
282       {
283             Stable;
284           };
285         };
286
287   };
288
289   Lenny-Volatile-Proposed-Updates
290   {
291         Components
292         {
293           main;
294           contrib;
295           non-free;
296         };
297         Announce "debian-changes@lists.debian.org";
298         Origin "Debian";
299         Description "Proposed Volatile Packages for Debian 5.0";
300         CodeName "lenny-volatile-proposed-updates";
301         OverrideCodeName "lenny";
302         OverrideSuite "stable";
303         ValidTime 604800; // 7 days
304         NotAutomatic "yes";
305         Priority "0";
306         VersionChecks
307         {
308           MustBeNewerThan
309           {
310             Stable;
311           };
312           Enhances
313       {
314             Stable;
315           };
316         };
317   };
318
319   Testing
320   {
321         Components
322         {
323           main;
324           contrib;
325           non-free;
326         };
327         Announce "debian-testing-changes@lists.debian.org";
328         Origin "Debian";
329         Description "Debian Testing distribution - Not Released";
330         CodeName "squeeze";
331         OverrideCodeName "squeeze";
332         ValidTime 604800; // 7 days
333         Priority "5";
334         UdebComponents
335         {
336           main;
337           non-free;
338         };
339   };
340
341   Testing-Proposed-Updates
342   {
343         Components
344         {
345           main;
346           contrib;
347           non-free;
348         };
349         Announce "debian-testing-changes@lists.debian.org";
350         Origin "Debian";
351         Description "Debian Testing distribution updates - Not Released";
352         CodeName "squeeze-proposed-updates";
353         OverrideCodeName "squeeze";
354         OverrideSuite "testing";
355         ValidTime 604800; // 7 days
356         Priority "6";
357         VersionChecks
358         {
359           MustBeNewerThan
360           {
361             OldStable;
362             Stable;
363 //          Proposed-Updates;
364             Testing;
365           };
366           MustBeOlderThan
367           {
368             Unstable;
369             Experimental;
370           };
371           Enhances
372           {
373             Testing;
374           };
375         };
376         UdebComponents
377         {
378           main;
379           non-free;
380         };
381   };
382
383   Squeeze-Volatile
384   {
385         Components
386         {
387           main;
388           contrib;
389           non-free;
390         };
391         Announce "debian-testing-changes@lists.debian.org";
392         Origin "Debian";
393         Description "Volatile Packages for Debian x.y (testing)";
394         CodeName "squeeze-volatile";
395         OverrideCodeName "squeeze";
396         OverrideSuite "testing";
397         ValidTime 604800; // 7 days
398         NotAutomatic "yes";
399         Priority "0";
400         VersionChecks
401         {
402           MustBeNewerThan
403           {
404             Stable;
405             Testing;
406           };
407           Enhances
408       {
409             Testing;
410           };
411         };
412
413   };
414
415   Squeeze-Volatile-Proposed-Updates
416   {
417         Components
418         {
419           main;
420           contrib;
421           non-free;
422         };
423         Announce "debian-testing-changes@lists.debian.org";
424         Origin "Debian";
425         Description "Proposed Volatile Packages for Debian x.y (testing)";
426         CodeName "squeeze-volatile-proposed-updates";
427         OverrideCodeName "squeeze";
428         OverrideSuite "testing";
429         ValidTime 604800; // 7 days
430         NotAutomatic "yes";
431         Priority "0";
432         VersionChecks
433         {
434           MustBeNewerThan
435           {
436             Stable;
437             Testing;
438           };
439           Enhances
440       {
441             Testing;
442           };
443         };
444   };
445
446   Unstable
447   {
448         Components
449         {
450           main;
451           contrib;
452           non-free;
453         };
454         Announce "debian-devel-changes@lists.debian.org";
455         Origin "Debian";
456         Description "Debian Unstable - Not Released";
457         CodeName "sid";
458         OverrideCodeName "sid";
459         ValidTime 604800; // 7 days
460         Priority "7";
461         VersionChecks
462         {
463           MustBeNewerThan
464           {
465             OldStable;
466             Stable;
467 //          Proposed-Updates;
468             Testing;
469             Testing-Proposed-Updates;
470           };
471         };
472         UdebComponents
473         {
474           main;
475           non-free;
476         };
477   };
478
479   Experimental
480   {
481         Components
482         {
483           main;
484           contrib;
485           non-free;
486         };
487         Announce "debian-devel-changes@lists.debian.org";
488         Origin "Debian";
489         Description "Experimental packages - not released; use at your own risk.";
490         CodeName "experimental";
491         NotAutomatic "yes";
492         OverrideCodeName "sid";
493         OverrideSuite "unstable";
494         ValidTime 604800; // 7 days
495         Priority "0";
496         VersionChecks
497         {
498           MustBeNewerThan
499           {
500             OldStable;
501             Stable;
502 //          Proposed-Updates;
503             Testing;
504             Testing-Proposed-Updates;
505             Unstable;
506           };
507         };
508         UdebComponents
509         {
510           main;
511           non-free;
512         };
513   };
514
515 };
516
517 SuiteMappings
518 {
519 // "propup-version oldstable-security stable testing testing-proposed-updates unstable";
520  "propup-version stable-security testing testing-proposed-updates unstable";
521  "propup-version testing-security unstable";
522  "map lenny stable";
523  "map lenny-volatile lenny-volatile-proposed-updates";
524  "map squeeze testing";
525  "map squeeze-volatile squeeze-volatile-proposed-updates";
526  "map sid unstable";
527  "map rc-buggy experimental";
528 // "map oldstable oldstable-proposed-updates";
529 // "map oldstable-security oldstable-proposed-updates";
530  "map stable proposed-updates";
531  "map stable-security proposed-updates";
532  "map stable-proposed-updates proposed-updates";
533 // "map-unreleased oldstable unstable";
534  "map-unreleased stable unstable";
535  "map-unreleased proposed-updates unstable";
536  "map testing testing-proposed-updates";
537  "map testing-security testing-proposed-updates";
538  "map-unreleased testing unstable";
539  "map-unreleased testing-proposed-updates unstable";
540 };
541
542 AutomaticByHandPackages {
543   "debian-installer-images" {
544     Source "debian-installer";
545     Section "raw-installer";
546     Extension "tar.gz";
547     Script "/srv/ftp-master.debian.org/dak/scripts/debian/byhand-di";
548   };
549
550   "tag-overrides" {
551     Source "tag-overrides";
552     Section "byhand";
553     Extension "tar.gz";
554     Script "/srv/ftp-master.debian.org/dak/scripts/debian/byhand-tag";
555   };
556
557   "task-overrides" {
558     Source "tasksel";
559     Section "byhand";
560     Extension "tar.gz";
561     Script "/srv/ftp-master.debian.org/dak/scripts/debian/byhand-task";
562   };
563 };
564
565 Dir
566 {
567   Root "/srv/ftp-master.debian.org/ftp/";
568   Pool "/srv/ftp-master.debian.org/ftp/pool/";
569   Templates "/srv/ftp-master.debian.org/dak/templates/";
570   PoolRoot "pool/";
571   Lists "/srv/ftp-master.debian.org/database/dists/";
572   Log "/srv/ftp-master.debian.org/log/";
573   Lock "/srv/ftp-master.debian.org/lock";
574   Morgue "/srv/ftp-master.debian.org/morgue/";
575   MorgueReject "reject";
576   Override "/srv/ftp-master.debian.org/scripts/override/";
577   QueueBuild "/srv/incoming.debian.org/buildd/";
578   UrgencyLog "/srv/release.debian.org/britney/input/urgencies/";
579   TempPath "/srv/ftp-master.debian.org/tmp/";
580   Queue
581   {
582     Byhand "/srv/ftp-master.debian.org/queue/byhand/";
583     ProposedUpdates "/srv/ftp-master.debian.org/queue/p-u-new/";
584     OldProposedUpdates "/srv/ftp-master.debian.org/queue/o-p-u-new/";
585     ProposedUpdates "/srv/ftp-master.debian.org/queue/p-u-new/";
586     Lenny-Volatile-Proposed-Updates "/srv/ftp-master.debian.org/queue/volatile/lenny-volatile-p-u-new";
587     Squeeze-Volatile-Proposed-Updates "/srv/ftp-master.debian.org/queue/volatile/squeeze-volatile-p-u-new";
588     Done "/srv/ftp-master.debian.org/queue/done/";
589     Holding "/srv/ftp-master.debian.org/queue/holding/";
590     New "/srv/ftp-master.debian.org/queue/new/";
591     Reject "/srv/ftp-master.debian.org/queue/reject/";
592     Unchecked "/srv/ftp-master.debian.org/queue/unchecked/";
593     Newstage "/srv/ftp-master.debian.org/queue/newstage/";
594     BTSVersionTrack "/srv/ftp-master.debian.org/queue/bts_version_track/";
595     Embargoed "/does/not/exist/";
596     Unembargoed "/does/not/exist/";
597     Disembargo "/does/not/exist/";
598   };
599 };
600
601 Queue-Report
602 {
603   ReportLocations
604   {
605     822Location "/srv/ftp.debian.org/web/new.822";
606   };
607 };
608
609 DB
610 {
611   Name "projectb";
612   Host "";
613   Port 5433;
614 };
615
616 Architectures
617 {
618   source "Source";
619   all "Architecture Independent";
620   alpha "DEC Alpha";
621   hurd-i386 "Intel ia32 running the HURD";
622   hppa "HP PA RISC";
623   amd64 "AMD64";
624   arm "ARM";
625   armel "ARM eabi";
626   i386 "Intel ia32";
627   ia64 "Intel ia64";
628   mips "MIPS (Big Endian)";
629   mipsel "MIPS (Little Endian)";
630   powerpc "PowerPC";
631   s390 "IBM S/390";
632   sparc "Sun SPARC/UltraSPARC";
633   kfreebsd-i386 "GNU/kFreeBSD i386";
634   kfreebsd-amd64 "GNU/kFreeBSD amd64";
635 };
636
637 Archive
638 {
639   ftp-master
640   {
641     OriginServer "ftp-master.debian.org";
642     PrimaryMirror "ftp.debian.org";
643     Description "Master Archive for the Debian project";
644   };
645 };
646
647 Component
648 {
649   main
650   {
651         Description "Main";
652         MeetsDFSG "true";
653   };
654
655   contrib
656   {
657         Description "Contrib";
658         MeetsDFSG "true";
659   };
660
661   non-free
662   {
663         Description "Software that fails to meet the DFSG";
664         MeetsDFSG "false";
665   };
666 };
667
668 Section
669 {
670   admin;
671   cli-mono;
672   comm;
673   database;
674   debian-installer;
675   debug;
676   devel;
677   doc;
678   editors;
679   embedded;
680   electronics;
681   fonts;
682   games;
683   gnome;
684   graphics;
685   gnu-r;
686   gnustep;
687   hamradio;
688   haskell;
689   httpd;
690   interpreters;
691   java;
692   kde;
693   kernel;
694   libdevel;
695   libs;
696   lisp;
697   localization;
698   mail;
699   math;
700   misc;
701   net;
702   news;
703   ocaml;
704   oldlibs;
705   otherosfs;
706   perl;
707   php;
708   python;
709   ruby;
710   science;
711   shells;
712   sound;
713   tex;
714   text;
715   utils;
716   web;
717   vcs;
718   video;
719   x11;
720   xfce;
721   zope;
722 };
723
724 Priority
725 {
726   required 1;
727   important 2;
728   standard 3;
729   optional 4;
730   extra 5;
731   source 0; // i.e. unused
732 };
733
734 OverrideType
735 {
736   deb;
737   udeb;
738   dsc;
739 };
740
741 Location
742 {
743
744   // Pool locations on ftp-master.debian.org
745   /srv/ftp-master.debian.org/ftp/pool/
746     {
747       Archive "ftp-master";
748       Type "pool";
749     };
750
751 };
752
753 Urgency
754 {
755   Default "low";
756   Valid
757   {
758     low;
759     medium;
760     high;
761     emergency;
762     critical;
763   };
764 };
765
766 Contents
767 {
768   Header "contents";
769   Root "/srv/ftp-master.debian.org/test/";
770 }
771
772 Common
773 {
774   // The default number of threads for multithreading parts of dak:
775   ThreadCount 16;
776 }
777
778 Changelogs
779 {
780   Testing "/srv/release.debian.org/tools/trille/current-testing";
781   Britney "/srv/ftp-master.debian.org/ftp/dists/testing/ChangeLog";
782 }