X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=6b413d73ee4b25a205348fd9f965a281ffea1d82;hb=7c4f125853686285fbcc4c04de8c78d7f0a4ab6f;hp=2a35240bf998d6d1880b3782170827830ce343c8;hpb=c20d749661f313772b7a3fd6b2723831327eeaad;p=p5sagit%2FDevel-Declare.git diff --git a/Makefile.PL b/Makefile.PL index 2a35240..6b413d7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,31 +1,69 @@ -use inc::Module::Install 0.67; +use strict; +use warnings FATAL => 'all'; use 5.008001; +use ExtUtils::MakeMaker; +(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; use ExtUtils::Depends; +my $pkg = ExtUtils::Depends->new('Devel::Declare', 'B::Hooks::OP::Check'); -name 'Devel-Declare'; -all_from 'lib/Devel/Declare.pm'; +my %TEST_DEPS = ( + 'B::Hooks::OP::Check' => '0.19', + 'Test::More' => '0.88', + 'Test::Requires' => '0', +); -requires 'Scalar::Util'; -requires 'B::Hooks::OP::Check' => '0.10'; -requires 'B::Hooks::EndOfScope'; -requires 'Sub::Name'; +# have to do this since old EUMM dev releases miss the eval $VERSION line +my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5707 }; -build_requires 'B::Hooks::OP::Check' => '0.10'; +sub MY::postamble { + '$(OBJECT) : stolen_chunk_of_toke.c' +} -configure_requires 'ExtUtils::Depends'; -configure_requires 'B::Hooks::OP::Check' => '0.10'; +WriteMakefile( + NAME => 'Devel::Declare', + AUTHOR => 'Matt S Trout - - original author', + VERSION_FROM => 'lib/Devel/Declare.pm', + MIN_PERL_VERSION => '5.008001', -postamble(<<'EOM'); -$(OBJECT) : stolen_chunk_of_toke.c -EOM + CONFIGURE_REQUIRES => { + # minimum version that works on Win32+gcc + 'ExtUtils::Depends' => 0.302, -my $pkg = ExtUtils::Depends->new('Devel::Declare', 'B::Hooks::OP::Check'); + # minimum version that depends on ExtUtils::Depends 0.302 + 'B::Hooks::OP::Check' => '0.19', + }, -WriteMakefile( - dist => { - PREOP => 'pod2text lib/Devel/Declare.pm >$(DISTVNAME)/README' - }, - $pkg->get_makefile_vars, + PREREQ_PM => { + 'Scalar::Util' => 1.11, # set_prototype appeared in this version + 'B::Hooks::OP::Check' => '0.19', + 'B::Hooks::EndOfScope' => '0.05', + 'Sub::Name' => 0, + ($mymeta_works ? () : (%TEST_DEPS)), + }, + + $mymeta_works ? (BUILD_REQUIRES => \%TEST_DEPS) : (), + + META_MERGE => { + 'meta-spec' => { version => 2 }, + dynamic_config => 0, + resources => { + # r/w: p5sagit@git.shadowcat.co.uk:Devel-Declare.git + repository => { + url => 'git://git.shadowcat.co.uk/p5sagit/Devel-Declare.git', + web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Devel-Declare.git', + type => 'git', + }, + bugtracker => { + mailto => 'bug-Devel-Declare@rt.cpan.org', + web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Devel-Declare', + }, + }, + }, + + XS => { 'Declare.xs' => 'Declare.c' }, + + $pkg->get_makefile_vars, ); +