From c463aad17d0c2db274dda2a5a57cc1e21338bbcf Mon Sep 17 00:00:00 2001 From: John SJ Anderson Date: Wed, 29 Oct 2014 10:35:43 -0700 Subject: [PATCH] auto-committed by dist.ini --- Makefile.PL | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index bd5e305..a56ad47 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,30 +1,27 @@ -use Devel::CheckBin; -check_bin('git'); - # This Makefile.PL for Git-Wrapper was generated by # inc::CheckGitConfig -# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.23. +# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.31. # Don't edit it but the dist.ini and plugins used to construct it. use strict; use warnings; +# inserted by Dist::Zilla::Plugin::CheckBin 0.005 +use Devel::CheckBin; +check_bin('git'); + require File::Spec; die 'git seems broken; maybe check your HOME environment variable?' if system('git config --list >'.File::Spec->devnull); -use 5.006; - -use ExtUtils::MakeMaker 6.30; - - +use ExtUtils::MakeMaker; my %WriteMakefileArgs = ( "ABSTRACT" => "Wrap git(7) command-line interface", "AUTHOR" => "Hans Dieter Pearcey , Chris Prather , John SJ Anderson ", "CONFIGURE_REQUIRES" => { "Devel::CheckBin" => 0, - "ExtUtils::MakeMaker" => "6.30", + "ExtUtils::MakeMaker" => 0, "File::Spec" => 0 }, "DISTNAME" => "Git-Wrapper", @@ -52,14 +49,15 @@ my %WriteMakefileArgs = ( "Test::Exception" => 0, "Test::More" => 0 }, - "VERSION" => "0.037", + "VERSION" => "0.038", "test" => { "TESTS" => "t/*.t" } ); - my %FallbackPrereqs = ( + "Devel::CheckBin" => 0, + "ExtUtils::MakeMaker" => 0, "File::Path" => 0, "File::Spec" => 0, "File::Temp" => 0, @@ -79,7 +77,6 @@ my %FallbackPrereqs = ( "warnings" => 0 ); - unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) { delete $WriteMakefileArgs{TEST_REQUIRES}; delete $WriteMakefileArgs{BUILD_REQUIRES}; @@ -90,6 +87,3 @@ delete $WriteMakefileArgs{CONFIGURE_REQUIRES} unless eval { ExtUtils::MakeMaker->VERSION(6.52) }; WriteMakefile(%WriteMakefileArgs); - - -