This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
mktables: Improve \p{xids} defn for early Unicodes
[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
5bd03515 220 pp_ctl.c
ae1b7029
DM
221);
222my @SKIP_DIRS = qw(
223 ext
224 lib
225 pod
d634733c 226 cpan
ae1b7029
DM
227 t
228);
229
230my @mani_files = sort keys %{ExtUtils::Manifest::maniread('MANIFEST')};
231my %mani_files = map { ($_ => 1) } @mani_files;
232die "No entries found in MANIFEST; aborting\n" unless @mani_files;
233
dc40e497 234if ($opts{c} or $opts{s} or $opts{i}) {
ae1b7029
DM
235 do_scan();
236}
237elsif ($opts{u}) {
238 do_update();
239}
240else {
47e01c32 241 usage('one of -c, -s or -u must be specified');
ae1b7029
DM
242}
243exit 0;
244
245
246
247
248sub do_scan {
249 for my $file (@mani_files) {
250 next if grep $file =~ m{$_/}, @SKIP_DIRS;
251 if ($SKIP_FILES{$file}) {
252 warn "(skipping $file)\n";
253 next;
254 }
204fc54e 255 open my $fh, '<', $file;
ae1b7029 256 my $header = 0;
dc40e497
LB
257 my @stat = stat $file;
258 my $mode = $stat[2];
259 my $file_changed = 0;
260 my $new_contents = '';
ae1b7029 261
582c9380
LB
262 while (my $line = <$fh>) {
263 my $oldline = $line;
ae1b7029
DM
264 for my $map (@maps) {
265 my ($pat, $sub, $expected, $file_pat) = @$map;
266
267 next if defined $file_pat and $file !~ $file_pat;
582c9380 268 next unless $line =~ $pat;
ae1b7029
DM
269 my ($got, $replacement) = $sub->();
270
271 if ($opts{c}) {
272 # only report unexpected
273 next unless defined $expected and $got ne $expected;
274 }
582c9380 275 $line =~ s/$pat/$replacement/
ae1b7029 276 or die "Internal error: substitution failed: [$pat]\n";
582c9380
LB
277 }
278 $new_contents .= $line if $opts{i};
279 if ($line ne $oldline) {
280 $file_changed = 1;
281 if ($opts{s}) {
282 print "\n$file\n" unless $header;
283 $header=1;
284 printf "\n%5d: -%s +%s", $., $oldline, $line;
ae1b7029 285 }
ae1b7029 286 }
dc40e497
LB
287 }
288 if ($opts{i} && $file_changed) {
289 warn "Updating $file inplace\n";
290 open my $fh, '>', $file;
291 binmode $fh;
292 print $fh $new_contents;
293 close $fh;
294 chmod $mode & 0777, $file;
ae1b7029
DM
295 }
296 }
297 warn "(skipped $_/*)\n" for @SKIP_DIRS;
298}
299
300sub do_update {
301
302 my %changes;
303 my $file;
304 my $line;
305
306 # read in config
307
308 while (<STDIN>) {
309 next unless /\S/;
310 if (/^(\S+)$/) {
311 $file = $1;
312 die "No such file in MANIFEST: '$file'\n" unless $mani_files{$file};
313 die "file already seen; '$file'\n" if exists $changes{$file};
314 undef $line;
315 }
316 elsif (/^\s+(\d+): -(.*)/) {
317 my $old;
318 ($line, $old) = ($1,$2);
47e01c32 319 die "$.: old line without preceding filename\n"
ae1b7029
DM
320 unless defined $file;
321 die "Dup line number: $line\n" if exists $changes{$file}{$line};
322 $changes{$file}{$line}[0] = $old;
323 }
324 elsif (/^\s+\+(.*)/) {
325 my $new = $1;
326 die "$.: replacement line seen without old line\n" unless $line;
327 $changes{$file}{$line}[1] = $new;
328 undef $line;
329 }
330 else {
331 die "Unexpected line at ;line $.: $_\n";
332 }
333 }
334
335 # suck in file contents to memory, then update that in-memory copy
336
337 my %contents;
338 for my $file (sort keys %changes) {
204fc54e 339 open my $fh, '<', $file;
33c1015f 340 binmode $fh;
ae1b7029
DM
341 $contents{$file} = [ <$fh> ];
342 chomp @{$contents{$file}};
204fc54e 343 close $fh;
ae1b7029
DM
344
345 my $entries = $changes{$file};
346 for my $line (keys %$entries) {
347 die "$file: no such line: $line\n"
348 unless defined $contents{$file}[$line-1];
349 if ($contents{$file}[$line-1] ne $entries->{$line}[0]) {
350 die "$file: line mismatch at line $line:\n"
351 . "File: [$contents{$file}[$line-1]]\n"
352 . "Config: [$entries->{$line}[0]]\n"
353 }
354 $contents{$file}[$line-1] = $entries->{$line}[1];
355 }
356 }
357
358 # check the temp files don't already exist
359
360 for my $file (sort keys %contents) {
361 my $nfile = "$file-new";
362 die "$nfile already exists in MANIFEST; aborting\n"
363 if $mani_files{$nfile};
364 }
365
366 # write out the new files
367
368 for my $file (sort keys %contents) {
369 my $nfile = "$file-new";
204fc54e 370 open my $fh, '>', $nfile;
33c1015f 371 binmode $fh;
ae1b7029 372 print $fh $_, "\n" for @{$contents{$file}};
204fc54e 373 close $fh;
ae1b7029 374
204fc54e 375 my @stat = stat $file;
ae1b7029
DM
376 my $mode = $stat[2];
377 die "stat $file fgailed to give a mode!\n" unless defined $mode;
204fc54e 378 chmod $mode & 0777, $nfile;
ae1b7029
DM
379 }
380
381 # and rename them
382
383 for my $file (sort keys %contents) {
384 my $nfile = "$file-new";
385 warn "updating $file ...\n";
204fc54e 386 rename $nfile, $file;
ae1b7029
DM
387 }
388}
389