diff options
author | Jesse Vincent <jesse@bestpractical.com> | 2009-07-28 14:43:46 -0400 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2009-08-03 20:56:56 +0100 |
commit | 05e675a7ebb38557af601cbde6eed8db71264aad (patch) | |
tree | 078fb9e48299aab6d97db49a9c6360db902eeb36 /Porting/release_managers_guide.pod | |
parent | fabae2c30b8ed6a8dd8a8f194196b1655d54d904 (diff) | |
download | perl-05e675a7ebb38557af601cbde6eed8db71264aad.tar.gz |
A first stab at walking through the release-manager guide Primarily fixing bugs and clarifying prose.
(cherry picked from commit 46743ef75efb28381be7cd8b99f7312ccf91904a)
Diffstat (limited to 'Porting/release_managers_guide.pod')
-rw-r--r-- | Porting/release_managers_guide.pod | 49 |
1 files changed, 36 insertions, 13 deletions
diff --git a/Porting/release_managers_guide.pod b/Porting/release_managers_guide.pod index 3a91c9e475..2896716b07 100644 --- a/Porting/release_managers_guide.pod +++ b/Porting/release_managers_guide.pod @@ -36,7 +36,7 @@ The outline of a typical release cycle is as follows: including bumping the version to 5.10.2 ...a few weeks passes... - + perl-5.10.2-RC1 is released perl-5.10.2 is released @@ -65,21 +65,37 @@ state of VMS. If it's bad, think again. =item * +Configure and build perl so that you have a Makefile and porting tools: + + $ ./Configure -Dusedevel -des + $ make + +=item * + Rebuild META.yml: $ rm META.yml $ make META.yml -and commit it if it's changed. +Commit META.yml if it has changed: + + $ git commit -m 'Updating META.yml in preparation for release of 5.x.y' META.yml =item * Check that the manifest is sorted and correct: + $ make manisort $ make distclean - $ perl Porting/manisort $ perl Porting/manicheck + +Commit MANIFEST if it has changed: + + $ git commit -m 'Updating MANIFEST in preparation for release of 5.x.y' MANIFEST + + + =item * If this is a release candidate or final release, add an entry to @@ -94,12 +110,16 @@ append your name to C<THE KEEPERS OF THE PUMPKIN>. Build perl, then make sure it passes its own test suite, and installs. + $ ./Configure -des -Dusedevel -Dprefix=/tmp/perl-5.x.y-pretest + $ make test install + =item * Create a tarball. Use the C<-s> option to specify a suitable suffix for the tarball and directory name: $ cd root/of/perl/tree + $ make distclean $ git clean -xdf # make sure perl and git agree on files $ perl Porting/makerel -b -s `git describe` # for a snapshot @@ -121,12 +141,15 @@ have access to. =item * -Download the tarball to some other machine (for a release candidate, to -two or more servers: IRC is good for this). +Download the tarball to some other machine. For a release candidate, +you really want to test your tarball on two or more different platforms +and architectures. The #p5p IRC channel on irc.perl.org is a good place +to find willing victims. =item * -Check that C<./Configure -des && make all test> works in one place. +Check that C<./Configure -des && make all test> works on each test +machine. =item * @@ -136,7 +159,9 @@ Check that C<./Configure ... && make all test_harness install> works. Check that the output of C<perl -v> and C<perl -V> are as expected, especially as regards version numbers, patch and/or RC levels, and @INC -paths. Note that the results may be different without a F<.git/> directory, +paths. + +Note that the results may be different without a F<.git/> directory, which is why you should test from the tarball. =item * @@ -145,15 +170,13 @@ Bootstrap the CPAN client on the clean install. =item * -Install CPANPLUS. -XXX pick something new; this is now bundled +Install Inline.pm -=begin suggestion + perl -MCPAN -e'install Inline' -How about Inline. Install it, and then check that your perl can run this: - perl -lwe 'use Inline C => "int answer() { return 42;} "; print answer' +Check that your perl can run this: -=end + perl -lwe 'use Inline C => "int answer() { return 42;} "; print answer' =item * |