annotate DOCS/tech/release-howto.txt @ 12850:43153c50ab7a

typos pointed out by The Wanderer.
author diego
date Mon, 19 Jul 2004 22:41:08 +0000
parents a12a9e749438
children 1cc5c037e28a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12781
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
1 How to make an MPlayer release
10389
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
3
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
4 preparations:
12781
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
5 - Ask the DOCS maintainers to commit their final changes, check if
12850
43153c50ab7a typos pointed out by The Wanderer.
diego
parents: 12781
diff changeset
6 all docs are up to date, etc.
12781
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
7 - Verify man page, remove obsolete options, mention new ones.
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
8 - Ask translation maintainers to update their help_mp*.h file.
12850
43153c50ab7a typos pointed out by The Wanderer.
diego
parents: 12781
diff changeset
9 - Update the ChangeLog file (according to CVS log), ask other developers
43153c50ab7a typos pointed out by The Wanderer.
diego
parents: 12781
diff changeset
10 to verify their parts, etc. Ask Diego to spellcheck it.
12781
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
11 - Consult at -dev-eng about unstable parts of the code which should be
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
12 disabled for the release.
10389
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
13
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
14 create the release tree:
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
15 - cvs checkout the mplayer src tree
12850
43153c50ab7a typos pointed out by The Wanderer.
diego
parents: 12781
diff changeset
16 - if releasing from 'main', check out libavcodec from FFmpeg CVS
12781
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
17 - remove the CVS subdirs:
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
18 find main -name CVS -exec rm -rf {} \;
10389
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
19 - remove the .cvsignore files:
12781
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
20 find main -name .cvsignore -exec rm {} \;
10389
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
21 - remove obsolete DOCS translations, help files
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
22 - replace version.sh with this (change version number too...):
12781
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
23
10389
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
24 ============
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
25 #!/bin/sh
12781
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
26 echo "#define VERSION \"1.0pre5-$1 \"" > version.h
10389
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
27 ============
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
28
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
29 release the tree:
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
30 cd ..
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
31 mv main MPlayer-0.90rc5
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
32 tar -cf MPlayer-0.90rc5.tar MPlayer-0.90rc5
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
33 bzip2 -9 MPlayer-0.90rc5.tar
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
34
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
35 test it (download to your local machine, extract, compile, run)
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
36
12781
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
37 copy to FTP:
10389
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
38 cp MPlayer-0.90rc5.tar.bz2 /home/ftp/MPlayer/releases/
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
39
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
40 move the older (pre)release(s) (except the last one before the current one)
12781
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
41 to ../OLD_stuff/ dir
10389
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
42
12781
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
43 Somehow get Diego to write a news entry for the release, and update the
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
44 source file of dload.html and commit it. Test it, it's sometimes buggy
10389
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
45 (broken links etc).
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
46
12781
a12a9e749438 updates, corrections, wording, spelling
diego
parents: 10389
diff changeset
47 Done.
10389
5e2cc92a4170 to make alex happy
arpi
parents:
diff changeset
48