-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile.PL
296 lines (251 loc) · 10.6 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
# -*- mode: perl; c-basic-offset: 4; indent-tabs-mode: nil; -*-
use strict;
use ExtUtils::MakeMaker qw(WriteMakefile);
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
# Normalize version strings like 6.30_02 to 6.3002,
# so that we can do numerical comparisons on it.
my $eumm_version = $ExtUtils::MakeMaker::VERSION;
$eumm_version =~ s/_//;
my $module = 'WWW::Mechanize::Chrome';
(my $main_file = "lib/$module.pm" ) =~ s!::!/!g;
(my $distbase = $module) =~ s!::!-!g;
my @tests = map { glob $_ } 't/*.t', 't/*/*.t';
my @win32_prerequisites = $^O =~ /mswin/i ? (
'Win32::File::VersionInfo' => 0,
) : ();
my %module = (
NAME => $module,
AUTHOR => q{Max Maischein <[email protected]>},
VERSION_FROM => $main_file,
ABSTRACT_FROM => $main_file,
META_MERGE => {
"meta-spec" => { version => 2 },
resources => {
repository => {
web => "https://github.com/Corion/$distbase",
url => "git://github.com/Corion/$distbase.git",
type => 'git',
},
bugtracker => {
web => "http://github.com/Corion/$distbase/issues",
# mailto => '[email protected]',
},
},
dynamic_config => 1, # we have prerequisites depending on the OS
x_static_install => 1, # we are pure Perl and don't do anything fancy
},
MIN_PERL_VERSION => '5.020', # I use // in some places, __SUB__, signatures
'LICENSE'=> 'perl',
PL_FILES => {},
BUILD_REQUIRES => {
'ExtUtils::MakeMaker' => '5.52_01',
},
PREREQ_PM => {
'experimental' => '0.031',
'stable' => '0.031',
'Exporter' => 5, # for 'import'
'POSIX' => 0, # for 'setsid' on POSIXish systems
'IPC::Open3' => 0, # for IPC on Windows
'File::Spec' => 0,
'Carp' => 0,
'Future' => '0.35', # Some smokers have 0.25 which lacks many features
#'Future::IO' => 0, # For loop-compatible ->sleep()
'Try::Tiny' => 0,
'PerlX::Maybe' => 0, # nicer syntax for optional parameters
# You need one of the following event loops:
# AnyEvent, IO::Async, Mojolicious
# AnyEvent is the traditional default but it is tested with all three
#'AnyEvent' => 0,
#'AnyEvent::Future' => 0,
#'AnyEvent::WebSocket::Client' => 0,
'IO::Async' => 0, # the pipe handling is tied to IO::Async
'Net::Async::WebSocket::Client' => 0.12,
# This is a developer-only prerequisite, but oh well
'Algorithm::Loops' => 0,
'Log::Log4perl' => 0, # configurable logging
'URI' => 0, # For URL handling
'URI::file' => 0, # For URL handling, just to be explicit
'URI::ws' => 0, # For port parsing from Websockets
'Future::HTTP' => 0.06, # fixes Mojolicious error handling
'JSON' => 0,
'Moo' => 2, # for some hashes-as-objects
'MooX::Role::EventEmitter' => 0, # for callback handling
'HTTP::Response' => 0,
'HTTP::Cookies' => 0,
'HTTP::Headers' => 0,
'Scalar::Util' => 0, # we need 'weaken' and 'blessed'
'MIME::Base64' => 0,
'File::Basename' => 0,
'WWW::Mechanize::Link' => 0,
'HTML::Selector::XPath' => 0,
'IO::Socket::INET' => 0,
'Storable' => 0, # for dclone
'Object::Import' => 0,
# for extracting element screenshots, loaded dynamically
'Imager' => 0,
'Imager::File::PNG' => 0,
@win32_prerequisites,
},
TEST_REQUIRES => {
'Test::More' => 0,
'Test2::V0' => 0,
'Test::Deep' => 0,
'Test::Without::Module' => 0,
'Data::Dumper' => 0,
'Data::Dump' => 0, # to paper over a bug in Struct::Dumb
# https://rt.cpan.org/Public/Bug/Display.html?id=132378
'Image::Info' => 0,
'Test::HTTP::LocalServer' => 0.71, # we want the IPv6 support, and other stuff
'URI' => 0,
'URI::file' => 0,
'Test::Memory::Cycle' => 0,
'Time::HiRes' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => "$distbase-*" },
test => { TESTS => join( ' ', @tests ) },
);
# This is so that we can do
# require 'Makefile.PL'
# and then call get_module_info
sub get_module_info { %module }
if( ! caller ) {
# I should maybe use something like Shipwright...
regen_README($main_file);
regen_EXAMPLES();
WriteMakefile1(get_module_info);
};
1;
sub WriteMakefile1 { #Written by Alexandr Ciornii, version 0.21. Added by eumm-upgrade.
my %params=@_;
my $eumm_version=$ExtUtils::MakeMaker::VERSION;
$eumm_version=eval $eumm_version;
die "EXTRA_META is deprecated" if exists $params{EXTRA_META};
die "License not specified" if not exists $params{LICENSE};
if ($params{BUILD_REQUIRES} and $eumm_version < 6.5503) {
#EUMM 6.5502 has problems with BUILD_REQUIRES
$params{PREREQ_PM}={ %{$params{PREREQ_PM} || {}} , %{$params{BUILD_REQUIRES}} };
delete $params{BUILD_REQUIRES};
}
if ($params{TEST_REQUIRES} and $eumm_version < 6.64) {
$params{PREREQ_PM}={ %{$params{PREREQ_PM} || {}} , %{$params{TEST_REQUIRES}} };
delete $params{TEST_REQUIRES};
}
delete $params{CONFIGURE_REQUIRES} if $eumm_version < 6.52;
delete $params{MIN_PERL_VERSION} if $eumm_version < 6.48;
delete $params{META_MERGE} if $eumm_version < 6.46;
delete $params{META_ADD} if $eumm_version < 6.46;
delete $params{LICENSE} if $eumm_version < 6.31;
delete $params{AUTHOR} if $] < 5.005;
delete $params{ABSTRACT_FROM} if $] < 5.005;
delete $params{BINARY_LOCATION} if $] < 5.005;
WriteMakefile(%params);
}
sub regen_README {
# README is the short version that just tells people what this is
# and how to install it
eval {
# Get description
my $readme = join "\n",
pod_section($_[0], 'NAME', 'no heading' ),
pod_section($_[0], 'DESCRIPTION' ),
<<INSTALL,
INSTALLATION
This is a Perl module distribution. It should be installed with whichever
tool you use to manage your installation of Perl, e.g. any of
cpanm .
cpan .
cpanp -i .
Consult http://www.cpan.org/modules/INSTALL.html for further instruction.
Should you wish to install this module manually, the procedure is
perl Makefile.PL
make
make test
make install
INSTALL
pod_section($_[0], 'REPOSITORY'),
pod_section($_[0], 'SUPPORT'),
pod_section($_[0], 'TALKS'),
pod_section($_[0], 'KNOWN ISSUES'),
pod_section($_[0], 'BUG TRACKER'),
pod_section($_[0], 'CONTRIBUTING'),
pod_section($_[0], 'SEE ALSO'),
pod_section($_[0], 'AUTHOR'),
pod_section($_[0], 'LICENSE' ),
pod_section($_[0], 'COPYRIGHT' ),
;
update_file( 'README', $readme );
};
# README.mkdn is the documentation that will be shown as the main
# page of the repository on Github. Hence we recreate the POD here
# as Markdown
eval {
require Pod::Markdown;
my $parser = Pod::Markdown->new();
# Read POD from Module.pm and write to README
$parser->parse_from_file($_[0]);
my $readme_mkdn = <<STATUS . $parser->as_markdown;
[//]: # "This file is generated from the documentation in $main_file."
[//]: # "Please edit that file instead."
[![Travis Build Status](https://travis-ci.org/Corion/$distbase.svg?branch=master)](https://travis-ci.org/Corion/$distbase)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/Corion/$distbase?branch=master&svg=true)](https://ci.appveyor.com/project/Corion/$distbase)
[![Github Build Status Linux](https://github.com/Corion/$distbase/workflows/linux/badge.svg)](https://github.com/Corion/$distbase/actions)
[![Github Build Status MacOS](https://github.com/Corion/$distbase/workflows/macos/badge.svg)](https://github.com/Corion/$distbase/actions)
[![Github Build Status Windows](https://github.com/Corion/$distbase/workflows/windows/badge.svg)](https://github.com/Corion/$distbase/actions)
CONTRIBUTING
See lib/WWW/Mechanize/Chrome/Contributing.pod
[Google Keep Extraction](https://github.com/Corion/WWW-Mechanize-Chrome/raw/master/demo/keep-export-demo.mp4)
STATUS
update_file( 'README.mkdn', $readme_mkdn );
};
}
sub pod_section {
my( $filename, $section, $remove_heading ) = @_;
open my $fh, '<', $filename
or die "Couldn't read '$filename': $!";
my @section =
grep { /^=head1\s+$section/.../^=/ } <$fh>;
# Trim the section
if( @section ) {
pop @section if $section[-1] =~ /^=/;
shift @section if $remove_heading;
pop @section
while $section[-1] =~ /^\s*$/;
shift @section
while $section[0] =~ /^\s*$/;
};
@section = map { $_ =~ s!^=\w+\s+!!; $_ } @section;
return join "", @section;
}
sub regen_EXAMPLES {
my $perl = $^X;
if ($perl =~/\s/) {
$perl = qq{"$perl"};
};
my $examples = `$perl -w examples/gen_examples_pod.pl`;
if ($examples) {
warn "(Re)Creating lib/WWW/Mechanize/Chrome/Examples.pm\n";
$examples =~ s/\r\n/\n/g;
update_file( 'lib/WWW/Mechanize/Chrome/Examples.pm', $examples );
};
};
sub update_file {
my( $filename, $new_content ) = @_;
my $content;
if( -f $filename ) {
open my $fh, '<', $filename
or die "Couldn't read '$filename': $!";
binmode $fh;
local $/;
$content = <$fh>;
};
if( $content ne $new_content ) {
if( open my $fh, '>', $filename ) {
binmode $fh;
print $fh $new_content;
} else {
warn "Couldn't (re)write '$filename': $!";
};
};
}