binutils release procedure: Add AI to update branch name in crontab
[deliverable/binutils-gdb.git] / binutils / README-how-to-make-a-release
CommitLineData
78b2179a 1 README for MAKING BINUTILS RELEASES
a960d29f 2
78b2179a
NC
3This is a collection of notes on how to perform a binutils release. A
4lot of this information can also be found in the maintain.texi file in
5the gnulib project:
6
7 https://www.gnu.org/software/gnulib/
8
9It is useful to have a cloned copy of the sources of this project as
10it also contains an upload script used to install tarballs on the GNU
11FTP server.
12
13Make sure that you have upload authority on sourceware and fencepost.
14Beware - this is an involved process and can take weeks to complete.
15See the maintain.texi file for details on how to obtain these
16permissions.
17
18-------------------------------------------------
19How to perform a release.
20-------------------------------------------------
21
98ab9e96
NC
22 1. Send an email out warning contributors about the forthcoming
23 branch. Set a date for the branch (weekends are better because
24 they are less busy).
a960d29f 25
98ab9e96 26 2. Update the libiberty and config directories and the top level
a960d29f 27 configure files.
98ab9e96
NC
28
29 3. When branch day arrives add markers for the upcoming release to
9176ac5b 30 gas, ld, gold and binutils NEWS files.
19e2900b 31 [If using the make-prerelease.sh script, check that
a960d29f 32 common.sh has the right values].
9176ac5b
NC
33 [make-prelease.sh command i]
34 [make-prelease.sh command C]
35 Likewise for all of the ChangeLog files.
36 Add a note of the name of the new branch to binutils/BRANCHES.
37 Commit these changes.
38 [make-prerelease.sh command C]
a960d29f 39
98ab9e96
NC
40 4. Create the release branch using:
41
42 git tag -a binutils-2_30-branch [eg for the 2.30 branch...]
43 git push --tags origin binutils-2_30-branch
44
0dd86f32
JB
45 5. Update "BINUTILS_BRANCH" in gdbadmin's crontab:
46
47 Log in as gdbadmin on sourceware.org, and then:
48
49 $ cd crontab
50 $ vi crontab
51 [change BINUTILS_BRANCH]
52 $ cvs ci crontab
53 $ crontab crontab
54
55 If you do not have access to this account, please feel free to
56 ask Joel Brobecker <brobecker AT adacore DOT com>.
57
58 6. Update bfd/configure and bfd/configure.ac on HEAD to indicate
98ab9e96 59 snapshot of the following release.
769c7ea5 60 [make-prerelease.sh command hv + C]
98ab9e96 61
0dd86f32 62 7. Rename the current HEAD version entry in Bugzilla, and create a
98ab9e96
NC
63 new one. E.g. rename "2.30 (HEAD)" to 2.30, and create "2.31
64 (HEAD)". Go to "Edit products" from the bottom toolbar, click on
65 "binutils", then on "Edit versions". If you don't have
66 permissions to do this, either ask Daniel Berlin to fix your
67 account or ask Daniel Jacobowitz to do it.
68
0dd86f32 69 8. Regenerate various files on both branch and HEAD by configuring
98ab9e96
NC
70 with --enable-maintainer-mode. No need to check in changes to
71 the autoconf/automake/etc files, but be sure the .pot files are
19e2900b 72 up to date. NB/ Remember to include gold and gprof.
98ab9e96 73
0dd86f32 74 9. Create an initial prerelease:
98ab9e96 75
19e2900b
NC
76 a. Change the version on the branch (bfd/version.m4), regenerate
77 the files, and check this in.
98ab9e96 78
19e2900b 79 b. Create a source tarball of the branch sources:
a960d29f 80
19e2900b 81 ./src-release -x binutils
a960d29f 82
98ab9e96
NC
83 c. Build a test target using this tarball.
84
85 d. Upload the prerelease snapshot to the FTP:
86
19e2900b
NC
87 scp ../binutils-$version.tar.xz sourceware.org:~ftp/pub/binutils/snapshots
88 ssh sourceware.org md5sum ~ftp/pub/binutils/snapshots/binutils-$version.tar.xz
98ab9e96 89
0dd86f32 90 10. Send it to the Translation Project:
a960d29f 91
98ab9e96 92 http://translationproject.org/html/maintainers.html
a960d29f 93
98ab9e96
NC
94 Sending mail for one of the POT files is sufficient.
95
0dd86f32 96 11. Announce the availability of the snapshot and the branch on the
98ab9e96
NC
97 binutils mailing list. Set a date for when the release will
98 actually happen. Nag maintainers to fix any testsuite failures
99 for their architectures...
100
78b2179a
NC
101xxx -- fill in stuff here -- xxx
102
103-------------------------------------------------
104How to perform a point release.
105-------------------------------------------------
106
107A point release is easier than a normal release since a lot of the
108work has already been done. The branch has been created, the
109translations updated and the documentation uploaded. So the procedure
110looks like this:
111
112 0. Decide that a point release is necessary.
113
114 Usually this only happens when a sufficient number of serious
115 bugs have been found and fixed since the previous release, and a
116 new official release is not imminent.
117
118 1. Tell the community that a point release is happening. Ask
119 maintainers to ensure that their ports are up to date on the
120 release branch. Ask the community if there are any bug fixes
121 which are missing from the branch. Allow some time for the
122 responses to this step.
123
124 2. Make sure that the branch sources build, test and install
125 correctly.
126
98ab9e96
NC
127 2.5 Prepare a list of the bugs which have been fixed. This
128 will be needed for step 8.
a960d29f 129
ef336cb0 130 3. In the branch sources:
a960d29f 131
ef336cb0
NC
132 a. Update the minor release number in bfd/version.m4.
133 b. Edit bfd/development.sh and set "development=false".
134 c. Regenerate the configure files.
135 d. Commit the updates along with a "this-is-the-2.XX.X-release"
136 note in all of the changelogs.
137 e. Tag the branch with the new release number:
138
139 git tag -a binutils-2_XX_X
140 [optional: add "-u XXXXX" to sign with a gpg key]
141 git push origin binutils-2_XX_X
142
8071ec09
NC
143 f. Check that your file creation mask will create the
144 correct file permissions. Eg:
145
146 umask 022
a960d29f 147
8071ec09 148 g. Create the release tarballs:
ef336cb0 149 ./src-release -b -g -l -x binutils
8071ec09
NC
150
151 h. Check that the files in the tarballs have the correct
152 permissions.
a960d29f 153
8071ec09
NC
154 i. Edit bfd/development.sh and set "development=true".
155 j. Commit this change into the git repository.
156 k. Clean up the source tree. (Use "git status" to find new
ef336cb0 157 files, and remove them).
78b2179a
NC
158
159 FIXME: The tarballs will contain spurious autom4te.cache
160 directories which could be removed to reduce their size.
161
ef336cb0
NC
162 4. [If paranoid - upload the tarballs to one of the FTP servers and
163 ask people to test it before going on to step 5].
a960d29f 164
ef336cb0 165 5. Upload the tarballs to ftp.gnu.org.
78b2179a
NC
166
167 gnupload --to ftp.gnu.org:binutils binutils-X.XX.X.tar.*
168
ef336cb0 169 The gnupload script is in the gnulib/build-aux directory.
78b2179a 170
ef336cb0 171 6. Upload the tarballs to sourceware.org:
78b2179a
NC
172
173 sftp sourceware.org
174 cd /ftp/pub/binutils/releases
175 put binutils-X.XX.X.tar.*
176 chmod 644 binutils-X.XX.X.tar.*
177 quit
178
179 FIXME: Should the signatures (created by the gnupload script in
ef336cb0 180 step 5) be uploaded as well ?
78b2179a 181
ef336cb0 182 7. Update web pages. For sourceware.org:
78b2179a
NC
183
184 * Log on to sourceware.org
185 * Go /www/htdocs/binutils
186 * Edit index.html
187
188 For the www.gnu.org site you have to email webmasters@gnu.org
189 and ask them to make the change(s).
190
ef336cb0
NC
191 8. Send an emails to the binutils list, info-gnu@gnu.org and
192 David Edelsohn <dje.gcc@gmail.com> announcing the new release.
193 (The email to Davis is so that he can update the GNU Toolchain
194 social media). Something like this:
78b2179a
NC
195------------------------------------------------------------------------
196Hi Everyone,
197
198 We are pleased to announce that version 2.XX.X of the Binutils project
199 sources have been released and are now available for download at:
a960d29f 200
78b2179a
NC
201 https://ftp.gnu.org/gnu/binutils
202 https://sourceware.org/pub/binutils/releases/
203
204 This is a point release over the previous 2.XX version, containing bug
205 fixes but no new features.
206
207 Our thanks go out to all of the binutils contributors, past and
208 present, for helping to make this release possible.
98ab9e96
NC
209
210 Here is a list of the bugs that have been fixed:
211 xx
212 xx
213 xx
214 xx
78b2179a
NC
215--------------------------------------------------------------------------
216
217\f
219d1afa 218Copyright (C) 2017-2018 Free Software Foundation, Inc.
78b2179a
NC
219
220Copying and distribution of this file, with or without modification,
221are permitted in any medium without royalty provided the copyright
222notice and this notice are preserved.
This page took 0.055428 seconds and 4 git commands to generate.