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