This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
libcdio-osx/doc/how-to-make-a-release.txt

61 lines
1.5 KiB
Plaintext
Raw Normal View History

2005-09-24 12:44:26 +00:00
- Let people know of a pending release, e.g. libcdio-devel@gnu.org;
no major changes before release, please
- test on lots of platforms; sourceforge compile farm, for example
- "make distcheck" should work.
- Go over Changelog and add NEWS. Update date of release.
- Remove "cvs" from configure.ac's release name. E.g.
define(RELEASE_NUM, 23)
define(LIBVCD_VERSION_STR, 0.7.$1cvs)
^^^
...
- Make sure sources are current and checked in:
cvs update -dPA .
cvs commit .
- autogen.sh && make && make check
- make doxygen documentation
cd doc/doxygen; ./run_doxygen
- Tag release in CVS:
cvs log -h configure.ac
cvs tag release_*0_76* .
- "make distcheck" one more time
- Get onto ftp.gnu.org. I use my perl program
gnu-ftp-upload libcdio 0.*76*
- Update/Announce on Freshmeat:
http://freshmeat.net/projects/libcdio/ "add release" generally
The NEWS file is your friend.
- copy doxygen html to web pages:
cd libcdio-www/doxygen
rm *.html
cp ../libcdio/doc/doxygen/html/*.html .
cvs update .
for each "U" html *except libcdio.hmtl* put back remove it
with "rm" and "cvs remove"
for each new "?" html add it
cvs commit .
- copy libcdio manual to web page:
cd libcdio-www
2005-09-24 12:44:26 +00:00
(cd ../libcdio/doc && make libcdio.html)
cp ../libcdio/doc/libcdio.html .
cvs commit libcdio.html
2005-09-24 12:44:26 +00:00
- Remove old cvs versions
- Bump version in configure.ac and add "cvs". See place above in
removal.