Skip to content

Commit

Permalink
Build results of 6de1d56 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Sep 21, 2013
1 parent 29c1540 commit 51bafda
Show file tree
Hide file tree
Showing 46 changed files with 941 additions and 4,983 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: perl
perl:
- "5.16"
- "5.14"
- "5.18"
- "5.19"
before_install:
- perl ./maint-travis-ci/sterilize_env.pl
branches:
only:
- "build/master"
- "releases"

58 changes: 0 additions & 58 deletions Build

This file was deleted.

37 changes: 27 additions & 10 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,17 @@ use Module::Build 0.3601;

my %module_build_args = (
"build_requires" => {
"Dist::Zilla::Util::Test::KENTNL" => "0.01000004",
"File::Find" => 0,
"File::Temp" => 0,
"Module::Build" => "0.4001",
"Scalar::Util" => 0,
"Test::Fatal" => 0,
"Test::More" => "0.98"
"Module::Build" => "0.4007"
},
"configure_requires" => {
"Module::Build" => "0.4001"
"Module::Build" => "0.4007"
},
"dist_abstract" => "Generating and Populating 'provides' in your META.yml",
"dist_author" => [
"Kent Fredric <kentnl\@cpan.org>"
],
"dist_name" => "Dist-Zilla-Plugin-MetaProvides",
"dist_version" => "1.14000001",
"dist_version" => "1.15000000",
"license" => "perl",
"module_name" => "Dist::Zilla::Plugin::MetaProvides",
"recommends" => {},
Expand All @@ -41,10 +35,33 @@ my %module_build_args = (
"strict" => 0,
"warnings" => 0
},
"script_files" => []
"script_files" => [],
"test_requires" => {
"Carp" => 0,
"Dist::Zilla::Util::Test::KENTNL" => "0.01000004",
"File::Temp" => 0,
"IO::Handle" => 0,
"Scalar::Util" => 0,
"Test::Fatal" => 0,
"Test::More" => "0.98",
"lib" => 0
}
);


unless ( eval { Module::Build->VERSION(0.4004) } ) {
my $tr = delete $module_build_args{test_requires};
my $br = $module_build_args{build_requires};
for my $mod ( keys %$tr ) {
if ( exists $br->{$mod} ) {
$br->{$mod} = $tr->{$mod} if $tr->{$mod} > $br->{$mod};
}
else {
$br->{$mod} = $tr->{$mod};
}
}
}

my $build = Module::Build->new(%module_build_args);

$build->create_build_script;
Loading

0 comments on commit 51bafda

Please sign in to comment.