3 # A first attempt at some automated support for making a perl release.
4 # Very basic but functional - if you're on a unix system.
6 # No matter how automated this gets, you'll always need to read
7 # and re-read pumpkin.pod checking for things to be done at various
8 # stages of the process.
10 # Tim Bunce, June 1997
12 use ExtUtils::Manifest qw(fullcheck);
15 $relroot = ".."; # XXX make an option
17 die "Must be in root of the perl source tree.\n"
18 unless -f "./MANIFEST" and -f "patchlevel.h";
20 open PATCHLEVEL,"<patchlevel.h" or die;
21 my @patchlevel_h = <PATCHLEVEL>;
23 my $patchlevel_h = join "", grep { /^#define/ } @patchlevel_h;
25 $patchlevel = $1 if $patchlevel_h =~ /PATCHLEVEL\s+(\d+)/;
26 $subversion = $1 if $patchlevel_h =~ /SUBVERSION\s+(\d+)/;
27 die "Unable to parse patchlevel.h" unless $subversion >= 0;
28 $vers = sprintf("5.%03d", $patchlevel);
29 $vms_vers = sprintf("5_%03d", $patchlevel);
31 $vers.= sprintf( "_%02d", $subversion);
32 $vms_vers.= sprintf( "%02d", $subversion);
37 # fetch list of local patches
38 my (@local_patches, @lpatch_tags, $lpatch_tags);
39 @local_patches = grep { /^static.*local_patches/../^};/ } @patchlevel_h;
40 @local_patches = grep { !/^\s*,?NULL/ } @local_patches;
41 @lpatch_tags = map { /^\s*,"(\w+)/ } @local_patches;
42 $lpatch_tags = join "-", @lpatch_tags;
46 $reldir .= "-$lpatch_tags" if $lpatch_tags;
48 print "\nMaking a release for $perl in $relroot/$reldir\n\n";
50 print "Cross-checking the MANIFEST...\n";
51 ($missfile, $missentry) = fullcheck();
52 warn "Can't make a release with MANIFEST files missing.\n" if @$missfile;
53 warn "Can't make a release with files not listed in MANIFEST.\n" if @$missentry;
54 if ("@$missentry" =~ m/\.orig\b/) {
55 # Handy listing of find command and .orig files from patching work.
56 # I tend to run 'xargs rm' and copy and paste the file list.
57 my $cmd = "find . -name '*.orig' -print";
61 die "Aborted.\n" if @$missentry or @$missfile;
64 # VMS no longer has hardcoded version numbers descrip.mms
65 #print "Updating VMS version specific files with $vms_vers...\n";
66 #system("perl -pi -e 's/^\QPERL_VERSION = \E\d\_\d+(\s*\#)/PERL_VERSION = $vms_vers$1/' vms/descrip.mms");
70 print "Creating $relroot/$reldir release directory...\n";
71 die "$relroot/$reldir release directory already exists\n" if -e "$relroot/$reldir";
72 die "$relroot/$reldir.tar.gz release file already exists\n" if -e "$relroot/$reldir.tar.gz";
73 mkdir("$relroot/$reldir", 0755) or die "mkdir $relroot/$reldir: $!\n";
77 print "Copying files to release directory...\n";
78 # ExtUtils::Manifest maniread does not preserve the order
79 $cmd = "awk '{print \$1}' MANIFEST | cpio -pdm $relroot/$reldir";
80 system($cmd) == 0 or die "$cmd failed";
83 chdir "$relroot/$reldir" or die $!;
85 print "Setting file permissions...\n";
86 system("find . -type f -print | xargs chmod -w");
87 system("find . -type d -print | xargs chmod g-s");
88 system("find t -name '*.t' -print | xargs chmod +x");
102 vms/ext/Stdio/test.pl
108 system("chmod +x @exe");
110 print "Adding CRs to DOSish files...\n";
118 system("perl -pi -e 's/\$/\\r/' @crlf");
121 chdir ".." or die $!;
123 print "Creating and compressing the tar file...\n";
124 my $src = (-e $perl) ? $perl : 'perl'; # 'perl' in maint branch
125 $cmd = "tar cf - $reldir | gzip --best > $reldir.tar.gz";
126 system($cmd) == 0 or die "$cmd failed";
129 system("ls -ld $perl*");