The branch commit policy is pretty slack. GDB releases 5.0, 5.1 and 5.2 all used the below:
Pragmatics: Provided updates are restricted to non-core functionality there is little chance that a broken change will be fatal. This means that changes such as adding a new architectures or (within reason) support for a new host are considered acceptable.
Before anything else, poke the other developers (and around the source code) to see if there is anything that can be removed from GDB (an old target, an unused file).
Obsolete code is identified by adding an OBSOLETE
prefix to every
line. Doing this means that it is easy to identify something that has
been obsoleted when greping through the sources.
The process is done in stages -- this is mainly to ensure that the wider GDB community has a reasonable opportunity to respond. Remember, everything on the Internet takes a week.
OBSOLETE
.
Maintainer note: While removing old code is regrettable it is hopefully better for GDB's long term development. Firstly it helps the developers by removing code that is either no longer relevant or simply wrong. Secondly since it removes any history associated with the file (effectively clearing the slate) the developer has a much freer hand when it comes to fixing broken files.
The most important objective at this stage is to find and fix simple changes that become a pain to track once the branch is created. For instance, configuration problems that stop GDB from even building. If you can't get the problem fixed, document it in the `gdb/PROBLEMS' file.
People always forget. Send a post reminding them but also if you know
something interesting happened add it yourself. The schedule
script will mention this in its e-mail.
Grab one of the nightly snapshots and then walk through the
`gdb/README' looking for anything that can be improved. The
schedule
script will mention this in its e-mail.
A number of files are taken from external repositories. They include:
@uref{http://sources.redhat.com/gdb/ari,,A.R.I.} is an awk
script
(Awk Regression Index ;-) that checks for a number of errors and coding
conventions. The checks include things like using malloc
instead
of xmalloc
and file naming problems. There shouldn't be any
regressions.
Close anything obviously fixed.
The targets are listed in `gdb/MAINTAINERS'.
$ u=5.1 $ v=5.2 $ V=`echo $v | sed 's/\./_/g'` $ D=`date -u +%Y-%m-%d` $ echo $u $V $D 5.1 5_2 2002-03-03 $ echo cvs -f -d :ext:sources.redhat.com:/cvs/src rtag \ -D $D-gmt gdb_$V-$D-branchpoint insight+dejagnu cvs -f -d :ext:sources.redhat.com:/cvs/src rtag -D 2002-03-03-gmt gdb_5_2-2002-03-03-branchpoint insight+dejagnu $ ^echo ^^ ... $ echo cvs -f -d :ext:sources.redhat.com:/cvs/src rtag \ -b -r gdb_$V-$D-branchpoint gdb_$V-branch insight+dejagnu cvs -f -d :ext:sources.redhat.com:/cvs/src rtag \ -b -r gdb_5_2-2002-03-03-branchpoint gdb_5_2-branch insight+dejagnu $ ^echo ^^ ... $
$ u=5.1 $ v=5.2 $ V=`echo $v | sed 's/\./_/g'` $ echo $u $v$V 5.1 5_2 $ cd /tmp $ echo cvs -f -d :ext:sources.redhat.com:/cvs/src co \ -r gdb_$V-branch src/gdb/version.in cvs -f -d :ext:sources.redhat.com:/cvs/src co -r gdb_5_2-branch src/gdb/version.in $ ^echo ^^ U src/gdb/version.in $ cd src/gdb $ echo $u.90-0000-00-00-cvs > version.in $ cat version.in 5.1.90-0000-00-00-cvs $ cvs -f commit version.in
Something?
The file `gdbadmin/cron/crontab' contains gdbadmin's cron table. This file needs to be updated so that:
See the file `gdbadmin/cron/README' for how to install the updated cron table.
The file `gdbadmin/ss/README' should also be reviewed to reflect any changes. That file is copied to both the branch/ and current/ snapshot directories.
The `NEWS' file needs to be updated so that on the branch it refers to changes in the current release while on the trunk it also refers to changes since the current release.
The `README' file needs to be updated so that it refers to the current release.
Send an announcement to the mailing lists:
Pragmatics: The branch creation is sent to the announce list to ensure that people people not subscribed to the higher volume discussion list are alerted.
The announcement should include:
Something goes here.
The process of creating and then making available a release is broken down into a number of stages. The first part addresses the technical process of creating a releasable tar ball. The later stages address the process of releasing that tar ball.
When making a release candidate just the first section is needed.
The objective at this stage is to create a set of tar balls that can be made available as a formal release (or as a less formal release candidate).
Send out an e-mail notifying everyone that the branch is frozen to @email{gdb-patches@sources.redhat.com}.
$ b=gdb_5_2-branch $ v=5.2 $ t=/sourceware/snapshot-tmp/gdbadmin-tmp $ echo $t/$b/$v /sourceware/snapshot-tmp/gdbadmin-tmp/gdb_5_2-branch/5.2 $ mkdir -p $t/$b/$v $ cd $t/$b/$v $ pwd /sourceware/snapshot-tmp/gdbadmin-tmp/gdb_5_2-branch/5.2 $ which autoconf /home/gdbadmin/bin/autoconf $
Notes:
autoconf
version carefully. You want to be using the
version taken from the `binutils' snapshot directory, which can be
found at @uref{ftp://sources.redhat.com/pub/binutils/}. It is very
unlikely that a system installed version of autoconf
(e.g.,
`/usr/bin/autoconf') is correct.
$ for m in gdb insight dejagnu do ( mkdir -p $m && cd $m && cvs -q -f -d /cvs/src co -P -r $b $m ) done $
Note:
cvs
really does.
$ emacs gdb/src/gdb/NEWS ... c-x 4 a ... c-x c-s c-x c-c $ cp gdb/src/gdb/NEWS insight/src/gdb/NEWS $ cp gdb/src/gdb/ChangeLog insight/src/gdb/ChangeLog
$ emacs gdb/src/gdb/README ... c-x 4 a ... c-x c-s c-x c-c $ cp gdb/src/gdb/README insight/src/gdb/README $ cp gdb/src/gdb/ChangeLog insight/src/gdb/ChangeLogMaintainer note: Hopefully the `README' file was reviewed before the initial branch was cut so just a simple substitute is needed to get it updated. Maintainer note: Other projects generate `README' and `INSTALL' from the core documentation. This might be worth pursuing.
$ echo $v > gdb/src/gdb/version.in $ cat gdb/src/gdb/version.in 5.2 $ emacs gdb/src/gdb/version.in ... c-x 4 a ... Bump to version ... c-x c-s c-x c-c $ cp gdb/src/gdb/version.in insight/src/gdb/version.in $ cp gdb/src/gdb/ChangeLog insight/src/gdb/ChangeLog
AM_INIT_AUTOMAKE
. Tweak it to read something like gdb-5.1.91.
Don't forget to re-generate `configure'.
Don't forget to include a `ChangeLog' entry.
$ emacs dejagnu/src/dejagnu/configure.in ... c-x 4 a ... c-x c-s c-x c-c $ ( cd dejagnu/src/dejagnu && autoconf )
This is identical to the process used to create the daily snapshot.
$ for m in gdb insight do ( cd $m/src && gmake -f src-release $m.tar ) done $ ( m=dejagnu; cd $m/src && gmake -f src-release $m.tar.bz2 )
If the top level source directory does not have `src-release' (GDB version 5.3.1 or earlier), try these commands instead:
$ for m in gdb insight do ( cd $m/src && gmake -f Makefile.in $m.tar ) done $ ( m=dejagnu; cd $m/src && gmake -f Makefile.in $m.tar.bz2 )
You're looking for files that have mysteriously disappeared. distclean has the habit of deleting files it shouldn't. Watch out for the `version.in' update cronjob.
$ ( cd gdb/src && cvs -f -q -n update ) M djunpack.bat ? gdb-5.1.91.tar ? proto-toplev ... lots of generated files ... M gdb/ChangeLog M gdb/NEWS M gdb/README M gdb/version.in ... lots of generated files ... $
Don't worry about the `gdb.info-??' or `gdb/p-exp.tab.c'. They were generated (and yes `gdb.info-1' was also generated only something strange with CVS means that they didn't get supressed). Fixing it would be nice though.
$ cp */src/*.tar . $ cp */src/*.bz2 . $ ls -F dejagnu/ dejagnu-gdb-5.2.tar.bz2 gdb/ gdb-5.2.tar insight/ insight-5.2.tar $ for m in gdb insight do bzip2 -v -9 -c $m-$v.tar > $m-$v.tar.bz2 gzip -v -9 -c $m-$v.tar > $m-$v.tar.gz done $
Note:
gzip
does not know the name of the file and, hence,
can not include it in the compressed file. This is also why the release
process runs tar
and bzip2
as separate passes.
Pick a popular machine (Solaris/PPC?) and try the build on that.
$ bunzip2 < gdb-5.2.tar.bz2 | tar xpf - $ cd gdb-5.2 $ ./configure $ make ... $ ./gdb/gdb ./gdb/gdb GNU gdb 5.2 ... (gdb) b main Breakpoint 1 at 0x80732bc: file main.c, line 734. (gdb) run Starting program: /tmp/gdb-5.2/gdb/gdb Breakpoint 1, main (argc=1, argv=0xbffff8b4) at main.c:734 734 catch_errors (captured_main, &args, "", RETURN_MASK_ALL); (gdb) print args $1 = {argc = 136426532, argv = 0x821b7f0} (gdb)
If this is a release candidate then the only remaining steps are:
(And you thought all that was required was to post an e-mail.)
Copy the new files to both the release and the old release directory:
$ cp *.bz2 *.gz ~ftp/pub/gdb/old-releases/ $ cp *.bz2 *.gz ~ftp/pub/gdb/releases
Clean up the releases directory so that only the most recent releases are available (e.g. keep 5.2 and 5.2.1 but remove 5.1):
$ cd ~ftp/pub/gdb/releases $ rm ...
Update the file `README' and `.message' in the releases directory:
$ vi README ... $ rm -f .message $ ln README .message
index.sh
.
cron
jobs and then just edit accordingly.
Something like:
$ ~/ss/update-web-docs \ ~ftp/pub/gdb/releases/gdb-5.2.tar.bz2 \ $PWD/www \ /www/sourceware/htdocs/gdb/download/onlinedocs \ gdb
$ /bin/sh ~/ss/update-web-ari \ ~ftp/pub/gdb/releases/gdb-5.2.tar.bz2 \ $PWD/www \ /www/sourceware/htdocs/gdb/download/ari \ gdb
Something goes here.
At the time of writing, the GNU machine was gnudist.gnu.org in `~ftp/gnu/gdb'.
Post the `ANNOUNCEMENT' file you created above to:
The release is out but you're still not finished.
In particular you'll need to commit any changes to:
Something like:
$ d=`date -u +%Y-%m-%d` $ echo $d 2002-01-24 $ ( cd insight/src/gdb && cvs -f -q update ) $ ( cd insight/src && cvs -f -q tag gdb_5_2-$d-release )
Insight is used since that contains more of the release than
GDB (dejagnu
doesn't get tagged but I think we can live
with that).
Just put something in the `ChangeLog' so that the trunk also indicates when the release was made.
If `gdb/version.in' does not contain an ISO date such as
2002-01-24 then the daily cronjob
won't update it. Having
committed all the release changes it can be set to
`5.2.0_0000-00-00-cvs' which will restart things (yes the _
is important - it affects the snapshot process).
Don't forget the `ChangeLog'.
The files committed to the branch may also need changes merged into the trunk.
Post a revised release schedule to @email{gdb@sources.redhat.com, GDB Discussion List} with an updated announcement. The schedule can be generated by running:
$ ~/ss/schedule `date +%s` schedule
The first parameter is approximate date/time in seconds (from the epoch) of the most recent release.
Also update the schedule cronjob
.
Remove any OBSOLETE
code.
Go to the first, previous, next, last section, table of contents.