This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make sure the CORE package is always called CORE
[perl5.git] / Porting / bump-perl-version
CommitLineData
ae1b7029
DM
1#!/usr/bin/perl
2#
3# bump-perl-version, DAPM 14 Jul 2009
4#
5# A utility to find, and optionally bump, references to the perl version
6# number in various files within the perl source
7#
8# It's designed to work in two phases. First, when run with -s (scan),
9# it searches all the files in MANIFEST looking for strings that appear to
10# match the current perl version (or which it knows are *supposed* to
11# contain the current version), and produces a list of them to stdout,
12# along with a suggested edit. For example:
13#
14# $ Porting/bump-perl-version -s 5.10.0 5.10.1 > /tmp/scan
15# $ cat /tmp/scan
16# Porting/config.sh
17#
18# 52: -archlib='/opt/perl/lib/5.10.0/i686-linux-64int'
19# +archlib='/opt/perl/lib/5.10.1/i686-linux-64int'
20# ....
21#
22# At this point there will be false positives. Edit the file to remove
23# those changes you don't want made. Then in the second phase, feed that
24# list in, and it will change those lines in the files:
25#
26# $ Porting/bump-perl-version -u < /tmp/scan
27#
28# (so line 52 of Porting/config.sh is now updated)
29
30# This utility 'knows' about certain files and formats, and so can spot
31# 'hidden' version numbers, like PERL_SUBVERSION=9.
32#
33# A third variant makes use of this knowledge to check that all the things
34# it knows about are at the current version:
35#
36# $ Porting/bump-perl-version -c 5.10.0
37#
38# XXX this script hasn't been tested against a major version bump yet,
39# eg 5.11.0 to 5.12.0; there may be things it missed - DAPM 14 Jul 09
40#
41# Note there are various files and directories that it skips; these are
42# ones that are unlikely to contain anything needing bumping, but which
43# will generate lots fo false positives (eg pod/*). These are listed on
44# STDERR as they are skipped.
45
46use strict;
47use warnings;
204fc54e 48use autodie;
ae1b7029
DM
49use Getopt::Std;
50use ExtUtils::Manifest;
51
52
53sub usage { die <<EOF }
54
55@_
56
57usage: $0 -c <C.C.C>
58 -s <C.C.C> <N.N.N>
59 -u
dc40e497 60 -i <C.C.C> <N.N.N>
ae1b7029
DM
61
62 -c check files and warn if any known string values (eg
63 PERL_SUBVERSION) don't match the specified version
64
65 -s scan files and produce list of possible change lines to stdout
66
67 -u read in the scan file from stdin, and change all the lines specified
68
dc40e497
LB
69 -i scan files and make changes inplace
70
ae1b7029
DM
71 C.C.C the current perl version, eg 5.10.0
72 N.N.N the new perl version, eg 5.10.1
73EOF
74
75my %opts;
dc40e497 76getopts('csui', \%opts) or usage;
ae1b7029 77if ($opts{u}) {
47e01c32 78 @ARGV == 0 or usage('no version version numbers should be specified');
ae1b7029
DM
79 # fake to stop warnings when calculating $oldx etc
80 @ARGV = qw(99.99.99 99.99.99);
81}
82elsif ($opts{c}) {
83 @ARGV == 1 or usage('required one version number');
84 push @ARGV, $ARGV[0];
85}
86else {
87 @ARGV == 2 or usage('require two version numbers');
88}
dc40e497 89usage('only one of -c, -s, -u and -i') if keys %opts > 1;
ae1b7029
DM
90
91my ($oldx, $oldy, $oldz) = $ARGV[0] =~ /^(\d+)\.(\d+)\.(\d+)$/
92 or usage("bad version: $ARGV[0]");
93my ($newx, $newy, $newz) = $ARGV[1] =~ /^(\d+)\.(\d+)\.(\d+)$/
94 or usage("bad version: $ARGV[1]");
95
96my $old_decimal = sprintf "%d.%03d%03d", $oldx, $oldy, $oldz; # 5.011001
97
98# each entry is
99# 0 a regexp that matches strings that might contain versions;
100# 1 a sub that returns two strings based on $1 etc values:
101# * string containing captured values (for -c)
102# * a string containing the replacement value
103# 2 what we expect the sub to return as its first arg; undef implies
104# don't match
105# 3 a regex restricting which files this applies to (undef is all files)
106#
107# Note that @maps entries are checks in order, and only the first to match
108# is used.
109
110my @maps = (
111 [
112 qr{^((?:api_)?version(?:=|\s+)'?) (\d+) ('?) (?!\.)}x,
113 sub { $2, "$1$newy$3" },
114 $oldy,
115 qr/config/,
116 ],
117 [
118 qr{^(subversion(?:=|\s+)'?) (\d+) ('?) (?!\.)}x,
119 sub { $2, "$1$newz$3" },
120 $oldz,
121 qr/config/,
122 ],
123 [
124 qr{^(api_subversion(?:=|\s+)'?) (\d+) ('?) (?!\.)}x,
544af516
FR
125 sub { $2, ($newy % 2) ? "$1$newz$3" : "${1}0$3" },
126 ($oldy % 2) ? $oldz : 0,
ae1b7029
DM
127 qr/config/,
128 ],
129 [
130 qr{^(api_versionstring(?:=|\s+)'?) ([\d\.]+) ('?) (?!\.)}x,
544af516
FR
131 sub { $2, ($newy % 2) ? "$1$newx.$newy.$newz$3": "$1$newx.$newy.0$3" },
132 ($oldy % 2) ? "$oldx.$oldy.$oldz" : "$oldx.$oldy.0",
ae1b7029
DM
133 qr/config/,
134 ],
135 [
136 qr{(version\s+'?) (\d+) ('?\s+subversion\s+'?) (\d+) ('?) (?!\.)}x,
137 sub { "$2-$4", "$1$newy$3$newz$5" },
138 "$oldy-$oldz",
139 qr/config/,
140 ],
141 [
142 qr{\b (PERL_(?:API_)?VERSION(?:=|\s+)'?) (\d+) ('?) (?!\.)}x,
143 sub { $2, "$1$newy$3"},
144 $oldy,
145 ],
146 [
147 qr{\b (PERL_SUBVERSION(?:=|\s+)'?) (\d+) ('?) (?!\.)}x,
148 sub { $2, "$1$newz$3"},
544af516 149 ($oldy % 2) ? $oldz : 0,
ae1b7029
DM
150 ],
151 [
152 qr{\b (PERL_API_SUBVERSION(?:=|\s+)'?) (\d+) ('?) (?!\.)}x,
544af516
FR
153 sub { $2, ($newy % 2) ? "$1$newz$3" : "${1}0$3" },
154 $oldz,
ae1b7029
DM
155 ],
156 # these two formats are in README.vms
157 [
158 qr{\b perl-(\d+\^\.\d+\^\.\d+) \b}x,
159 sub { $1, "perl-$newx^.$newy^.$newz"},
160 undef,
161 ],
162 [
163 qr{\b ($oldx _ $oldy _$oldz) \b}x,
164 sub { $1, ($newx . '_' . $newy . '_' . $newz)},
165 undef,
166 ],
167 # 5.8.9
168 [
8b8cdb3a 169 qr{ $oldx\.$oldy\.$oldz \b}x,
ae1b7029
DM
170 sub {"", "$newx.$newy.$newz"},
171 undef,
172 ],
173
174 # 5.008009
175 [
8b8cdb3a 176 qr{ $old_decimal \b}x,
ae1b7029
DM
177 sub {"", sprintf "%d.%03d%03d", $newx, $newy, $newz },
178 undef,
179 ],
180
d4f05c0b 181 # perl511, perl511.dll, perl511.lib, perl511s.lib, libperl511.a
7dfca73b 182 [
d4f05c0b
VP
183 qr{\b ((?:lib)?) perl (\d\d\d) (s?) \b }x,
184 sub {$2, "$1perl$newx$newy$3" },
7dfca73b 185 "$oldx$oldy",
d9f179d8 186 qr/win32|hints/, # README.win32, win32/*, hints/*
7dfca73b
JD
187 ],
188
2e55877c
DL
189 # microperl locations should be bumped for major versions
190 [
191 qr{(/)(\d\.\d{2})(["'/])},
192 sub { $2, "$1$newx.$newy$3" },
193 "$oldx.$oldy",
194 qr/uconfig/,
195 ],
196
582c9380
LB
197 # rename perl-5^.15^.1.dirperl-5_15_1.dir in README.vms
198 [
199 qr{\sperl-(\d+)_(\d+)_(\d+)\.dir}x,
684f9cbe 200 sub { " perl-${1}_${2}_${3}.dir", " perl-${newx}_${newy}_${newz}.dir" },
582c9380
LB
201 " perl-${oldx}_${oldy}_{$oldz}.dir",
202 qr/README.vms/,
203 ],
204
ae1b7029
DM
205);
206
207
208# files and dirs that we likely don't want to change version numbers on.
209
210my %SKIP_FILES = map { ($_ => 1) } qw(
211 Changes
212 MANIFEST
dac70e9b
Z
213 Porting/Maintainers.pl
214 Porting/acknowledgements.pl
87f4ab41 215 Porting/epigraphs.pod
ae1b7029 216 Porting/how_to_write_a_perldelta.pod
5bd03515 217 Porting/release_managers_guide.pod
87f4ab41 218 Porting/release_schedule.pod
8b8cdb3a 219 Porting/bump-perl-version
ae1b7029 220 pod.lst
5bd03515 221 pp_ctl.c
ae1b7029
DM
222);
223my @SKIP_DIRS = qw(
224 ext
225 lib
226 pod
d634733c 227 cpan
ae1b7029
DM
228 t
229);
230
231my @mani_files = sort keys %{ExtUtils::Manifest::maniread('MANIFEST')};
232my %mani_files = map { ($_ => 1) } @mani_files;
233die "No entries found in MANIFEST; aborting\n" unless @mani_files;
234
dc40e497 235if ($opts{c} or $opts{s} or $opts{i}) {
ae1b7029
DM
236 do_scan();
237}
238elsif ($opts{u}) {
239 do_update();
240}
241else {
47e01c32 242 usage('one of -c, -s or -u must be specified');
ae1b7029
DM
243}
244exit 0;
245
246
247
248
249sub do_scan {
250 for my $file (@mani_files) {
251 next if grep $file =~ m{$_/}, @SKIP_DIRS;
252 if ($SKIP_FILES{$file}) {
253 warn "(skipping $file)\n";
254 next;
255 }
204fc54e 256 open my $fh, '<', $file;
ae1b7029 257 my $header = 0;
dc40e497
LB
258 my @stat = stat $file;
259 my $mode = $stat[2];
260 my $file_changed = 0;
261 my $new_contents = '';
ae1b7029 262
582c9380
LB
263 while (my $line = <$fh>) {
264 my $oldline = $line;
ae1b7029
DM
265 for my $map (@maps) {
266 my ($pat, $sub, $expected, $file_pat) = @$map;
267
268 next if defined $file_pat and $file !~ $file_pat;
582c9380 269 next unless $line =~ $pat;
ae1b7029
DM
270 my ($got, $replacement) = $sub->();
271
272 if ($opts{c}) {
273 # only report unexpected
274 next unless defined $expected and $got ne $expected;
275 }
582c9380 276 $line =~ s/$pat/$replacement/
ae1b7029 277 or die "Internal error: substitution failed: [$pat]\n";
582c9380
LB
278 }
279 $new_contents .= $line if $opts{i};
280 if ($line ne $oldline) {
281 $file_changed = 1;
282 if ($opts{s}) {
283 print "\n$file\n" unless $header;
284 $header=1;
285 printf "\n%5d: -%s +%s", $., $oldline, $line;
ae1b7029 286 }
ae1b7029 287 }
dc40e497
LB
288 }
289 if ($opts{i} && $file_changed) {
290 warn "Updating $file inplace\n";
291 open my $fh, '>', $file;
292 binmode $fh;
293 print $fh $new_contents;
294 close $fh;
295 chmod $mode & 0777, $file;
ae1b7029
DM
296 }
297 }
298 warn "(skipped $_/*)\n" for @SKIP_DIRS;
299}
300
301sub do_update {
302
303 my %changes;
304 my $file;
305 my $line;
306
307 # read in config
308
309 while (<STDIN>) {
310 next unless /\S/;
311 if (/^(\S+)$/) {
312 $file = $1;
313 die "No such file in MANIFEST: '$file'\n" unless $mani_files{$file};
314 die "file already seen; '$file'\n" if exists $changes{$file};
315 undef $line;
316 }
317 elsif (/^\s+(\d+): -(.*)/) {
318 my $old;
319 ($line, $old) = ($1,$2);
47e01c32 320 die "$.: old line without preceding filename\n"
ae1b7029
DM
321 unless defined $file;
322 die "Dup line number: $line\n" if exists $changes{$file}{$line};
323 $changes{$file}{$line}[0] = $old;
324 }
325 elsif (/^\s+\+(.*)/) {
326 my $new = $1;
327 die "$.: replacement line seen without old line\n" unless $line;
328 $changes{$file}{$line}[1] = $new;
329 undef $line;
330 }
331 else {
332 die "Unexpected line at ;line $.: $_\n";
333 }
334 }
335
336 # suck in file contents to memory, then update that in-memory copy
337
338 my %contents;
339 for my $file (sort keys %changes) {
204fc54e 340 open my $fh, '<', $file;
33c1015f 341 binmode $fh;
ae1b7029
DM
342 $contents{$file} = [ <$fh> ];
343 chomp @{$contents{$file}};
204fc54e 344 close $fh;
ae1b7029
DM
345
346 my $entries = $changes{$file};
347 for my $line (keys %$entries) {
348 die "$file: no such line: $line\n"
349 unless defined $contents{$file}[$line-1];
350 if ($contents{$file}[$line-1] ne $entries->{$line}[0]) {
351 die "$file: line mismatch at line $line:\n"
352 . "File: [$contents{$file}[$line-1]]\n"
353 . "Config: [$entries->{$line}[0]]\n"
354 }
355 $contents{$file}[$line-1] = $entries->{$line}[1];
356 }
357 }
358
359 # check the temp files don't already exist
360
361 for my $file (sort keys %contents) {
362 my $nfile = "$file-new";
363 die "$nfile already exists in MANIFEST; aborting\n"
364 if $mani_files{$nfile};
365 }
366
367 # write out the new files
368
369 for my $file (sort keys %contents) {
370 my $nfile = "$file-new";
204fc54e 371 open my $fh, '>', $nfile;
33c1015f 372 binmode $fh;
ae1b7029 373 print $fh $_, "\n" for @{$contents{$file}};
204fc54e 374 close $fh;
ae1b7029 375
204fc54e 376 my @stat = stat $file;
ae1b7029
DM
377 my $mode = $stat[2];
378 die "stat $file fgailed to give a mode!\n" unless defined $mode;
204fc54e 379 chmod $mode & 0777, $nfile;
ae1b7029
DM
380 }
381
382 # and rename them
383
384 for my $file (sort keys %contents) {
385 my $nfile = "$file-new";
386 warn "updating $file ...\n";
204fc54e 387 rename $nfile, $file;
ae1b7029
DM
388 }
389}
390