Move ExtUtils::Command from lib to ext.
[p5sagit/p5-mst-13.2.git] / Porting / release_managers_guide.pod
CommitLineData
7277a900 1=head1 NAME
2
3release_managers_guide - Releasing a new version of perl 5.x
4
c67d51c3 5As of August 2009, this file is mostly complete, although it is missing
6some detail on doing a major release (e.g. 5.10.0 -> 5.12.0). Note that
d60a1044 7things change at each release, so there may be new things not covered
8here, or tools may need updating.
f6af4394 9
7277a900 10=head1 SYNOPSIS
11
f6af4394 12This document describes the series of tasks required - some automatic, some
13manual - to produce a perl release of some description, be that a snaphot,
8c35d285 14release candidate, or final, numbered release of maint or blead.
f6af4394 15
8c35d285 16The release process has traditionally been executed by the current
17pumpking.
7277a900 18
8c35d285 19This document both helps as a check-list for the release engineer
20and is a base for ideas on how the various tasks could be automated
21or distributed.
7277a900 22
636a1918 23The outline of a typical release cycle is as follows:
f6af4394 24
636a1918 25 (5.10.1 is released, and post-release actions have been done)
f6af4394 26
27 ...time passes...
28
29 an occasional snapshot is released, that still identifies itself as
30 5.10.1
31
32 ...time passes...
33
34 a few weeks before the release, a number of steps are performed,
35 including bumping the version to 5.10.2
636a1918 36
37 ...a few weeks passes...
46743ef7 38
f6af4394 39 perl-5.10.2-RC1 is released
40
41 perl-5.10.2 is released
42
43 post-release actions are performed, including creating new
44 perl5103delta.pod
45
46 ... the cycle continues ...
7277a900 47
48=head1 DETAILS
49
8c35d285 50Some of the tasks described below apply to all four types of
51release of Perl. (snapshot, RC, final release of maint, final
52release of blead). Some of these tasks apply only to a subset
53of these release types. If a step does not apply to a given
54type of release, you will see a notation to that effect at
55the beginning of the step.
56
57=head2 Release types
58
59=over 4
60
61=item Snapshot
62
63A snapshot is intended to encourage in-depth testing from time-to-time,
64for example after a key point in the stabilisation of a branch. It
65requires fewer steps than a full release, and the version number of perl in
66the tarball will usually be the same as that of the previous release.
67
68=item Release Candidate (RC)
69
d60a1044 70A release candidate is an attempt to produce a tarball that is a close as
71possible to the final release. Indeed, unless critical faults are found
72during the RC testing, the final release will be identical to the RC
73barring a few minor fixups (updating the release date in F<perlhist.pod>,
74removing the RC status from F<patchlevel.h>, etc). If faults are found,
75then the fixes should be put into a new release candidate, never directly
76into a final release.
8c35d285 77
78=item Stable/Maint release
79
80At this point you should have a working release candidate with few or no
81changes since.
82
83It's essentially the same procedure as for making a release candidate, but
84with a whole bunch of extra post-release steps.
85
86=item Blead release
87
88It's essentially the same procedure as for making a release candidate, but
89with a whole bunch of extra post-release steps.
90
91=back
7277a900 92
fd838dcf 93=head2 Prerequisites
94
95Before you can make an official release of perl, there are a few
96hoops you need to jump through:
97
98=over 4
99
8c35d285 100=item PAUSE account
101
102I<SKIP this step for SNAPSHOT>
fd838dcf 103
104Make sure you have a PAUSE account suitable for uploading a perl release.
105If you don't have a PAUSE account, then request one:
106
107 https://pause.perl.org/pause/query?ACTION=request_id
108
109Check that your account is allowed to upload perl distros: goto
110https://pause.perl.org/, login, then select 'upload file to CPAN'; there
111should be a "For pumpkings only: Send a CC" tickbox. If not, ask Andreas
112König to add your ID to the list of people allowed to upload something
113called perl. You can find Andreas' email address at:
4d2c8158 114
fd838dcf 115 https://pause.perl.org/pause/query?ACTION=pause_04imprint
116
8c35d285 117=item CPAN mirror
118
119Some release engineering steps require a full mirror of the CPAN.
120Work to fall back to using a remote mirror via HTTP is incomplete
121but ongoing. (No, a minicpan mirror is not sufficient)
122
123=item git checkout and commit bit
fd838dcf 124
125You will need a working C<git> installation, checkout of the perl
126git repository and perl commit bit. For information about working
127with perl and git, see F<pod/perlrepository.pod>.
128
129If you are not yet a perl committer, you won't be able to make a
130release. Have a chat with whichever evil perl porter tried to talk
131you into the idea in the first place to figure out the best way to
132resolve the issue.
133
f6af4394 134
8c35d285 135=item Quotation for release announcement epigraph
f6af4394 136
8c35d285 137I<SKIP this step for SNAPSHOT and RC>
f6af4394 138
8c35d285 139For a numbered blead or maint release of perl, you will need a quotation
140to use as an epigraph to your release announcement. (There's no harm
141in having one for a snapshot, but it's not required).
46743ef7 142
f6af4394 143
144=back
145
f6af4394 146
2e831dfd 147=head2 Building a release - advance actions
8c35d285 148
149The work of building a release candidate for a numbered release of
150perl generally starts several weeks before the first release candidate.
52a66c2c 151Some of the following steps should be done regularly, but all I<must> be
152done in the run up to a release.
7277a900 153
154=over 4
155
f6af4394 156=item *
157
8c35d285 158I<You MAY SKIP this step for SNAPSHOT>
159
f6af4394 160Ensure that dual-life CPAN modules are synchronised with CPAN. Basically,
161run the following:
162
db3f805e 163 $ ./perl -Ilib Porting/core-cpan-diff -a -o /tmp/corediffs
7277a900 164
f6af4394 165to see any inconsistencies between the core and CPAN versions of distros,
166then fix the core, or cajole CPAN authors as appropriate. See also the
167C<-d> and C<-v> options for more detail. You'll probably want to use the
168C<-c cachedir> option to avoid repeated CPAN downloads.
7277a900 169
f6af4394 170To see which core distro versions differ from the current CPAN versions:
7277a900 171
db3f805e 172 $ ./perl -Ilib Porting/core-cpan-diff -x -a
7277a900 173
52a66c2c 174If you are making a maint release, run C<core-cpan-diff> on both blead and
636a1918 175maint, then diff the two outputs. Compare this with what you expect, and if
176necessary, fix things up. For example, you might think that both blead
177and maint are synchronised with a particular CPAN module, but one might
178have some extra changes.
179
f6af4394 180=item *
7277a900 181
8c35d285 182I<You MAY SKIP this step for SNAPSHOT>
183
f6af4394 184Ensure dual-life CPAN modules are stable, which comes down to:
7277a900 185
186 for each module that fails its regression tests on $current
f6af4394 187 did it fail identically on $previous?
188 if yes, "SEP" (Somebody Else's Problem)
189 else work out why it failed (a bisect is useful for this)
7277a900 190
191 attempt to group failure causes
192
193 for each failure cause
f6af4394 194 is that a regression?
195 if yes, figure out how to fix it
196 (more code? revert the code that broke it)
197 else
198 (presumably) it's relying on something un-or-under-documented
199 should the existing behaviour stay?
200 yes - goto "regression"
201 no - note it in perldelta as a significant bugfix
202 (also, try to inform the module's author)
1aff5354 203
f6af4394 204=item *
7277a900 205
8c35d285 206I<You MAY SKIP this step for SNAPSHOT>
207
f6af4394 208Similarly, monitor the smoking of core tests, and try to fix.
7277a900 209
f6af4394 210=item *
7277a900 211
8c35d285 212I<You MAY SKIP this step for SNAPSHOT>
213
636a1918 214Similarly, monitor the smoking of perl for compiler warnings, and try to
215fix.
216
217=item *
218
8c35d285 219I<You MAY SKIP this step for SNAPSHOT>
220
f6af4394 221Run F<Porting/cmpVERSION.pl> to compare the current source tree with the
222previous version to check for for modules that have identical version
223numbers but different contents, e.g.:
7277a900 224
f6af4394 225 $ cd ~/some-perl-root
226 $ ./perl -Ilib Porting/cmpVERSION.pl -xd ~/my_perl-tarballs/perl-5.10.0 .
227
228then bump the version numbers of any non-dual-life modules that have
229changed since the previous release, but which still have the old version
230number. If there is more than one maintenance branch (e.g. 5.8.x, 5.10.x),
231then compare against both.
232
233Note that some of the files listed may be generated (e.g. copied from ext/
234to lib/, or a script like lib/lib_pm.PL is run to produce lib/lib.pm);
235make sure you edit the correct file!
236
237Once all version numbers have been bumped, re-run the checks.
238
239Then run again without the -x option, to check that dual-life modules are
240also sensible.
241
55878aed 242=item *
243
8c35d285 244I<You MAY SKIP this step for SNAPSHOT>
245
f6af4394 246Get perldelta in a mostly finished state.
db3f805e 247
636a1918 248Peruse F<Porting/how_to_write_a_perldelta.pod>, and try to make sure that
249every section it lists is, if necessary, populated and complete. Copy
250edit the whole document.
f6af4394 251
252=item *
253
8c35d285 254I<You MUST SKIP this step for SNAPSHOT>
255
2e831dfd 256A week or two before the first release candidate, bump the perl version
257number (e.g. from 5.10.0 to 5.10.1), to allow sufficient time for testing
258and smoking with the target version built into the perl executable. For
259subsequent release candidates and the final release, it it not necessary
260to bump the version further.
f6af4394 261
262There is a tool to semi-automate this process. It works in two stages.
263First, it generates a list of suggested changes, which you review and
264edit; then you feed this list back and it applies the edits. So, first
52a66c2c 265scan the source directory looking for likely candidates. The command line
266arguments are the old and new version numbers, and -s means scan:
f6af4394 267
268 $ Porting/bump-perl-version -s 5.10.0 5.10.1 > /tmp/scan
269
52a66c2c 270This produces a file containing a list of suggested edits, e.g.:
f6af4394 271
272 NetWare/Makefile
273
274 89: -MODULE_DESC = "Perl 5.10.0 for NetWare"
275 +MODULE_DESC = "Perl 5.10.1 for NetWare"
276
277i.e. in the file F<NetWare/Makefile>, line 89 would be changed as shown.
278Review the file carefully, and delete any -/+ line pairs that you don't
52a66c2c 279want changing. You can also edit just the C<+> line to change the
280suggested replacement text. Remember that this tool is largely just
281grepping for '5.10.0' or whatever, so it will generate false positives. Be
282careful not change text like "this was fixed in 5.10.0"! Then run:
f6af4394 283
284 $ Porting/bump-perl-version -u < /tmp/scan
285
286which will update all the files shown; then commit the changes.
287
288Be particularly careful with F<INSTALL>, which contains a mixture of
289C<5.10.0>-type strings, some of which need bumping on every release, and
52a66c2c 290some of which need to be left unchanged. Also note that this tool
291currently only detects a single substitution per line: so in particular,
292this line in README.vms needs special handling:
f6af4394 293
294 rename perl-5^.10^.1.dir perl-5_10_1.dir
7277a900 295
dc0a62a1 296
297=item *
298
8c35d285 299I<You MUST SKIP this step for SNAPSHOT>
300
dc0a62a1 301Review and update INSTALL to account for the change in version number;
302in particular, the "Coexistence with earlier versions of perl 5" section.
303
f6af4394 304=item *
7277a900 305
8c35d285 306I<You MUST SKIP this step for SNAPSHOT>
307
f6af4394 308Update the F<Changes> file to contain the git log command which would show
309all the changes in this release. You will need assume the existence of a
310not-yet created tag for the forthcoming release; e.g.
7277a900 311
f6af4394 312 git log ... perl-5.10.0..perl5.12.0
7277a900 313
f6af4394 314Due to warts in the perforce-to-git migration, some branches require extra
315exclusions to avoid other branches being pulled in. Make sure you have the
316correct incantation: replace the not-yet-created tag with C<HEAD> and see
52a66c2c 317if C<git log> produces roughly the right number of commits across roughly the
318right time period (you may find C<git log --pretty=oneline | wc> useful).
dc0a62a1 319
f6af4394 320=item *
7277a900 321
52a66c2c 322Check some more build configurations. The check that setuid builds and
323installs is for < 5.11.0 only.
324
325 $ sh Configure -Dprefix=/tmp/perl-5.x.y -Uinstallusrbinperl \
326 -Duseshrplib -Dd_dosuid
327 $ make
328 $ LD_LIBRARY_PATH=`pwd` make test # or similar for useshrplib
7277a900 329
52a66c2c 330 $ make suidperl
331 $ su -c 'make install'
332 $ ls -l .../bin/sperl
333 -rws--x--x 1 root root 69974 2009-08-22 21:55 .../bin/sperl
7277a900 334
52a66c2c 335(Then delete the installation directory.)
7277a900 336
52a66c2c 337XXX think of other configurations that need testing.
7277a900 338
f6af4394 339=item *
7277a900 340
8c35d285 341I<You MAY SKIP this step for SNAPSHOT>
342
f6af4394 343Update F<AUTHORS>, using the C<Porting/checkAUTHORS.pl> script, and if
ce80ee91 344necessary, update the script to include new alias mappings for porters
345already in F<AUTHORS>
f6af4394 346
ce80ee91 347 $ git log | perl Porting/checkAUTHORS.pl --acknowledged AUTHORS -
f6af4394 348
2e831dfd 349=back
350
351=head2 Building a release - on the day
352
353This section describes the actions required to make a release (or snapshot
354etc) that are performed on the actual day.
355
356=over 4
357
358=item *
359
360Review all the items in the previous section,
361L<"Building a release - advance actions"> to ensure they are all done and
362up-to-date.
363
8c35d285 364=item *
365
a0db33fe 366I<You MAY SKIP this step for SNAPSHOT>
2e831dfd 367
a0db33fe 368Re-read the perldelta to try to find any embarrassing typos and thinkos;
369remove any C<TODO> or C<XXX> flags; update the "Known Problems" section
370with any serious issues for which fixes are not going to happen now; and
371run through pod and spell checkers, e.g.
2e831dfd 372
bf8ea215 373 $ podchecker -warnings -warnings pod/perl5101delta.pod
374 $ spell pod/perl5101delta.pod
2e831dfd 375
a0db33fe 376Also, you may want to generate and view an HTML version of it to check
377formatting, e.g.
2e831dfd 378
bf8ea215 379 $ perl pod/pod2html pod/perl5101delta.pod > /tmp/perl5101delta.html
2e831dfd 380
8c35d285 381=item *
382
a0db33fe 383Make sure you have a gitwise-clean perl directory (no modified files,
384unpushed commits etc):
8c35d285 385
a0db33fe 386 $ git status
8c35d285 387
388=item *
389
a0db33fe 390If not already built, Configure and build perl so that you have a Makefile
391and porting tools:
8c35d285 392
52a66c2c 393 $ ./Configure -Dusedevel -des && make
8c35d285 394
395=item *
396
a0db33fe 397Check that files managed by F<regen.pl> and friends are up to date. From
398within your working directory:
8c35d285 399
a0db33fe 400 $ git status
401 $ make regen
402 $ make regen_perly
403 $ git status
8c35d285 404
a0db33fe 405If any of the files managed by F<regen.pl> have changed, then you should
406re-make perl to check that it's okay, then commit the updated versions:
8c35d285 407
a0db33fe 408 $ git commit -a -m 'make regn; make regn_perly'
8c35d285 409
410=item *
411
a0db33fe 412Rebuild META.yml:
bfadf2ba 413
a0db33fe 414 $ rm META.yml
415 $ make META.yml
416 $ git diff
bfadf2ba 417
a0db33fe 418XXX it would be nice to make Porting/makemeta use regen_lib.pl
419to get the same 'update the file if its changed' functionality
420we get with 'make regen' etc.
bfadf2ba 421
a0db33fe 422Commit META.yml if it has changed:
dd0e54ba 423
a0db33fe 424 $ git commit -m 'Update META.yml' META.yml
dd0e54ba 425
bfadf2ba 426=item *
427
428I<You MUST SKIP this step for SNAPSHOT>
429
52a66c2c 430Update C<Module::Corelist> with module version data for the new release.
bfadf2ba 431
432Note that if this is a maint release, you should run the following actions
dd0e54ba 433from the maint directory, but commit the C<Corelist.pm> changes in
434I<blead> and subsequently cherry-pick it.
bfadf2ba 435
a0db33fe 436F<corelist.pl> uses ftp.funet.fi to verify information about dual-lived
bfadf2ba 437modules on CPAN. It can use a full, local CPAN mirror or fall back
438to C<wget> or C<curl> to fetch only package metadata remotely.
439
440(If you'd prefer to have a full CPAN mirror, see
441http://www.cpan.org/misc/cpan-faq.html#How_mirror_CPAN)
442
a0db33fe 443Then change to your perl checkout, and if necessary,
bfadf2ba 444
a0db33fe 445 $ make perl
bfadf2ba 446
52a66c2c 447If this not the first update for this version, first edit
2ce7d676 448F<ext/Module-CoreList/lib/Module/CoreList.pm> to delete the existing
449entries for this version from the C<%released> and C<%version> hashes:
450they will have a key like C<5.010001> for 5.10.1.
52a66c2c 451
452XXX the edit-in-place functionality of Porting/corelist.pl should
453be fixed to handle this automatically.
454
bf8ea215 455Then, If you have a local CPAN mirror, run:
bfadf2ba 456
bfadf2ba 457 $ ./perl -Ilib Porting/corelist.pl ~/my-cpan-mirror
458
459Otherwise, run:
460
bfadf2ba 461 $ ./perl -Ilib Porting/corelist.pl cpan
462
52a66c2c 463This will chug for a while, possibly reporting various warnings about
464badly-indexed CPABN modules unreltaed to the modules actually in core.
2ce7d676 465Assuming all goes well, it will update
466F<ext/Module-CoreList/lib/Module/CoreList.pm>.
bfadf2ba 467
468Check that file over carefully:
469
2ce7d676 470 $ git diff ext/Module-CoreList/lib/Module/CoreList.pm
bfadf2ba 471
bfadf2ba 472If necessary, bump C<$VERSION> (there's no need to do this for
473every RC; in RC1, bump the version to a new clean number that will
474appear in the final release, and leave as-is for the later RCs and final).
475
476Edit the version number in the new C<< 'Module::CoreList' => 'X.YZ' >>
477entry, as that is likely to reflect the previous version number.
478
a0db33fe 479In addition, if this is a final release (rather than a release candidate):
bfadf2ba 480
481=over 4
482
483=item *
484
485Update this version's entry in the C<%released> hash with today's date.
486
487=item *
488
489Make sure that the script has correctly updated the C<CAVEATS> section
490
491=back
492
493Finally, commit the new version of Module::CoreList:
a0db33fe 494(unless this is for maint; in which case commit it blead first, then
495cherry-pick it back).
bfadf2ba 496
2ce7d676 497 $ git commit -m 'Update Module::CoreList for 5.x.y' ext/Module-CoreList/lib/Module/CoreList.pm
bfadf2ba 498
bfadf2ba 499=item *
500
a0db33fe 501Check that the manifest is sorted and correct:
8c35d285 502
a0db33fe 503 $ make manisort
504 $ make distclean
505 $ perl Porting/manicheck
52a66c2c 506 $ git status
a0db33fe 507
508Commit MANIFEST if it has changed:
509
510 $ git commit -m 'Update MANIFEST' MANIFEST
511
512=item *
513
514I<You MUST SKIP this step for SNAPSHOT>
515
516Add an entry to F<pod/perlhist.pod> with the current date, e.g.:
517
518 David 5.10.1-RC1 2009-Aug-06
519
520Make sure that the correct pumpking is listed in the left-hand column, and
521if this is the first release under the stewardship of a new pumpking, make
522sure that his or her name is listed in the section entitled
523C<THE KEEPERS OF THE PUMPKIN>.
524
525Be sure to commit your changes:
526
527 $ git commit -m 'add new release to perlhist' pod/perlhist.pod
8c35d285 528
529=item *
530
d7eb1120 531I<You MUST SKIP this step for SNAPSHOT>
532
a42352ee 533Update F<patchlevel.h> to add a C<-RC1>-or-whatever string; or, if this is
534a final release, remove it. For example:
d7eb1120 535
536 static const char * const local_patches[] = {
537 NULL
538 + ,"RC1"
539 PERL_GIT_UNPUSHED_COMMITS /* do not remove this line */
540
541Be sure to commit your change:
542
543 $ git commit -m 'bump version to RCnnn' patchlevel.h
544
545=item *
546
a0db33fe 547Build perl, then make sure it passes its own test suite, and installs:
548
549 $ git clean -xdf
a42352ee 550 $ ./Configure -des -Dprefix=/tmp/perl-5.x.y-pretest
551
552 # or if it's an odd-numbered version:
a0db33fe 553 $ ./Configure -des -Dusedevel -Dprefix=/tmp/perl-5.x.y-pretest
a42352ee 554
a0db33fe 555 $ make test install
556
557=item *
558
52a66c2c 559Check that the output of C</tmp/perl-5.x.y-pretest/bin/perl -v> and
560C</tmp/perl-5.x.y-pretest/bin/perl -V> are as expected,
a0db33fe 561especially as regards version numbers, patch and/or RC levels, and @INC
52a66c2c 562paths. Note that as they have been been built from a git working
563directory, they will still identify themselves using git tags and
564commits.
565
566Then delete the temporary installation.
567
568=item *
569
570If this is maint release, make sure F<Porting/mergelog> is saved and
571committed.
a0db33fe 572
573=item *
574
575Push all your recent commits:
576
577 $ git push origin ....
578
a0db33fe 579=item *
580
8c35d285 581Create a tarball. Use the C<-s> option to specify a suitable suffix for
582the tarball and directory name:
583
584 $ cd root/of/perl/tree
585 $ make distclean
75a012fe 586 $ git clean -xdf # make sure perl and git agree on files
587 $ git status # and there's nothing lying around
8c35d285 588
589 $ perl Porting/makerel -b -s `git describe` # for a snapshot
590 $ perl Porting/makerel -b -s RC1 # for a release candidate
591 $ perl Porting/makerel -b # for a final release
592
593This creates the directory F<../perl-x.y.z-RC1> or similar, copies all
594the MANIFEST files into it, sets the correct permissions on them,
595adds DOS line endings to some, then tars it up as
596F<../perl-x.y.z-RC1.tar.gz>. With C<-b>, it also creates a C<tar.bz2> file.
597
598XXX if we go for extra tags and branches stuff, then add the extra details
599here
600
601=item *
602
a42352ee 603Clean up the temporary directory, e.g.
604
605 $ rm -rf ../perl-x.y.z-RC1
606
607=item *
608
8c35d285 609Copy the tarballs (.gz and possibly .bz2) to a web server somewhere you
610have access to.
611
612=item *
613
614Download the tarball to some other machine. For a release candidate,
615you really want to test your tarball on two or more different platforms
616and architectures. The #p5p IRC channel on irc.perl.org is a good place
617to find willing victims.
618
619=item *
620
621Check that basic configuration and tests work on each test machine:
622
623 $ ./Configure -des && make all test
f6af4394 624
625=item *
626
8c35d285 627Check that the test harness and install work on each test machine:
628
a42352ee 629 $ make distclean
8c35d285 630 $ ./Configure -des -Dprefix=/install/path && make all test_harness install
a42352ee 631 $ cd /install/path
8c35d285 632
633=item *
634
635Check that the output of C<perl -v> and C<perl -V> are as expected,
636especially as regards version numbers, patch and/or RC levels, and @INC
637paths.
638
639Note that the results may be different without a F<.git/> directory,
640which is why you should test from the tarball.
641
642=item *
643
459fc3ca 644Run the Installation Verification Procedure utility:
645
646 $ bin/perlivp
647 ...
648 All tests successful.
649 $
650
651=item *
652
d60a1044 653Compare the pathnames of all installed files with those of the previous
654release (i.e. against the last installed tarball on this branch which you
655have previously verified using this same procedure). In particular, look
656for files in the wrong place, or files no longer included which should be.
657For example, suppose the about-to-be-released version is 5.10.1 and the
658previous is 5.10.0:
659
660 cd installdir-5.10.0/
661 find . -type f | perl -pe's/5\.10\.0/5.10.1/g' | sort > /tmp/f1
662 cd installdir-5.10.1/
663 find . -type f | sort > /tmp/f2
664 diff -u /tmp/f[12]
665
666=item *
667
8c35d285 668Bootstrap the CPAN client on the clean install:
669
75a012fe 670 $ bin/perl -MCPAN -e'shell'
8c35d285 671
672=item *
673
a42352ee 674Try installing a popular CPAN module that's reasonably complex and that
675has dependencies; for example:
8c35d285 676
a42352ee 677 CPAN> install Inline
678 CPAN> quit
8c35d285 679
680Check that your perl can run this:
681
75a012fe 682 $ bin/perl -lwe 'use Inline C => "int f() { return 42;} "; print f'
a42352ee 683 42
684 $
8c35d285 685
686=item *
687
688Bootstrap the CPANPLUS client on the clean install:
689
75a012fe 690 $ bin/cpanp
8c35d285 691
8c35d285 692=item *
693
a42352ee 694Install an XS module, for example:
8c35d285 695
a42352ee 696 CPAN Terminal> i DBI
697 CPAN Terminal> quit
698 $ bin/perl -MDBI -e 1
75a012fe 699 $
8c35d285 700
701=item *
702
8c35d285 703I<You MAY SKIP this step for SNAPSHOT>
704
47b1f096 705Check that the C<perlbug> utility works. Try the following:
706
a14438df 707 $ bin/perlbug
47b1f096 708 ...
709 Subject: test bug report
710 Local perl administrator [yourself]:
711 Editor [vi]:
712 Module:
713 Category [core]:
714 Severity [low]:
715 (edit report)
716 Action (Send/Display/Edit/Subject/Save to File): f
717 Name of file to save message in [perlbug.rep]:
718 Action (Send/Display/Edit/Subject/Save to File): q
719
720and carefully examine the output (in F<perlbug.rep]>), especially
721the "Locally applied patches" section. If everything appears okay, then
75a012fe 722delete the file, and try it again, this time actually submitting the bug
723report. Check that it shows up, then remember to close it!
47b1f096 724
725=item *
726
727I<You MAY SKIP this step for SNAPSHOT>
728
f6af4394 729Wait for the smoke tests to catch up with the commit which this release is
730based on (or at least the last commit of any consequence).
7277a900 731
f6af4394 732Then check that the smoke tests pass (particularly on Win32). If not, go
733back and fix things.
7277a900 734
7277a900 735
f6af4394 736=item *
7277a900 737
8c35d285 738I<You MUST SKIP this step for SNAPSHOT>
739
f6af4394 740Once smoking is okay, upload it to PAUSE. This is the point of no return.
db3f805e 741If anything goes wrong after this point, you will need to re-prepare
742a new release with a new minor version or RC number.
743
a14438df 744 https://pause.perl.org/
745
746(Login, then select 'Upload a file to CPAN')
747
a42352ee 748Upload both the .gz and .bz2 versions of the tarball.
f6af4394 749
210de33e 750=item *
751
8c35d285 752I<You MUST SKIP this step for SNAPSHOT>
753
2e831dfd 754Create a tag for the exact git revision you built the release from.
755C<commit> below is the commit corresponding to the tarball. It can be
756omitted if there have been no further commits since the tarball was
75a012fe 757created, for example:
210de33e 758
2e831dfd 759 $ git tag perl-5.10.1-RC1 -m'Release Candidate 1 of Perl 5.10.1' <commit>
210de33e 760 $ git push origin tag perl-5.10.1-RC1
f6af4394 761
762=item *
763
2e831dfd 764I<You MUST SKIP this step for SNAPSHOT>
765
a42352ee 766Disarm the F<patchlevel.h> change; for example,
d7eb1120 767
768 static const char * const local_patches[] = {
769 NULL
770 - ,"RC1"
771 PERL_GIT_UNPUSHED_COMMITS /* do not remove this line */
772
773Be sure to commit your change:
774
775 $ git commit -m 'disarm RCnnn bump' patchlevel.h
a14438df 776 $ git push origin ....
d7eb1120 777
2e831dfd 778
779=item *
780
db3f805e 781Mail p5p to announce your new release, with a quote you prepared earlier.
f6af4394 782
783=item *
784
8c35d285 785I<You MAY SKIP this step for SNAPSHOT>
786
f6af4394 787Wait 24 hours or so, then post the announcement to use.perl.org.
addebd58 788(if you don't have access rights to post news, ask someone like Rafael to
789do it for you.)
f6af4394 790
f6af4394 791=item *
7277a900 792
746c0b35 793I<You MUST SKIP this step for SNAPSHOT>
794
795Ask Jarkko to add the tarball to http://www.cpan.org/src/
796
797=item *
798
8c35d285 799I<You MUST SKIP this step for SNAPSHOT, RC, BLEAD>
7277a900 800
746c0b35 801Ask Jarkko to update the descriptions of which tarballs are current in
802http://www.cpan.org/src/README.html, and Rafael to update
803http://dev.perl.org/perl5/
7277a900 804
f6af4394 805=item *
7277a900 806
8c35d285 807I<You MUST SKIP this step for SNAPSHOT, RC>
808
75a012fe 809Remind the current maintainer of C<Module::CoreList> to push a new release
810to CPAN.
7277a900 811
75a012fe 812=item *
a2cba4bc 813
75a012fe 814I<You MUST SKIP this step for SNAPSHOT, RC>
7277a900 815
75a012fe 816Bump the perlXYZ version number.
7277a900 817
75a012fe 818First, create a new empty perlNNNdelta.pod file for the current release + 1;
819see F<Porting/how_to_write_a_perldelta.pod>.
7277a900 820
75a012fe 821You should be able to do this by just copying in a skeleton template and
822then doing a quick fix up of the version numbers, e.g.
7277a900 823
75a012fe 824 $ cp -i Porting/perldelta_template pod/perl5102delta.pod
825 $ (edit it)
826 $ git add pod/perl5102delta.pod
7277a900 827
75a012fe 828Edit F<pod.lst>: add the new entry, flagged as 'D', and unflag the previous
829entry from being 'D'; for example:
830
831 -D perl5101delta Perl changes in version 5.10.1
832 +D perl5102delta Perl changes in version 5.10.2
833 + perl5101delta Perl changes in version 5.10.1
7277a900 834
75a012fe 835Run C<perl pod/buildtoc --build-all> to update the F<perldelta> version in
836the following files:
57433fbf 837
838 MANIFEST
75a012fe 839 Makefile.SH
840 pod.lst
57433fbf 841 pod/perl.pod
57433fbf 842 vms/descrip_mms.template
75a012fe 843 win32/Makefile
844 win32/makefile.mk
845 win32/pod.mak
846
847Then manually edit (F<vms/descrip_mms.template> to bump the version
848in the following entry:
57433fbf 849
75a012fe 850 [.pod]perldelta.pod : [.pod]perl5101delta.pod
851
852XXX this previous step needs to fixed to automate it in pod/buildtoc.
853
854Manually update references to the perlNNNdelta version in these files:
855
856 INSTALL
857 README
858
859Edit the previous delta file to change the C<NAME> from C<perldelta>
860to C<perlNNNdelta>.
861
862These two lists of files probably aren't exhaustive; do a recursive grep
863on the previous filename to look for suitable candidates that may have
864been missed.
865
866Finally, commit:
867
868 $ git commit -a -m 'create perlXXXdelta'
869
870At this point you may want to compare the commit with a previous bump to
871see if they look similar. See commit ca8de22071 for an example of a
872previous version bump.
57433fbf 873
874=item *
875
8c35d285 876I<You MUST SKIP this step for SNAPSHOT, RC, BLEAD>
dc0a62a1 877
8c35d285 878If this was a maint release, then edit F<Porting/mergelog> to change
879all the C<d> (deferred) flags to C<.> (needs review).
addebd58 880
addebd58 881=item *
882
8c35d285 883I<You MUST SKIP this step for SNAPSHOT, RC, BLEAD>
addebd58 884
8c35d285 885If this was a major release (5.x.0), then create a new maint branch
886based on the commit tagged as the current release and bump the version
887in the blead branch in git, e.g. 5.12.0 to 5.13.0.
addebd58 888
889[ XXX probably lots more stuff to do, including perldelta,
f6af4394 890C<lib/feature.pm> ]
7277a900 891
8c35d285 892XXX need a git recipe
addebd58 893
894=item *
895
8c35d285 896I<You MUST SKIP this step for SNAPSHOT, RC, BLEAD>
897
75a012fe 898Copy the perlNNNdelta.pod for this release into the other branches; for
899example:
7277a900 900
75a012fe 901 $ cp -i ../5.10.x/pod/perl5101delta.pod pod/ # for example
902 $ git add pod/perl5101delta.pod
903
904Edit F<pod.lst> to add an entry for the file, e.g.:
905
906 perl5101delta Perl changes in version 5.10.1
907
908Then rebuild various files:
7277a900 909
75a012fe 910 $ perl pod/buildtoc --build-all
911
912Finally, commit:
913
914 $ git commit -a -m 'add perlXXXdelta'
7277a900 915
f6af4394 916=item *
7277a900 917
8c35d285 918I<You MUST SKIP this step for SNAPSHOT>
919
f6af4394 920Make sure any recent F<pod/perlhist.pod> entries are copied to
921F<perlhist.pod> on other branches; typically the RC* and final entries,
922e.g.
7277a900 923
f6af4394 924 5.8.9-RC1 2008-Nov-10
925 5.8.9-RC2 2008-Dec-06
926 5.8.9 2008-Dec-14
7277a900 927
6e40fbf9 928=item *
929
8c35d285 930I<You MUST RETIRE to your preferred PUB, CAFE or SEASIDE VILLA for some much-needed
931rest and relaxation>.
932
933Thanks for releasing perl!
934
7277a900 935=back
936
937=head1 SOURCE
938
f6af4394 939Based on
940http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2009-05/msg00608.html,
941plus a whole bunch of other sources, including private correspondence.
7277a900 942
943=cut
944