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