7 * Implement autosigning, see ftpmaster_autosigning on ftp-master host in text/.
9 * Check TODO.old and move still-valid/useful entries over here.
11 * need a testsuite _badly_
13 * database table "binaries" contains a column 'type TEXT NOT
14 NULL'. This should be made a FK on override_type, as it only contains
17 - sql query to do the db work for it:
18 ALTER TABLE binaries ADD COLUMN new_type INT4 REFERENCES override_type(id);
19 UPDATE BINARIES SET new_type = 7 WHERE type = 'deb';
20 UPDATE BINARIES SET new_type = 8 WHERE type = 'udeb';
21 ALTER TABLE binaries DROP COLUMN type;
22 ALTER TABLE binaries RENAME COLUMN new_type TO type;
24 - needs updateX.py written and then the rest of the code changed to deal
27 * Checkout SQL Alchemy and probably use that for our database layer.
29 * reject on > or < in a version constraint
31 * use pythonX.Y-tarfile to check orig.tar.gz timestamps too.
33 * the .dak stuff is fundamentally braindamaged for various reasons, it
34 should DIE. If we want to cache information - use a ("temporary")
35 database table and let p-a clean it up, e.g. like contents does.
37 * security global mail overrides should special case buildd stuff so
38 that buildds get ACCEPTED mails. Or maybe send them at
39 new-security-install time. That way upload-security doesn't grow
42 * debianqueued sucks. Reimplement in a sane way.
46 * 'dak process-new' allows you to edit the section and change the
47 component, but really shouldn't allow the component change.
49 * 'dak process-new' doesn't do the right thing with -2 and -1 uploads,
50 as you can end up with the .orig.tar.gz not in the pool or belonging
53 * 'dak process-new' doesn't trap signals from 'dak examine-package' properly
55 * 'dak queue-report' should footnote the actual notes, and also * the
56 versions with notes so we can see new versions since being noted...
58 * <neuro> the orig was in NEW, the changes that caused it to be NEW
59 were pulled out in -2, and we end up with no orig in the archive :(
65 * 'dak check-overrides' should remove the src-only override when a
66 binary+source override exists
68 * override checks sucks; it needs to track changes made by the
69 maintainer and pass them onto ftpmaster instead of warning the maintainer.
71 * Fix component handling in overrides
76 * 'dak cruft-report' could do with overrides
78 * cruft-report could spot "half-dropped" binaries. Like if a package
79 used to build A and B, but B is no longer built for half the
82 * cruft-report's NVIU check doesn't catch cases where source package
83 changed name, should check binaries too. [debian-devel@l.d.o,
86 * 'dak cruft-report' doesn't look at debian-installer but should.