This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add Zefram as our release manager victim for 20 December
[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
f4ccb67a 89 $module =~ s{^(lib|cpan|dist|(?: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 );
f4ccb67a 101 $module =~ s{^vms/ext}{VMS};
71c80a8f 102 $module =~ s{^lib/}{}g;
dc2f75c0
JV
103 $module =~ s{/}{::}g;
104 $module =~ s{-}{::}g;
71c80a8f 105 $module =~ s{^.*::lib::}{}; # turns Foo/lib/Foo.pm into Foo.pm
dc2f75c0
JV
106 $module =~ s/(\.pm|_pm\.PL)$//;
107 $lines{$module} = $version;
108 $module_to_file{$module} = $File::Find::name;
109 },
71c80a8f
JV
110 'vms/ext',
111 'symbian/ext',
dc2f75c0
JV
112 'lib',
113 'ext',
3eae08df 114 'cpan',
71c80a8f 115 'dist'
dc2f75c0 116);
59189dd7 117
0fdd9e5c 118-e 'configpm' and $lines{Config} = 'undef';
cc8432b2 119
dc2f75c0
JV
120if ( open my $ucdv, "<", "lib/unicore/version" ) {
121 chomp( my $ucd = <$ucdv> );
0fdd9e5c 122 $lines{Unicode} = "'$ucd'";
59189dd7 123 close $ucdv;
dc2f75c0 124}
fb237dfd 125
dc2f75c0
JV
126my $versions_in_release = " " . $perl_vnum . " => {\n";
127foreach my $key ( sort keys %lines ) {
128 $versions_in_release .= sprintf "\t%-24s=> %s,\n", "'$key'", $lines{$key};
0fdd9e5c 129}
dc2f75c0 130$versions_in_release .= " },\n";
fb237dfd 131
dc2f75c0 132$corelist =~ s/^(%version\s*=\s*.*?)(^\);)$/$1$versions_in_release$2/xism;
fb237dfd
NC
133
134exit unless %modlist;
135
136# We have to go through this two stage lookup, given how Maintainers.pl keys its
137# data by "Module", which is really a dist.
dc2f75c0 138my $file_to_M = files_to_modules( values %module_to_file );
fb237dfd
NC
139
140my %module_to_upstream;
141my %module_to_dist;
142my %dist_to_meta_YAML;
a762e054 143my %module_to_deprecated;
dc2f75c0 144while ( my ( $module, $file ) = each %module_to_file ) {
fb237dfd
NC
145 my $M = $file_to_M->{$file};
146 next unless $M;
147 next if $Modules{$M}{MAINTAINER} eq 'p5p';
148 $module_to_upstream{$module} = $Modules{$M}{UPSTREAM};
a762e054 149 $module_to_deprecated{$module} = 1 if $Modules{$M}{DEPRECATED};
dc2f75c0
JV
150 next
151 if defined $module_to_upstream{$module}
152 && $module_to_upstream{$module} =~ /^(?:blead|first-come)$/;
fb237dfd
NC
153 my $dist = $modlist{$module};
154 unless ($dist) {
dc2f75c0
JV
155 warn "Can't find a distribution for $module\n";
156 next;
fb237dfd
NC
157 }
158 $module_to_dist{$module} = $dist;
159
160 next if exists $dist_to_meta_YAML{$dist};
161
162 $dist_to_meta_YAML{$dist} = undef;
163
164 # Like it or lump it, this has to be Unix format.
dc2f75c0 165 my $meta_YAML_path = "authors/id/$dist";
fd48f21c 166 $meta_YAML_path =~ s/(?:tar\.gz|tar\.bz2|zip)$/meta/ or die "$meta_YAML_path";
dc2f75c0
JV
167 my $meta_YAML_url = 'http://ftp.funet.fi/pub/CPAN/' . $meta_YAML_path;
168
169 if ( -e "$cpan/$meta_YAML_path" ) {
170 $dist_to_meta_YAML{$dist} = Parse::CPAN::Meta::LoadFile( $cpan . "/" . $meta_YAML_path );
171 } elsif ( my $content = fetch_url($meta_YAML_url) ) {
172 unless ($content) {
173 warn "Failed to fetch $meta_YAML_url\n";
174 next;
175 }
176 eval { $dist_to_meta_YAML{$dist} = Parse::CPAN::Meta::Load($content); };
177 if ( my $err = $@ ) {
178 warn "$meta_YAML_path: ".$err;
179 next;
180 }
181 } else {
182 warn "$meta_YAML_path does not exist for $module\n";
183
184 # I tried code to open the tarballs with Archive::Tar to find and
185 # extract META.yml, but only Text-Tabs+Wrap-2006.1117.tar.gz had one,
186 # so it's not worth including.
187 next;
fb237dfd 188 }
fb237dfd
NC
189}
190
dc2f75c0
JV
191my $upstream_stanza = "%upstream = (\n";
192foreach my $module ( sort keys %module_to_upstream ) {
193 my $upstream = defined $module_to_upstream{$module} ? "'$module_to_upstream{$module}'" : 'undef';
194 $upstream_stanza .= sprintf " %-24s=> %s,\n", "'$module'", $upstream;
fb237dfd 195}
dc2f75c0
JV
196$upstream_stanza .= ");";
197
198$corelist =~ s/^%upstream .*? ;$/$upstream_stanza/ismx;
fb237dfd 199
a762e054
DG
200# Deprecation generation
201my $deprecated_stanza = " " . $perl_vnum . " => {\n";
202foreach my $module ( sort keys %module_to_deprecated ) {
203 my $deprecated = defined $module_to_deprecated{$module} ? "'$module_to_deprecated{$module}'" : 'undef';
204 $deprecated_stanza .= sprintf "\t%-24s=> %s,\n", "'$module'", $deprecated;
205}
206$deprecated_stanza .= " },\n";
207$corelist =~ s/^(%deprecated\s*=\s*.*?)(^\);)$/$1$deprecated_stanza$2/xism;
208
dc2f75c0
JV
209my $tracker = "%bug_tracker = (\n";
210foreach my $module ( sort keys %module_to_upstream ) {
fb237dfd 211 my $upstream = defined $module_to_upstream{$module};
dc2f75c0
JV
212 next
213 if defined $upstream
214 and $upstream eq 'blead' || $upstream eq 'first-come';
fb237dfd
NC
215
216 my $bug_tracker;
217
218 my $dist = $module_to_dist{$module};
219 $bug_tracker = $dist_to_meta_YAML{$dist}->{resources}{bugtracker}
dc2f75c0 220 if $dist;
fb237dfd
NC
221
222 $bug_tracker = defined $bug_tracker ? "'$bug_tracker'" : 'undef';
71c80a8f 223 next if $bug_tracker eq "'http://rt.perl.org/perlbug/'";
dc2f75c0
JV
224 $tracker .= sprintf " %-24s=> %s,\n", "'$module'", $bug_tracker;
225}
226$tracker .= ");";
227
228$corelist =~ s/^%bug_tracker .*? ;/$tracker/eismx;
229
230unless ( $corelist =~ /and $perl_vstring releases of perl/ ) {
231 warn "Adding $perl_vstring to the list of perl versions covered by Module::CoreList\n";
232 $corelist =~ s/\s*and (.*?) releases of perl/, $1 and $perl_vstring releases of perl/ism;
233}
234
235unless (
236 $corelist =~ /^%released \s* = \s* \(
237 .*?
238 $perl_vnum => .*?
239 \);/ismx
240 )
241{
242 warn "Adding $perl_vnum to the list of released perl versions. Please consider adding a release date.\n";
243 $corelist =~ s/^(%released \s* = \s* .*?) ( \) )
fd48f21c 244 /$1 $perl_vnum => '????-??-??',\n $2/ismx;
dc2f75c0
JV
245}
246
247write_corelist($corelist);
248
2ce7d676 249warn "All done. Please check over $corelist_file carefully before committing. Thanks!\n";
dc2f75c0
JV
250
251
252sub write_corelist {
253 my $content = shift;
2ce7d676 254 open (my $clfh, ">", $corelist_file) || die "Failed to open $corelist_file for writing: $!";
dc2f75c0
JV
255 print $clfh $content || die "Failed to write the new CoreList.pm: $!";
256 close($clfh);
257}
258
259sub fetch_url {
260 my $url = shift;
261 eval { require LWP::Simple };
262 if ( LWP::Simple->can('get') ) {
263 return LWP::Simple->get($url);
264 } elsif (`which curl`) {
265 return `curl -s $url`;
266 } elsif (`which wget`) {
267 return `wget -q -O - $url`;
268 }
fb237dfd 269}