2004-07-09 15:25:22 +00:00
|
|
|
How to make an MPlayer release
|
2003-07-06 21:43:49 +00:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
preparations:
|
2004-07-09 15:25:22 +00:00
|
|
|
- Ask the DOCS maintainers to commit their final changes, check if
|
2004-07-19 22:41:08 +00:00
|
|
|
all docs are up to date, etc.
|
2004-07-09 15:25:22 +00:00
|
|
|
- Verify man page, remove obsolete options, mention new ones.
|
|
|
|
- Ask translation maintainers to update their help_mp*.h file.
|
2004-07-19 22:41:08 +00:00
|
|
|
- Update the ChangeLog file (according to CVS log), ask other developers
|
|
|
|
to verify their parts, etc. Ask Diego to spellcheck it.
|
2004-07-09 15:25:22 +00:00
|
|
|
- Consult at -dev-eng about unstable parts of the code which should be
|
|
|
|
disabled for the release.
|
2003-07-06 21:43:49 +00:00
|
|
|
|
|
|
|
create the release tree:
|
|
|
|
- cvs checkout the mplayer src tree
|
2004-07-19 22:41:08 +00:00
|
|
|
- if releasing from 'main', check out libavcodec from FFmpeg CVS
|
2004-07-09 15:25:22 +00:00
|
|
|
- remove the CVS subdirs:
|
|
|
|
find main -name CVS -exec rm -rf {} \;
|
2003-07-06 21:43:49 +00:00
|
|
|
- remove the .cvsignore files:
|
2004-07-09 15:25:22 +00:00
|
|
|
find main -name .cvsignore -exec rm {} \;
|
2003-07-06 21:43:49 +00:00
|
|
|
- remove obsolete DOCS translations, help files
|
|
|
|
- replace version.sh with this (change version number too...):
|
2004-07-09 15:25:22 +00:00
|
|
|
|
2003-07-06 21:43:49 +00:00
|
|
|
============
|
|
|
|
#!/bin/sh
|
2004-07-09 15:25:22 +00:00
|
|
|
echo "#define VERSION \"1.0pre5-$1 \"" > version.h
|
2003-07-06 21:43:49 +00:00
|
|
|
============
|
|
|
|
|
|
|
|
release the tree:
|
|
|
|
cd ..
|
|
|
|
mv main MPlayer-0.90rc5
|
|
|
|
tar -cf MPlayer-0.90rc5.tar MPlayer-0.90rc5
|
|
|
|
bzip2 -9 MPlayer-0.90rc5.tar
|
|
|
|
|
|
|
|
test it (download to your local machine, extract, compile, run)
|
|
|
|
|
2004-07-09 15:25:22 +00:00
|
|
|
copy to FTP:
|
2003-07-06 21:43:49 +00:00
|
|
|
cp MPlayer-0.90rc5.tar.bz2 /home/ftp/MPlayer/releases/
|
|
|
|
|
|
|
|
move the older (pre)release(s) (except the last one before the current one)
|
2004-07-09 15:25:22 +00:00
|
|
|
to ../OLD_stuff/ dir
|
2003-07-06 21:43:49 +00:00
|
|
|
|
2004-07-09 15:25:22 +00:00
|
|
|
Somehow get Diego to write a news entry for the release, and update the
|
|
|
|
source file of dload.html and commit it. Test it, it's sometimes buggy
|
2003-07-06 21:43:49 +00:00
|
|
|
(broken links etc).
|
|
|
|
|
2004-07-09 15:25:22 +00:00
|
|
|
Done.
|
2003-07-06 21:43:49 +00:00
|
|
|
|