From db6e031170896bd100c94e2ec50905e56a4da167 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 27 Jun 2011 13:25:26 +0200 Subject: Remove useless git version magic from Build.PL, update gitignore --- .gitignore | 1 + Build.PL | 12 +++--------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index a8f36dc..189304f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /MANIFEST.SKIP /MANIFEST.SKIP.bak /MYMETA.yml +/MYMETA.json diff --git a/Build.PL b/Build.PL index 827db39..9595edd 100644 --- a/Build.PL +++ b/Build.PL @@ -4,7 +4,8 @@ use strict; use warnings; use Module::Build; -my %opts = ( +Module::Build->new( + build_requires => { 'Test::More' => 0, 'Test::Compile' => 0, @@ -20,12 +21,5 @@ my %opts = ( 'XML::LibXML' => 0, 'WWW::Mechanize' => 0, }, -); - -if (-d '.git' and qx{which git} =~ qr{/git$}) { - $opts{'dist_version'} = qx{git describe}; - chomp $opts{'dist_version'}; -} -my $build = Module::Build->new(%opts); -$build->create_build_script; +)->create_build_script(); -- cgit v1.2.3