|
|
Line 5: |
Line 5: |
|
# cp -a <old directory name> <new directory name> |
|
# cp -a <old directory name> <new directory name> |
|
# cd <new directory name> |
|
# cd <new directory name> |
|
# cvs update |
|
# hg pull && hg update |
|
# cvs tag -b <release tag name>-rc |
|
# hg tag -b <release tag name>-rc |
|
# cvs update -r <release tag name>-rc |
|
# hg pull && hg update -r <release tag name>-rc |
|
Normal glob2 development takes place in the original HEAD (i.e. MAIN) |
|
Normal glob2 development takes place in the original HEAD (i.e. MAIN) |
|
branch as usual. |
|
branch as usual. |
Line 15: |
Line 15: |
|
# cp -a <old directory name> <new directory name> |
|
# cp -a <old directory name> <new directory name> |
|
# cd <new directory name> |
|
# cd <new directory name> |
|
# cvs update -r <release tag name>-rc |
|
# hg pull && hg update -r <release tag name>-rc |
|
And also every bugfix must be done for both branches HEAD and the release candidate to avoid cvs merging weaknesses. |
|
<!--And also every bugfix must be done for both branches HEAD and the release candidate to avoid cvs merging weaknesses.--> |
|
|
|
|
|
* Put a line like: "Changes in <release tag> (release soon)" under "Changes since latest release" in: [http://globulation2.org/wiki/Changes Changes] |
|
* Put a line like: "Changes in <release tag> (release soon)" under "Changes since latest release" in: [http://globulation2.org/wiki/Changes Changes] |
|
* Increment version number in configure.in |
|
* Increment version number in configure.in |
|
* Increment Debian version number by doing debchange -i in debian/ (this must be done by nct on the mailing list) |
|
* Increment Debian version number by doing debchange -i in debian/ (this must be done by nct on the mailing list) |
|
* Do a release dry run, i.e.: all the release steps below except the "cvs tag" and only propagate news about a release candidate - not a release. |
|
* Do a release dry run, i.e.: all the release steps below except the "hg tag" and only propagate news about a release candidate - not a release. |
|
* Now wait about a week. |
|
* Now wait about a week. |
|
|
|
|
Line 29: |
Line 29: |
|
|
|
|
|
# Go into the directory containing glob2 the release candidate |
|
# Go into the directory containing glob2 the release candidate |
|
# Check that the local cvs is up to date (through "cvs up") |
|
# Check that the local mercurial is up to date (through "hg pull && hg update") |
|
# Check that all the required graphics and maps are in the server (through "./mkdata" and "./mkmap") |
|
# Check that all the required graphics and maps are in the server (through "./mkdata" and "./mkmap") |
|
# Run "make distclean" |
|
# Run "make distclean" |
Line 37: |
Line 37: |
|
# Run "make"; if any problem occurs, well, the release candidate is *still* not ready for release! |
|
# Run "make"; if any problem occurs, well, the release candidate is *still* not ready for release! |
|
# Test the resulting binary; if any problem occurs, well, you should fix your code instead of releasing stuff! |
|
# Test the resulting binary; if any problem occurs, well, you should fix your code instead of releasing stuff! |
|
# Run "cvs tag RELEASE_NAME", in order to tag the CVS so that packagers can fetch this *exact* source tree for this release |
|
# Run "hg tag RELEASE_NAME", in order to tag the Mercurial so that packagers can fetch this *exact* source tree for this release |
|
# Run "make dist" to make the .tar.gz |
|
# Run "make dist" to make the .tar.gz |
|
# Run "fakeroot debian/rules binary" to make the debian package |
|
# Run "fakeroot debian/rules binary" to make the debian package |