]> git.decadent.org.uk Git - dak.git/blob - docs/TODO
marge from master
[dak.git] / docs / TODO
1                                  TODO
2                                  ====
3
4 Various
5 -------
6
7 * Implement autosigning, see ftpmaster_autosigning on ftp-master host in text/.
8
9 * Throw away all DD uploaded .debs. (Depend on "Lintian based automated
10    rejects")
11   - Depends on the lintian based automated rejects, we do want correct
12    .debs uploaded. Ubuntu nicely demonstrated the quality loss if people
13    can just upload anything without even having to get one build
14    running.
15   - Need a way to define a build-architecture for arch_all debs. Some of
16    them can only be build on certain architectures.
17    A control file header build-architecture: YXY should do it.
18   - its a suite option, not active for all at once.
19   - should have all buildd machines under dsa control
20
21 * Check TODO.old and move still-valid/useful entries over here.
22
23 * need a testsuite _badly_
24
25 * database table "binaries" contains a  column 'type TEXT NOT
26   NULL'. This should be made a FK on override_type, as it only contains
27   deb/udeb strings.
28
29   - sql query to do the db work for it:
30      ALTER TABLE binaries ADD COLUMN new_type INT4 REFERENCES override_type(id);
31      UPDATE BINARIES SET new_type = 7 WHERE type = 'deb';
32      UPDATE BINARIES SET new_type = 8 WHERE type = 'udeb';
33      ALTER TABLE binaries DROP COLUMN type;
34      ALTER TABLE binaries RENAME COLUMN new_type TO type;
35
36   - needs updateX.py written and then the rest of the code changed to deal
37      with it.
38
39 * use pythonX.Y-tarfile to check orig.tar.gz timestamps too.
40
41 * the .dak stuff is fundamentally braindamaged for various reasons, it
42   should DIE. If we want to cache information - use a ("temporary")
43   database table and let p-a clean it up, e.g. like contents does.
44
45 * security global mail overrides should special case buildd stuff so
46   that buildds get ACCEPTED mails. Or maybe send them at
47   new-security-install time. That way upload-security doesn't grow
48   boundlessly.
49
50 * debianqueued sucks. Reimplement in a sane way.
51
52 NEW processing
53 --------------
54 * 'dak process-new' allows you to edit the section and change the
55    component, but really shouldn't allow the component change.
56
57 * 'dak process-new' doesn't do the right thing with -2 and -1 uploads,
58   as you can end up with the .orig.tar.gz not in the pool or belonging
59   to a wrong suite.
60
61 * 'dak process-new' doesn't trap signals from 'dak examine-package' properly
62
63 * 'dak queue-report' should footnote the actual notes, and also * the
64   versions with notes so we can see new versions since being noted...
65
66 * <neuro> the orig was in NEW, the changes that caused it to be NEW
67   were pulled out in -2, and we end up with no orig in the archive :(
68
69
70
71 Override handling
72 -----------------
73 * 'dak check-overrides' should remove the src-only override when a
74    binary+source override exists
75
76 * override checks sucks; it needs to track changes made by the
77    maintainer and pass them onto ftpmaster instead of warning the maintainer.
78
79 * Fix component handling in overrides
80
81
82 Cruft
83 -----
84 * 'dak cruft-report' could do with overrides
85
86 * cruft-report could spot "half-dropped" binaries. Like if a package
87   used to build A and B, but B is no longer built for half the
88   architectures.
89
90 * cruft-report's NVIU check doesn't catch cases where source package
91    changed name, should check binaries too. [debian-devel@l.d.o,
92    2004-02-03]
93
94 * 'dak cruft-report' doesn't look at debian-installer but should.
95
96