comparison DOCS/tech/release-howto.txt @ 10389:5e2cc92a4170

to make alex happy
author arpi
date Sun, 06 Jul 2003 21:43:49 +0000
parents
children a12a9e749438
comparison
equal deleted inserted replaced
10388:329e738ac78b 10389:5e2cc92a4170
1 how to make an mplayer release
2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
4 preparations:
5 - ask the DOCS maintainers to commit their final changes, check if
6 all docs is uptodate etc
7 - verify manpage, remove obsolete options, mention new ones
8 - ask translation maintainers to update their help_mp*.h file
9 - update teh ChangeLog file (according to cvs log), ask other developers
10 to verify their parts etc. ask Diego to spellcheck it.
11 - consult at -dev-eng about unstable codes which should be disabled for release
12
13 create the release tree:
14 - cvs checkout the mplayer src tree
15 - if releasing from 'main', checkout libavcodec from ffmpeg cvs
16 - remove teh CVS subdirs:
17 find 0_90 -name CVS -exec rm -rf {} \;
18 - remove the .cvsignore files:
19 find 0_90 -name .cvsignore -exec rm {} \;
20 - remove obsolete DOCS translations, help files
21 - replace version.sh with this (change version number too...):
22 ============
23 #!/bin/sh
24 echo "#define VERSION \"0.90rc5-$1 \"" >version.h
25 ============
26
27 release the tree:
28 cd ..
29 mv main MPlayer-0.90rc5
30 tar -cf MPlayer-0.90rc5.tar MPlayer-0.90rc5
31 bzip2 -9 MPlayer-0.90rc5.tar
32
33 test it (download to your local machine, extract, compile, run)
34
35 copy to ftp:
36 cp MPlayer-0.90rc5.tar.bz2 /home/ftp/MPlayer/releases/
37
38 move the older (pre)release(s) (except the last one before the current one)
39 to ../old-stuff/ dir
40
41 somehow get Gabu to write a news entry for the release, and update the
42 source file of dload.html and commit it. test it, it's sometimes buggy
43 (broken links etc).
44
45 done.
46