]> git.donarmstrong.com Git - dak.git/blob - config/debian/dak.conf
remove unused udebcomponents
[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   };
207
208   Proposed-Updates
209   {
210         Components
211         {
212           main;
213           contrib;
214           non-free;
215         };
216         Announce "debian-changes@lists.debian.org";
217         CopyChanges "dists/proposed-updates/";
218         CopyDotDak "/srv/ftp-master.debian.org/queue/proposed-updates/";
219         CommentsDir "/srv/ftp-master.debian.org/queue/p-u-new/COMMENTS/";
220         Version "5.0-updates";
221         Origin "Debian";
222         Description "Debian 5.0 Proposed Updates - Not Released";
223         CodeName "lenny-proposed-updates";
224         OverrideCodeName "lenny";
225         OverrideSuite "stable";
226         ValidTime 604800; // 7 days
227         Priority "4";
228         VersionChecks
229         {
230           MustBeNewerThan
231           {
232             OldStable;
233             Stable;
234           };
235 //        MustBeOlderThan
236 //        {
237 //          Testing;
238 //          Unstable;
239 //          Experimental;
240 //        };
241           Enhances
242           {
243             Stable;
244           };
245         };
246   };
247
248   Testing
249   {
250         Components
251         {
252           main;
253           contrib;
254           non-free;
255         };
256         Announce "debian-testing-changes@lists.debian.org";
257         Origin "Debian";
258         Description "Debian Testing distribution - Not Released";
259         CodeName "squeeze";
260         OverrideCodeName "squeeze";
261         ValidTime 604800; // 7 days
262         Priority "5";
263   };
264
265   Testing-Proposed-Updates
266   {
267         Components
268         {
269           main;
270           contrib;
271           non-free;
272         };
273         Announce "debian-testing-changes@lists.debian.org";
274         Origin "Debian";
275         Description "Debian Testing distribution updates - Not Released";
276         CodeName "squeeze-proposed-updates";
277         OverrideCodeName "squeeze";
278         OverrideSuite "testing";
279         ValidTime 604800; // 7 days
280         Priority "6";
281         VersionChecks
282         {
283           MustBeNewerThan
284           {
285             OldStable;
286             Stable;
287 //          Proposed-Updates;
288             Testing;
289           };
290           MustBeOlderThan
291           {
292             Unstable;
293             Experimental;
294           };
295           Enhances
296           {
297             Testing;
298           };
299         };
300   };
301
302   Squeeze-Volatile
303   {
304         Components
305         {
306           main;
307           contrib;
308           non-free;
309         };
310         Announce "debian-testing-changes@lists.debian.org";
311         Origin "Debian";
312         Description "Volatile Packages for Debian x.y (testing)";
313         CodeName "squeeze-volatile";
314         OverrideCodeName "squeeze";
315         OverrideSuite "testing";
316         ValidTime 604800; // 7 days
317         NotAutomatic "yes";
318         Priority "0";
319         VersionChecks
320         {
321           MustBeNewerThan
322           {
323             Stable;
324             Testing;
325           };
326           Enhances
327       {
328             Testing;
329           };
330         };
331
332   };
333
334   Unstable
335   {
336         Components
337         {
338           main;
339           contrib;
340           non-free;
341         };
342         Announce "debian-devel-changes@lists.debian.org";
343         Origin "Debian";
344         Description "Debian Unstable - Not Released";
345         CodeName "sid";
346         OverrideCodeName "sid";
347         ValidTime 604800; // 7 days
348         Priority "7";
349         VersionChecks
350         {
351           MustBeNewerThan
352           {
353             OldStable;
354             Stable;
355 //          Proposed-Updates;
356             Testing;
357             Testing-Proposed-Updates;
358           };
359         };
360   };
361
362   Experimental
363   {
364         Components
365         {
366           main;
367           contrib;
368           non-free;
369         };
370         Announce "debian-devel-changes@lists.debian.org";
371         Origin "Debian";
372         Description "Experimental packages - not released; use at your own risk.";
373         CodeName "experimental";
374         NotAutomatic "yes";
375         OverrideCodeName "sid";
376         OverrideSuite "unstable";
377         ValidTime 604800; // 7 days
378         Priority "0";
379         VersionChecks
380         {
381           MustBeNewerThan
382           {
383             OldStable;
384             Stable;
385 //          Proposed-Updates;
386             Testing;
387             Testing-Proposed-Updates;
388             Unstable;
389           };
390         };
391   };
392
393 };
394
395 SuiteMappings
396 {
397 // "propup-version oldstable-security stable testing testing-proposed-updates unstable";
398  "propup-version stable-security testing testing-proposed-updates unstable";
399  "propup-version testing-security unstable";
400  "map lenny stable";
401  "map lenny-volatile lenny-volatile-proposed-updates";
402  "map squeeze testing";
403  "map squeeze-volatile squeeze-volatile-proposed-updates";
404  "map sid unstable";
405  "map rc-buggy experimental";
406 // "map oldstable oldstable-proposed-updates";
407 // "map oldstable-security oldstable-proposed-updates";
408  "map stable proposed-updates";
409  "map stable-security proposed-updates";
410  "map stable-proposed-updates proposed-updates";
411 // "map-unreleased oldstable unstable";
412  "map-unreleased stable unstable";
413  "map-unreleased proposed-updates unstable";
414  "map testing testing-proposed-updates";
415  "map testing-security testing-proposed-updates";
416  "map-unreleased testing unstable";
417  "map-unreleased testing-proposed-updates unstable";
418 };
419
420 AutomaticByHandPackages {
421   "debian-installer-images" {
422     Source "debian-installer";
423     Section "raw-installer";
424     Extension "tar.gz";
425     Script "/srv/ftp-master.debian.org/dak/scripts/debian/byhand-di";
426   };
427
428   "tag-overrides" {
429     Source "tag-overrides";
430     Section "byhand";
431     Extension "tar.gz";
432     Script "/srv/ftp-master.debian.org/dak/scripts/debian/byhand-tag";
433   };
434
435   "task-overrides" {
436     Source "tasksel";
437     Section "byhand";
438     Extension "tar.gz";
439     Script "/srv/ftp-master.debian.org/dak/scripts/debian/byhand-task";
440   };
441 };
442
443 Dir
444 {
445   Root "/srv/ftp-master.debian.org/ftp/";
446   Pool "/srv/ftp-master.debian.org/ftp/pool/";
447   Templates "/srv/ftp-master.debian.org/dak/templates/";
448   PoolRoot "pool/";
449   Lists "/srv/ftp-master.debian.org/database/dists/";
450   Cache "/srv/ftp-master.debian.org/database/";
451   Log "/srv/ftp-master.debian.org/log/";
452   Lock "/srv/ftp-master.debian.org/lock";
453   Morgue "/srv/ftp-master.debian.org/morgue/";
454   MorgueReject "reject";
455   Override "/srv/ftp-master.debian.org/scripts/override/";
456   QueueBuild "/srv/incoming.debian.org/buildd/";
457   UrgencyLog "/srv/release.debian.org/britney/input/urgencies/";
458   TempPath "/srv/ftp-master.debian.org/tmp/";
459   Queue
460   {
461     Byhand "/srv/ftp-master.debian.org/queue/byhand/";
462     ProposedUpdates "/srv/ftp-master.debian.org/queue/p-u-new/";
463     OldProposedUpdates "/srv/ftp-master.debian.org/queue/o-p-u-new/";
464     ProposedUpdates "/srv/ftp-master.debian.org/queue/p-u-new/";
465     Lenny-Volatile-Proposed-Updates "/srv/ftp-master.debian.org/queue/volatile/lenny-volatile-p-u-new";
466     Squeeze-Volatile-Proposed-Updates "/srv/ftp-master.debian.org/queue/volatile/squeeze-volatile-p-u-new";
467     Done "/srv/ftp-master.debian.org/queue/done/";
468     Holding "/srv/ftp-master.debian.org/queue/holding/";
469     New "/srv/ftp-master.debian.org/queue/new/";
470     Reject "/srv/ftp-master.debian.org/queue/reject/";
471     Unchecked "/srv/ftp-master.debian.org/queue/unchecked/";
472     Newstage "/srv/ftp-master.debian.org/queue/newstage/";
473     BTSVersionTrack "/srv/ftp-master.debian.org/queue/bts_version_track/";
474     Embargoed "/does/not/exist/";
475     Unembargoed "/does/not/exist/";
476     Disembargo "/does/not/exist/";
477   };
478 };
479
480 Queue-Report
481 {
482   ReportLocations
483   {
484     822Location "/srv/ftp.debian.org/web/new.822";
485   };
486 };
487
488 DB
489 {
490   Name "projectb";
491   Host "";
492   Port 5433;
493 };
494
495 Architectures
496 {
497   source "Source";
498   all "Architecture Independent";
499   alpha "DEC Alpha";
500   hurd-i386 "Intel ia32 running the HURD";
501   hppa "HP PA RISC";
502   amd64 "AMD64";
503   arm "ARM";
504   armel "ARM eabi";
505   i386 "Intel ia32";
506   ia64 "Intel ia64";
507   mips "MIPS (Big Endian)";
508   mipsel "MIPS (Little Endian)";
509   powerpc "PowerPC";
510   s390 "IBM S/390";
511   sparc "Sun SPARC/UltraSPARC";
512   kfreebsd-i386 "GNU/kFreeBSD i386";
513   kfreebsd-amd64 "GNU/kFreeBSD amd64";
514 };
515
516 Archive
517 {
518   ftp-master
519   {
520     OriginServer "ftp-master.debian.org";
521     PrimaryMirror "ftp.debian.org";
522     Description "Master Archive for the Debian project";
523   };
524 };
525
526 Component
527 {
528   main
529   {
530         Description "Main";
531         MeetsDFSG "true";
532   };
533
534   contrib
535   {
536         Description "Contrib";
537         MeetsDFSG "true";
538   };
539
540   non-free
541   {
542         Description "Software that fails to meet the DFSG";
543         MeetsDFSG "false";
544   };
545 };
546
547 Section
548 {
549   admin;
550   cli-mono;
551   comm;
552   database;
553   debian-installer;
554   debug;
555   devel;
556   doc;
557   editors;
558   embedded;
559   electronics;
560   fonts;
561   games;
562   gnome;
563   graphics;
564   gnu-r;
565   gnustep;
566   hamradio;
567   haskell;
568   httpd;
569   interpreters;
570   java;
571   kde;
572   kernel;
573   libdevel;
574   libs;
575   lisp;
576   localization;
577   mail;
578   math;
579   misc;
580   net;
581   news;
582   ocaml;
583   oldlibs;
584   otherosfs;
585   perl;
586   php;
587   python;
588   ruby;
589   science;
590   shells;
591   sound;
592   tex;
593   text;
594   utils;
595   web;
596   vcs;
597   video;
598   x11;
599   xfce;
600   zope;
601 };
602
603 Priority
604 {
605   required 1;
606   important 2;
607   standard 3;
608   optional 4;
609   extra 5;
610   source 0; // i.e. unused
611 };
612
613 OverrideType
614 {
615   deb;
616   udeb;
617   dsc;
618 };
619
620 Location
621 {
622
623   // Pool locations on ftp-master.debian.org
624   /srv/ftp-master.debian.org/ftp/pool/
625     {
626       Archive "ftp-master";
627       Type "pool";
628     };
629
630 };
631
632 Urgency
633 {
634   Default "low";
635   Valid
636   {
637     low;
638     medium;
639     high;
640     emergency;
641     critical;
642   };
643 };
644
645 Contents
646 {
647   Header "contents";
648   Root "/srv/ftp-master.debian.org/test/";
649 }
650
651 Common
652 {
653   // The default number of threads for multithreading parts of dak:
654   ThreadCount 16;
655 }
656
657 Changelogs
658 {
659   Testing "/srv/release.debian.org/tools/trille/current-testing";
660   Britney "/srv/ftp-master.debian.org/ftp/dists/testing/ChangeLog";
661   Export "/srv/ftp-master.debian.org/export/changelogs";
662 }