File: Build.PL

package info (click to toggle)
sqitch 0.996-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,464 kB
  • ctags: 809
  • sloc: perl: 26,855; sql: 747; makefile: 11
file content (138 lines) | stat: -rw-r--r-- 3,324 bytes parent folder | download
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

# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v5.020.
use strict;
use warnings;

use Module::Build 0.35;
use lib qw{inc}; use Module::Build::Sqitch;

my %module_build_args = (
  "build_requires" => {
    "Module::Build" => "0.35"
  },
  "configure_requires" => {
    "Module::Build" => "0.35"
  },
  "dist_abstract" => "Sane database change management",
  "dist_author" => [
    "David E. Wheeler <david\@justatheory.com>"
  ],
  "dist_name" => "App-Sqitch",
  "dist_version" => "0.996",
  "license" => "mit",
  "module_name" => "App::Sqitch",
  "recommends" => {
    "Class::XSAccessor" => "1.18",
    "Pod::Simple" => "1.41",
    "Type::Tiny::XS" => "0.010"
  },
  "recursive_test_files" => 1,
  "requires" => {
    "Clone" => 0,
    "Config::GitLike" => "1.11",
    "DBI" => 0,
    "DateTime" => 0,
    "Devel::StackTrace" => "1.30",
    "Digest::SHA" => 0,
    "Encode" => 0,
    "Encode::Locale" => 0,
    "File::Basename" => 0,
    "File::Copy" => 0,
    "File::HomeDir" => 0,
    "File::Path" => 0,
    "File::Temp" => 0,
    "Getopt::Long" => 0,
    "Hash::Merge" => 0,
    "IO::Pager" => 0,
    "IPC::Run3" => 0,
    "IPC::System::Simple" => "1.17",
    "List::MoreUtils" => 0,
    "List::Util" => 0,
    "Locale::Messages" => 0,
    "Locale::TextDomain" => "1.20",
    "Moo" => "1.002000",
    "Moo::Role" => 0,
    "Moo::sification" => 0,
    "POSIX" => 0,
    "Path::Class" => 0,
    "PerlIO::utf8_strict" => 0,
    "Pod::Find" => 0,
    "Pod::Usage" => 0,
    "Scalar::Util" => 0,
    "StackTrace::Auto" => 0,
    "String::Formatter" => 0,
    "String::ShellQuote" => 0,
    "Sub::Exporter" => 0,
    "Sub::Exporter::Util" => 0,
    "Sys::Hostname" => 0,
    "Template::Tiny" => "0.11",
    "Term::ANSIColor" => "2.02",
    "Throwable" => "0.200009",
    "Time::HiRes" => 0,
    "Time::Local" => 0,
    "Try::Tiny" => 0,
    "Type::Library" => "0.040",
    "Type::Utils" => 0,
    "Types::Standard" => 0,
    "URI" => 0,
    "URI::db" => "0.15",
    "User::pwent" => 0,
    "constant" => 0,
    "if" => 0,
    "namespace::autoclean" => "0.16",
    "overload" => 0,
    "parent" => 0,
    "perl" => "5.010",
    "strict" => 0,
    "utf8" => 0,
    "warnings" => 0
  },
  "script_files" => [
    "bin/sqitch"
  ],
  "test_requires" => {
    "Capture::Tiny" => "0.12",
    "Carp" => 0,
    "File::Spec" => 0,
    "File::Spec::Functions" => 0,
    "FindBin" => 0,
    "Test::Deep" => 0,
    "Test::Dir" => 0,
    "Test::Exception" => 0,
    "Test::File" => 0,
    "Test::File::Contents" => "0.20",
    "Test::MockModule" => "0.05",
    "Test::More" => "0.94",
    "Test::NoWarnings" => "0.083",
    "lib" => 0
  }
);


my %fallback_build_requires = (
  "Capture::Tiny" => "0.12",
  "Carp" => 0,
  "File::Spec" => 0,
  "File::Spec::Functions" => 0,
  "FindBin" => 0,
  "Module::Build" => "0.35",
  "Test::Deep" => 0,
  "Test::Dir" => 0,
  "Test::Exception" => 0,
  "Test::File" => 0,
  "Test::File::Contents" => "0.20",
  "Test::MockModule" => "0.05",
  "Test::More" => "0.94",
  "Test::NoWarnings" => "0.083",
  "lib" => 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::Sqitch->new(%module_build_args);

$build->create_build_script;