]> git.decadent.org.uk Git - dak.git/blob - docs/README.stable-point-release
New.
[dak.git] / docs / README.stable-point-release
1 Rough Guide to doing Stable Point Releases in Debian
2 ----------------------------------------------------
3
4 o Install, reject and remove packages as directed by the SRM
5 o Do anything in proposed-updates/TODO
6 o Close any applicable potato bugs (hint: http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=ftp.debian.org&include=potato)
7 o Update README and dists/README
8 o Update the 'Debian<n>.<n>r<n>' symlink in dists/
9 o Comment out "Untouchable" in katie.conf[-non-US]
10 o Run 'jenna -s'
11 o Run apt-ftparchive generate apt.conf.stable[-non-US]
12 o Uncomment "Untouchable" in katie.conf[-non-US]
13 o Update version fields in katie.conf[-non-US]
14 o Update fields in suite table in postgresql
15 o Copy tree/directory for stable to apt.conf[-non-US], run ziyi, remove it from apt.conf[-non-US]
16
17 Yes, this sucks and more of it should be automated.
18
19 update suite set version = '2.2r5' where id = 2;
20 update suite set version = '2.2r6' where id = 3;
21 update suite set version = '3.0-testing' where id = 4;
22 update suite set version = '3.0' where id = 5;
23 update suite set version = '3.0-testing-updates' where id = 6;
24 update suite set description = 'Debian 2.2r5 Released 10th January 2002' where id = 2;
25 update suite set description = 'Proposed Updates for Debian 2.2r5 - Not Released' where id = 3;
26 update suite set description = 'Debian 3.0 Testing distribution - Not Released' where id = 4;
27 update suite set description = 'Debian 3.0 Unstable - Not Released' where id = 5;
28 update suite set description = 'Debian 3.0 Testing distribution updates - Not Released' where id = 6;
29
30