-
Notifications
You must be signed in to change notification settings - Fork 31
/
Build.PL
113 lines (102 loc) · 2.75 KB
/
Build.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
# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v6.032.
use strict;
use warnings;
use Module::Build 0.28;
my %module_build_args = (
"build_requires" => {
"Module::Build" => "0.4229"
},
"configure_requires" => {
"Module::Build" => "0.28"
},
"dist_abstract" => "a data toolkit",
"dist_author" => [
"Nicolas Steenlant <nicolas.steenlant\@ugent.be>"
],
"dist_name" => "Catmandu",
"dist_version" => "1.2022",
"license" => "perl",
"module_name" => "Catmandu",
"recommends" => {
"Log::Any::Adapter::Log4perl" => "0.06",
"Log::Log4perl" => "1.44"
},
"recursive_test_files" => 1,
"requires" => {
"Any::URI::Escape" => 0,
"App::Cmd" => "0.33",
"CGI::Expand" => "2.02",
"Class::Method::Modifiers" => 0,
"Clone" => "0.31",
"Config::Onion" => "1.004",
"Cpanel::JSON::XS" => "3.0213",
"Data::Compare" => "1.22",
"Data::Util" => "0.66",
"HTTP::Request" => 0,
"Hash::Merge::Simple" => 0,
"IO::Handle::Util" => "0.01",
"LWP::UserAgent" => 0,
"List::MoreUtils" => "0.401",
"Log::Any" => 0,
"Log::Any::Adapter" => 0,
"MIME::Types" => 0,
"Module::Build" => "0.4229",
"Module::Info" => 0,
"Moo" => "1.004006",
"MooX::Aliases" => "0.001006",
"Package::Stash" => 0,
"Parser::MGC" => "0.21",
"Path::Iterator::Rule" => 0,
"Path::Tiny" => 0,
"Role::Tiny" => 0,
"Role::Tiny::With" => 0,
"String::CamelCase" => 0,
"Sub::Exporter" => "0.982",
"Sub::Quote" => 0,
"Text::CSV" => "1.21",
"Text::Hogan::Compiler" => "1.02",
"Throwable" => "0.200004",
"Time::HiRes" => 0,
"Try::Tiny::ByClass" => "0.01",
"URI" => 0,
"URI::Template" => "0.22",
"UUID::Tiny" => "1.04",
"Unicode::Normalize" => 0,
"YAML::XS" => "0.83",
"asa" => 0,
"namespace::clean" => "0.24",
"perl" => "v5.16.0"
},
"script_files" => [
"bin/catmandu"
],
"test_requires" => {
"Capture::Tiny" => 0,
"Log::Any::Adapter::Log4perl" => 0,
"Log::Any::Test" => "1.03",
"Log::Log4perl" => 0,
"Test::Deep" => "0.112",
"Test::Exception" => "0.43",
"Test::LWP::UserAgent" => 0,
"Test::More" => "0.99",
"Test::Pod" => 0
}
);
my %fallback_build_requires = (
"Capture::Tiny" => 0,
"Log::Any::Adapter::Log4perl" => 0,
"Log::Any::Test" => "1.03",
"Log::Log4perl" => 0,
"Module::Build" => "0.4229",
"Test::Deep" => "0.112",
"Test::Exception" => "0.43",
"Test::LWP::UserAgent" => 0,
"Test::More" => "0.99",
"Test::Pod" => 0
);
unless ( eval { Module::Build->VERSION(0.4004) } ) {
delete $module_build_args{test_requires};
$module_build_args{build_requires} = \%fallback_build_requires;
}
my $build = Module::Build->new(%module_build_args);
$build->create_build_script;