This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Regression test for 34394ecd - SVs that were only on the tmps stack leaked.
[perl5.git] / Porting / corelist.pl
CommitLineData
4a656c5e
RGS
1#!perl
2# Generates info for Module::CoreList from this perl tree
dc2f75c0 3# run this from the root of a perl tree
e1018a69
DM
4#
5# Data is on STDOUT.
6#
7# With an optional arg specifying the root of a CPAN mirror, outputs the
8# %upstream and %bug_tracker hashes too.
9
4a656c5e
RGS
10use strict;
11use warnings;
12use File::Find;
13use ExtUtils::MM_Unix;
dc2f75c0 14use version;
fb237dfd
NC
15use lib "Porting";
16use Maintainers qw(%Modules files_to_modules);
17use File::Spec;
dc2f75c0 18use Parse::CPAN::Meta;
a762e054 19use IPC::Cmd 'can_run';
4a656c5e 20
1f809cd9 21my $corelist_file = 'dist/Module-CoreList/lib/Module/CoreList.pm';
e1018a69 22
59189dd7 23my %lines;
fb237dfd
NC
24my %module_to_file;
25my %modlist;
e1018a69 26
dc2f75c0
JV
27die "usage: $0 [ cpan-mirror/ ] [ 5.x.y] \n" unless @ARGV <= 2;
28my $cpan = shift;
29my $raw_version = shift || $];
30my $perl_version = version->parse("$raw_version");
31my $perl_vnum = $perl_version->numify;
32my $perl_vstring = $perl_version->normal; # how do we get version.pm to not give us leading v?
33$perl_vstring =~ s/^v//;
fb237dfd 34
dc2f75c0
JV
35if ( !-f 'MANIFEST' ) {
36 die "Must be run from the root of a clean perl tree\n";
e1018a69
DM
37}
38
dc2f75c0
JV
39open( my $corelist_fh, '<', $corelist_file ) || die "Could not open $corelist_file: $!";
40my $corelist = join( '', <$corelist_fh> );
41
fb237dfd 42if ($cpan) {
dc2f75c0
JV
43 my $modlistfile = File::Spec->catfile( $cpan, 'modules', '02packages.details.txt' );
44 my $content;
45
46 my $fh;
47 if ( -e $modlistfile ) {
48 warn "Reading the module list from $modlistfile";
49 open $fh, '<', $modlistfile or die "Couldn't open $modlistfile: $!";
50 } elsif ( -e $modlistfile . ".gz" ) {
a762e054 51 my $zcat = can_run('gzcat') || can_run('zcat') or die "Can't find gzcat or zcat";
dc2f75c0 52 warn "Reading the module list from $modlistfile.gz";
a762e054 53 open $fh, '-|', "$zcat $modlistfile.gz" or die "Couldn't zcat $modlistfile.gz: $!";
dc2f75c0
JV
54 } else {
55 warn "About to fetch 02packages from ftp.funet.fi. This may take a few minutes\n";
56 $content = fetch_url('http://ftp.funet.fi/pub/CPAN/modules/02packages.details.txt');
57 unless ($content) {
58 die "Unable to read 02packages.details.txt from either your CPAN mirror or ftp.funet.fi";
59 }
60 }
61
62 if ( $fh and !$content ) {
63 local $/ = "\n";
64 $content = join( '', <$fh> );
fb237dfd
NC
65 }
66
dc2f75c0
JV
67 die "Incompatible modlist format"
68 unless $content =~ /^Columns: +package name, version, path/m;
69
fb237dfd
NC
70 # Converting the file to a hash is about 5 times faster than a regexp flat
71 # lookup.
dc2f75c0
JV
72 for ( split( qr/\n/, $content ) ) {
73 next unless /^([A-Za-z_:0-9]+) +[-0-9.undefHASHVERSIONvsetwhenloadingbogus]+ +(\S+)/;
74 $modlist{$1} = $2;
fb237dfd
NC
75 }
76}
77
dc2f75c0
JV
78find(
79 sub {
80 /(\.pm|_pm\.PL)$/ or return;
81 /PPPort\.pm$/ and return;
82 my $module = $File::Find::name;
83 $module =~ /\b(demo|t|private)\b/ and return; # demo or test modules
84 my $version = MM->parse_version($_);
85 defined $version or $version = 'undef';
86 $version =~ /\d/ and $version = "'$version'";
87
88 # some heuristics to figure out the module name from the file name
71c80a8f 89 $module =~ s{^(lib|cpan|dist|(?:vms/|symbian/)?ext)/}{}
3eae08df 90 and $1 ne 'lib'
dc2f75c0
JV
91 and (
92 $module =~ s{\b(\w+)/\1\b}{$1},
93 $module =~ s{^B/O}{O},
94 $module =~ s{^Devel-PPPort}{Devel},
3eae08df 95 $module =~ s{^libnet/}{},
dc2f75c0
JV
96 $module =~ s{^Encode/encoding}{encoding},
97 $module =~ s{^IPC-SysV/}{IPC/},
98 $module =~ s{^MIME-Base64/QuotedPrint}{MIME/QuotedPrint},
99 $module =~ s{^(?:DynaLoader|Errno|Opcode)/}{},
100 );
71c80a8f 101 $module =~ s{^lib/}{}g;
dc2f75c0
JV
102 $module =~ s{/}{::}g;
103 $module =~ s{-}{::}g;
71c80a8f 104 $module =~ s{^.*::lib::}{}; # turns Foo/lib/Foo.pm into Foo.pm
dc2f75c0
JV
105 $module =~ s/(\.pm|_pm\.PL)$//;
106 $lines{$module} = $version;
107 $module_to_file{$module} = $File::Find::name;
108 },
71c80a8f
JV
109 'vms/ext',
110 'symbian/ext',
dc2f75c0
JV
111 'lib',
112 'ext',
3eae08df 113 'cpan',
71c80a8f 114 'dist'
dc2f75c0 115);
59189dd7 116
0fdd9e5c 117-e 'configpm' and $lines{Config} = 'undef';
cc8432b2 118
dc2f75c0
JV
119if ( open my $ucdv, "<", "lib/unicore/version" ) {
120 chomp( my $ucd = <$ucdv> );
0fdd9e5c 121 $lines{Unicode} = "'$ucd'";
59189dd7 122 close $ucdv;
dc2f75c0 123}
fb237dfd 124
dc2f75c0
JV
125my $versions_in_release = " " . $perl_vnum . " => {\n";
126foreach my $key ( sort keys %lines ) {
127 $versions_in_release .= sprintf "\t%-24s=> %s,\n", "'$key'", $lines{$key};
0fdd9e5c 128}
dc2f75c0 129$versions_in_release .= " },\n";
fb237dfd 130
dc2f75c0 131$corelist =~ s/^(%version\s*=\s*.*?)(^\);)$/$1$versions_in_release$2/xism;
fb237dfd
NC
132
133exit unless %modlist;
134
135# We have to go through this two stage lookup, given how Maintainers.pl keys its
136# data by "Module", which is really a dist.
dc2f75c0 137my $file_to_M = files_to_modules( values %module_to_file );
fb237dfd
NC
138
139my %module_to_upstream;
140my %module_to_dist;
141my %dist_to_meta_YAML;
a762e054 142my %module_to_deprecated;
dc2f75c0 143while ( my ( $module, $file ) = each %module_to_file ) {
fb237dfd
NC
144 my $M = $file_to_M->{$file};
145 next unless $M;
146 next if $Modules{$M}{MAINTAINER} eq 'p5p';
147 $module_to_upstream{$module} = $Modules{$M}{UPSTREAM};
a762e054 148 $module_to_deprecated{$module} = 1 if $Modules{$M}{DEPRECATED};
dc2f75c0
JV
149 next
150 if defined $module_to_upstream{$module}
151 && $module_to_upstream{$module} =~ /^(?:blead|first-come)$/;
fb237dfd
NC
152 my $dist = $modlist{$module};
153 unless ($dist) {
dc2f75c0
JV
154 warn "Can't find a distribution for $module\n";
155 next;
fb237dfd
NC
156 }
157 $module_to_dist{$module} = $dist;
158
159 next if exists $dist_to_meta_YAML{$dist};
160
161 $dist_to_meta_YAML{$dist} = undef;
162
163 # Like it or lump it, this has to be Unix format.
dc2f75c0 164 my $meta_YAML_path = "authors/id/$dist";
fd48f21c 165 $meta_YAML_path =~ s/(?:tar\.gz|tar\.bz2|zip)$/meta/ or die "$meta_YAML_path";
dc2f75c0
JV
166 my $meta_YAML_url = 'http://ftp.funet.fi/pub/CPAN/' . $meta_YAML_path;
167
168 if ( -e "$cpan/$meta_YAML_path" ) {
169 $dist_to_meta_YAML{$dist} = Parse::CPAN::Meta::LoadFile( $cpan . "/" . $meta_YAML_path );
170 } elsif ( my $content = fetch_url($meta_YAML_url) ) {
171 unless ($content) {
172 warn "Failed to fetch $meta_YAML_url\n";
173 next;
174 }
175 eval { $dist_to_meta_YAML{$dist} = Parse::CPAN::Meta::Load($content); };
176 if ( my $err = $@ ) {
177 warn "$meta_YAML_path: ".$err;
178 next;
179 }
180 } else {
181 warn "$meta_YAML_path does not exist for $module\n";
182
183 # I tried code to open the tarballs with Archive::Tar to find and
184 # extract META.yml, but only Text-Tabs+Wrap-2006.1117.tar.gz had one,
185 # so it's not worth including.
186 next;
fb237dfd 187 }
fb237dfd
NC
188}
189
dc2f75c0
JV
190my $upstream_stanza = "%upstream = (\n";
191foreach my $module ( sort keys %module_to_upstream ) {
192 my $upstream = defined $module_to_upstream{$module} ? "'$module_to_upstream{$module}'" : 'undef';
193 $upstream_stanza .= sprintf " %-24s=> %s,\n", "'$module'", $upstream;
fb237dfd 194}
dc2f75c0
JV
195$upstream_stanza .= ");";
196
197$corelist =~ s/^%upstream .*? ;$/$upstream_stanza/ismx;
fb237dfd 198
a762e054
DG
199# Deprecation generation
200my $deprecated_stanza = " " . $perl_vnum . " => {\n";
201foreach my $module ( sort keys %module_to_deprecated ) {
202 my $deprecated = defined $module_to_deprecated{$module} ? "'$module_to_deprecated{$module}'" : 'undef';
203 $deprecated_stanza .= sprintf "\t%-24s=> %s,\n", "'$module'", $deprecated;
204}
205$deprecated_stanza .= " },\n";
206$corelist =~ s/^(%deprecated\s*=\s*.*?)(^\);)$/$1$deprecated_stanza$2/xism;
207
dc2f75c0
JV
208my $tracker = "%bug_tracker = (\n";
209foreach my $module ( sort keys %module_to_upstream ) {
fb237dfd 210 my $upstream = defined $module_to_upstream{$module};
dc2f75c0
JV
211 next
212 if defined $upstream
213 and $upstream eq 'blead' || $upstream eq 'first-come';
fb237dfd
NC
214
215 my $bug_tracker;
216
217 my $dist = $module_to_dist{$module};
218 $bug_tracker = $dist_to_meta_YAML{$dist}->{resources}{bugtracker}
dc2f75c0 219 if $dist;
fb237dfd
NC
220
221 $bug_tracker = defined $bug_tracker ? "'$bug_tracker'" : 'undef';
71c80a8f 222 next if $bug_tracker eq "'http://rt.perl.org/perlbug/'";
dc2f75c0
JV
223 $tracker .= sprintf " %-24s=> %s,\n", "'$module'", $bug_tracker;
224}
225$tracker .= ");";
226
227$corelist =~ s/^%bug_tracker .*? ;/$tracker/eismx;
228
229unless ( $corelist =~ /and $perl_vstring releases of perl/ ) {
230 warn "Adding $perl_vstring to the list of perl versions covered by Module::CoreList\n";
231 $corelist =~ s/\s*and (.*?) releases of perl/, $1 and $perl_vstring releases of perl/ism;
232}
233
234unless (
235 $corelist =~ /^%released \s* = \s* \(
236 .*?
237 $perl_vnum => .*?
238 \);/ismx
239 )
240{
241 warn "Adding $perl_vnum to the list of released perl versions. Please consider adding a release date.\n";
242 $corelist =~ s/^(%released \s* = \s* .*?) ( \) )
fd48f21c 243 /$1 $perl_vnum => '????-??-??',\n $2/ismx;
dc2f75c0
JV
244}
245
246write_corelist($corelist);
247
2ce7d676 248warn "All done. Please check over $corelist_file carefully before committing. Thanks!\n";
dc2f75c0
JV
249
250
251sub write_corelist {
252 my $content = shift;
2ce7d676 253 open (my $clfh, ">", $corelist_file) || die "Failed to open $corelist_file for writing: $!";
dc2f75c0
JV
254 print $clfh $content || die "Failed to write the new CoreList.pm: $!";
255 close($clfh);
256}
257
258sub fetch_url {
259 my $url = shift;
260 eval { require LWP::Simple };
261 if ( LWP::Simple->can('get') ) {
262 return LWP::Simple->get($url);
263 } elsif (`which curl`) {
264 return `curl -s $url`;
265 } elsif (`which wget`) {
266 return `wget -q -O - $url`;
267 }
fb237dfd 268}