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
|
# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v6.014.
use strict;
use warnings;
use Module::Build 0.3601;
use lib qw{inc}; use My::Builder;
my %module_build_args = (
"build_requires" => {
"Cwd" => "3.30",
"Module::Build" => "0.3601",
"Path::Tiny" => "0.038",
"autodie" => "2.06_01"
},
"configure_requires" => {
"Module::Build" => "0.3601"
},
"dist_abstract" => "privacy-friendly helper to refresh a GnuPG keyring",
"dist_author" => [
"intrigeri <intrigeri\@boum.org>"
],
"dist_name" => "App-Parcimonie",
"dist_version" => "0.12.0",
"license" => "perl",
"module_name" => "App::Parcimonie",
"recursive_test_files" => 1,
"requires" => {
"Carp" => "1.11",
"Clone" => "0.31",
"Config::General" => "2.48",
"Encode" => 0,
"English" => "1.04",
"File::HomeDir" => "0.86",
"File::Which" => "1.08",
"GnuPG::Interface" => "0.42",
"I18N::Langinfo" => 0,
"IPC::System::Simple" => 0,
"JSON::PP" => 0,
"List::MoreUtils" => "0.25",
"List::Util" => "1.33",
"Moo" => "1.003",
"MooX::Options" => "3.83",
"MooX::StrictConstructor" => "0.008",
"MooX::late" => "0.014",
"Net::DBus" => "v0.33.6",
"Pango" => "1.221",
"Path::Tiny" => "0.038",
"Time::Duration" => "1.06",
"Time::Duration::Parse" => "0.06",
"Try::Tiny" => "0.04",
"Type::Tiny" => "0.022",
"Types::Path::Tiny" => "0.005",
"namespace::clean" => "0.25",
"version" => "0.9909"
},
"script_files" => [
"bin/parcimonie"
],
"share_dir" => {
"dist" => "share"
},
"test_requires" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"File::Which" => "1.08",
"GnuPG::Interface" => "0.42",
"IO::Handle" => "1.28",
"LWP::Online" => "1.07",
"List::MoreUtils" => "0.25",
"List::Util" => "1.33",
"Module::Pluggable::Object" => "3.9",
"Path::Tiny" => "0.038",
"Test::More" => 0,
"Test::Most" => "0.22",
"Test::Trap" => "v0.2.1",
"strictures" => "2.000003"
}
);
my %fallback_build_requires = (
"Cwd" => "3.30",
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"File::Which" => "1.08",
"GnuPG::Interface" => "0.42",
"IO::Handle" => "1.28",
"LWP::Online" => "1.07",
"List::MoreUtils" => "0.25",
"List::Util" => "1.33",
"Module::Build" => "0.3601",
"Module::Pluggable::Object" => "3.9",
"Path::Tiny" => "0.038",
"Test::More" => 0,
"Test::Most" => "0.22",
"Test::Trap" => "v0.2.1",
"autodie" => "2.06_01",
"strictures" => "2.000003"
);
unless ( eval { Module::Build->VERSION(0.4004) } ) {
delete $module_build_args{test_requires};
$module_build_args{build_requires} = \%fallback_build_requires;
}
my $build = My::Builder->new(%module_build_args);
$build->create_build_script;
|