-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMakefile.PL
129 lines (120 loc) · 3.11 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
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.024.
use strict;
use warnings;
use 5.012000;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "Make implicit imports explicit",
"AUTHOR" => "Olaf Alders <olaf\@wundercounter.com>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "App-perlimports",
"EXE_FILES" => [
"script/dump-perl-exports",
"script/perlimports"
],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.012000",
"NAME" => "App::perlimports",
"PREREQ_PM" => {
"Capture::Tiny" => 0,
"Class::Inspector" => "1.36",
"Data::Dumper" => 0,
"Data::UUID" => 0,
"File::Basename" => 0,
"Getopt::Long::Descriptive" => 0,
"List::Util" => 0,
"Log::Dispatch" => "2.70",
"Memoize" => 0,
"Module::Runtime" => 0,
"Moo" => 0,
"Moo::Role" => 0,
"MooX::StrictConstructor" => 0,
"PPI" => "1.270",
"PPIx::Utils::Classification" => 0,
"Path::Tiny" => 0,
"Perl::Tidy" => 20210402,
"Pod::Usage" => 0,
"Ref::Util" => 0,
"Sereal::Decoder" => 0,
"Sereal::Encoder" => 0,
"Sub::HandlesVia" => 0,
"Symbol::Get" => "0.10",
"Text::SimpleTable::AutoWidth" => 0,
"Try::Tiny" => 0,
"Types::Standard" => 0,
"feature" => 0,
"strict" => 0,
"utf8" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Log::Dispatch::Array" => 0,
"Sub::Exporter" => 0,
"Test::Differences" => 0,
"Test::More" => 0,
"Test::Needs" => 0,
"Test::RequiresInternet" => 0,
"Test::Script" => "1.27",
"Test::Warnings" => 0,
"lib" => 0
},
"VERSION" => "0.000026",
"test" => {
"TESTS" => "t/*.t t/ExportInspector/*.t t/cpan-modules/*.t"
}
);
my %FallbackPrereqs = (
"Capture::Tiny" => 0,
"Class::Inspector" => "1.36",
"Data::Dumper" => 0,
"Data::UUID" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Basename" => 0,
"File::Spec" => 0,
"Getopt::Long::Descriptive" => 0,
"List::Util" => 0,
"Log::Dispatch" => "2.70",
"Log::Dispatch::Array" => 0,
"Memoize" => 0,
"Module::Runtime" => 0,
"Moo" => 0,
"Moo::Role" => 0,
"MooX::StrictConstructor" => 0,
"PPI" => "1.270",
"PPIx::Utils::Classification" => 0,
"Path::Tiny" => 0,
"Perl::Tidy" => 20210402,
"Pod::Usage" => 0,
"Ref::Util" => 0,
"Sereal::Decoder" => 0,
"Sereal::Encoder" => 0,
"Sub::Exporter" => 0,
"Sub::HandlesVia" => 0,
"Symbol::Get" => "0.10",
"Test::Differences" => 0,
"Test::More" => 0,
"Test::Needs" => 0,
"Test::RequiresInternet" => 0,
"Test::Script" => "1.27",
"Test::Warnings" => 0,
"Text::SimpleTable::AutoWidth" => 0,
"Try::Tiny" => 0,
"Types::Standard" => 0,
"feature" => 0,
"lib" => 0,
"strict" => 0,
"utf8" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile(%WriteMakefileArgs);