This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Embed.t fails on Win32
[perl5.git] / Porting / makerel
CommitLineData
08aa1457 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.
08aa1457 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
12use ExtUtils::Manifest qw(fullcheck);
13
14$|=1;
15$relroot = ".."; # XXX make an option
16
17die "Must be in root of the perl source tree.\n"
18 unless -f "./MANIFEST" and -f "patchlevel.h";
19
3ffabb8c
GS
20open PATCHLEVEL,"<patchlevel.h" or die;
21my @patchlevel_h = <PATCHLEVEL>;
22close PATCHLEVEL;
d4257220 23my $patchlevel_h = join "", grep { /^#\s*define/ } @patchlevel_h;
08aa1457 24print $patchlevel_h;
93136620 25$revision = $1 if $patchlevel_h =~ /PERL_REVISION\s+(\d+)/;
d4257220
GS
26$patchlevel = $1 if $patchlevel_h =~ /PERL_VERSION\s+(\d+)/;
27$subversion = $1 if $patchlevel_h =~ /PERL_SUBVERSION\s+(\d+)/;
55d729e4 28die "Unable to parse patchlevel.h" unless $subversion >= 0;
93136620
GS
29$vers = sprintf("%d.%d.%d", $revision, $patchlevel, $subversion);
30$vms_vers = sprintf("%d_%d_%d", $revision, $patchlevel, $subversion);
08aa1457 31
3ffabb8c
GS
32# fetch list of local patches
33my (@local_patches, @lpatch_tags, $lpatch_tags);
34@local_patches = grep { /^static.*local_patches/../^};/ } @patchlevel_h;
35@local_patches = grep { !/^\s*,?NULL/ } @local_patches;
36@lpatch_tags = map { /^\s*,"(\w+)/ } @local_patches;
37$lpatch_tags = join "-", @lpatch_tags;
38
2a7df08c 39$perl = "perl-$vers";
f27ffc4a 40$reldir = "$perl";
3ffabb8c 41$reldir .= "-$lpatch_tags" if $lpatch_tags;
08aa1457 42
f27ffc4a 43print "\nMaking a release for $perl in $relroot/$reldir\n\n";
08aa1457 44
08aa1457 45print "Cross-checking the MANIFEST...\n";
46($missfile, $missentry) = fullcheck();
3e3baf6d
TB
47warn "Can't make a release with MANIFEST files missing.\n" if @$missfile;
48warn "Can't make a release with files not listed in MANIFEST.\n" if @$missentry;
90248788
TB
49if ("@$missentry" =~ m/\.orig\b/) {
50 # Handy listing of find command and .orig files from patching work.
51 # I tend to run 'xargs rm' and copy and paste the file list.
52 my $cmd = "find . -name '*.orig' -print";
53 print "$cmd\n";
54 system($cmd);
55}
3e3baf6d 56die "Aborted.\n" if @$missentry or @$missfile;
08aa1457 57print "\n";
58
b59922b7
GS
59# VMS no longer has hardcoded version numbers descrip.mms
60#print "Updating VMS version specific files with $vms_vers...\n";
61#system("perl -pi -e 's/^\QPERL_VERSION = \E\d\_\d+(\s*\#)/PERL_VERSION = $vms_vers$1/' vms/descrip.mms");
55d729e4
GS
62
63
48e117bb
GS
64
65print "Creating $relroot/$reldir release directory...\n";
66die "$relroot/$reldir release directory already exists\n" if -e "$relroot/$reldir";
67die "$relroot/$reldir.tar.gz release file already exists\n" if -e "$relroot/$reldir.tar.gz";
68mkdir("$relroot/$reldir", 0755) or die "mkdir $relroot/$reldir: $!\n";
69print "\n";
70
71
72print "Copying files to release directory...\n";
73# ExtUtils::Manifest maniread does not preserve the order
74$cmd = "awk '{print \$1}' MANIFEST | cpio -pdm $relroot/$reldir";
75system($cmd) == 0 or die "$cmd failed";
76print "\n";
77
6e24577b 78chdir "$relroot/$reldir" or die $!;
48e117bb 79
08aa1457 80print "Setting file permissions...\n";
bf955a65
GS
81system("find . -type f -print | xargs chmod 0444");
82system("find . -type d -print | xargs chmod 0755");
e619572c
JH
83system("find t ext lib -name '*.t' -print | xargs chmod +x");
84system("find t ext lib -name 'test.pl' -print | xargs chmod +x");
48e117bb 85my @exe = qw(
08aa1457 86 Configure
87 configpm
08aa1457 88 embed.pl
89 installperl
90 installman
91 keywords.pl
08aa1457 92 opcode.pl
93 perly.fixer
94 t/TEST
08aa1457 95 *.SH
96 vms/ext/Stdio/test.pl
97 vms/ext/filespec.t
08aa1457 98 x2p/*.SH
bb304ec8
JH
99 Porting/findrfuncs
100 Porting/genlog
08aa1457 101 Porting/makerel
bb304ec8
JH
102 Porting/p4d2p
103 Porting/p4desc
a619eb9e 104 Porting/p4genpatch
bb304ec8
JH
105 Porting/patchls
106 Porting/*.pl
e619572c
JH
107 mpeix/nm
108 mpeix/relink
08aa1457 109);
110system("chmod +x @exe");
6e24577b 111
f7f713ed 112my @writables = qw(
f3513db0
JH
113 NetWare/config_H.wc
114 NetWare/Makefile
ac634a9a
JH
115 keywords.h
116 opcode.h
117 opnames.h
118 pp_proto.h
119 pp.sym
120 proto.h
f7f713ed
GS
121 embed.h
122 embedvar.h
f7f713ed 123 global.sym
ac634a9a
JH
124 pod/perlintern.pod
125 pod/perlapi.pod
ac634a9a
JH
126 perlapi.h
127 perlapi.c
128 ext/ByteLoader/byterun.h
129 ext/ByteLoader/byterun.c
130 ext/B/B/Asmdata.pm
799d3a59
JH
131 ext/Devel/PPPort/PPPort.xs
132 ext/Devel/PPPort/module2.c
133 ext/Devel/PPPort/module3.c
f7f713ed 134 regnodes.h
0ebdc6d5 135 warnings.h
ac634a9a
JH
136 lib/warnings.pm
137 vms/perly_c.vms
138 vms/perly_h.vms
139 win32/Makefile
140 win32/makefile.mk
141 win32/config_H.bc
f29c64d6 142 win32/config_H.gc
f7f713ed 143 win32/config_H.vc
f3513db0
JH
144 wince/config_H.ce
145 wince/Makefile.ce
f7f713ed
GS
146);
147system("chmod +w @writables");
148
6e24577b 149print "Adding CRs to DOSish files...\n";
48e117bb
GS
150my @crlf = qw(
151 djgpp/configure.bat
f3513db0 152 README.ce
48e117bb
GS
153 README.dos
154 README.win32
155 win32/Makefile
156 win32/makefile.mk
f3513db0 157 wince/Makefile.ce
dd01ab47
JH
158 wince/README.compile
159 wince/README.perlce
160 wince/registry.bat
48e117bb 161);
0ffbf418 162system("perl -pi -e 's/\015*\012/\015\012/' @crlf");
08aa1457 163print "\n";
164
6e24577b
GS
165chdir ".." or die $!;
166
08aa1457 167print "Creating and compressing the tar file...\n";
f27ffc4a 168my $src = (-e $perl) ? $perl : 'perl'; # 'perl' in maint branch
3ffabb8c 169$cmd = "tar cf - $reldir | gzip --best > $reldir.tar.gz";
08aa1457 170system($cmd) == 0 or die "$cmd failed";
171print "\n";
172
173system("ls -ld $perl*");