Skip to content

Commit

Permalink
auto-committed by dist.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
genehack committed Oct 29, 2014
1 parent c0dd361 commit c463aad
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions Makefile.PL
@@ -1,30 +1,27 @@
use Devel::CheckBin;
check_bin('git');

# This Makefile.PL for Git-Wrapper was generated by
# inc::CheckGitConfig <self>
# 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 <hdp\@cpan.org>, Chris Prather <chris\@prather.org>, John SJ Anderson <genehack\@genehack.org>",
"CONFIGURE_REQUIRES" => {
"Devel::CheckBin" => 0,
"ExtUtils::MakeMaker" => "6.30",
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0
},
"DISTNAME" => "Git-Wrapper",
Expand Down Expand Up @@ -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,
Expand All @@ -79,7 +77,6 @@ my %FallbackPrereqs = (
"warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
Expand All @@ -90,6 +87,3 @@ delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);



0 comments on commit c463aad

Please sign in to comment.