This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[inseperable differences up to perl 5.004_02]
[perl5.git] / Porting / makerel
1 #!/bin/env perl -w
2
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.
5 #
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.
9 #
10 # Tim Bunce, June 1997
11
12 use ExtUtils::Manifest qw(fullcheck);
13
14 $|=1;
15 $relroot = "..";        # XXX make an option
16
17 die "Must be in root of the perl source tree.\n"
18         unless -f "./MANIFEST" and -f "patchlevel.h";
19
20 $patchlevel_h = `grep '#define ' patchlevel.h`;
21 print $patchlevel_h;
22 $patchlevel = $1 if $patchlevel_h =~ /PATCHLEVEL\s+(\d+)/;
23 $subversion = $1 if $patchlevel_h =~ /SUBVERSION\s+(\d+)/;
24 die "Unable to parse patchlevel.h" unless $subversion > 0;
25 $vers = sprintf("5.%03d", $patchlevel);
26 $vers.= sprintf( "_%02d", $subversion) if $subversion;
27
28 $perl = "perl$vers";
29 $reldir = "$relroot/$perl";
30
31 print "\nMaking a release for $perl in $reldir\n\n";
32
33
34 print "Cross-checking the MANIFEST...\n";
35 ($missfile, $missentry) = fullcheck();
36 warn "Can't make a release with MANIFEST files missing.\n" if @$missfile;
37 warn "Can't make a release with files not listed in MANIFEST.\n" if @$missentry;
38 die "Aborted.\n" if @$missentry or @$missfile;
39 print "\n";
40
41
42 print "Setting file permissions...\n";
43 system("find . -type f -print | xargs chmod -w");
44 system("chmod +w configure"); # special case (see pumpkin.pod)
45 @exe = qw(
46     Configure
47     configpm
48     configure
49     embed.pl
50     installperl
51     installman
52     keywords.pl
53     myconfig
54     opcode.pl
55     perly.fixer
56     t/TEST
57     t/*/*.t
58     *.SH
59     vms/ext/Stdio/test.pl
60     vms/ext/filespec.t
61     vms/fndvers.com
62     x2p/*.SH
63     Porting/patchls
64     Porting/makerel
65 );
66 system("chmod +x @exe");
67 print "\n";
68
69
70 print "Creating $reldir release directory...\n";
71 die "$reldir release directory already exists\n"   if -e "../$perl";
72 die "$reldir.tar.gz release file already exists\n" if -e "../$perl.tar.gz";
73 mkdir($reldir, 0755) or die "mkdir $reldir: $!\n";
74 print "\n";
75
76
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 $reldir";
80 system($cmd) == 0 or die "$cmd failed";
81 print "\n";
82
83 chdir $relroot or die $!;
84
85 print "Creating and compressing the tar file...\n";
86 $cmd = "tar cf - $perl | gzip --best > $perl.tar.gz";
87 system($cmd) == 0 or die "$cmd failed";
88 print "\n";
89
90 system("ls -ld $perl*");