X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-Declare.git;a=blobdiff_plain;f=Makefile.PL;h=c9b4f2cc5a6f0679e5961e73f5671a39991ccb89;hp=dd795f6d8afc751d2a8a8ee23820d48f3a6d162d;hb=8aa609aed8c1042b5c9ffa49b4363eabde131d53;hpb=fac325f36d2d99f6245642251db5ed15e2d37e77 diff --git a/Makefile.PL b/Makefile.PL index dd795f6..c9b4f2c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,38 +1,91 @@ -use inc::Module::Install 0.91; +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' => 1.11; # set_prototype appeared in this version -requires 'B::Hooks::OP::Check' => '0.18'; -requires 'B::Hooks::EndOfScope' => '0.05'; -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.18'; +WriteMakefile( + NAME => 'Devel::Declare', + AUTHOR => 'Matt S Trout - - original author', + VERSION_FROM => 'lib/Devel/Declare.pm', + MIN_PERL_VERSION => '5.008001', -# minimum version that works on Win32+gcc -configure_requires 'ExtUtils::Depends' => 0.302; + CONFIGURE_REQUIRES => { + # minimum version that works on Win32+gcc + 'ExtUtils::Depends' => 0.302, -# minimum version that depends on ExtUtils::Depends 0.302 -configure_requires 'B::Hooks::OP::Check' => '0.18'; + # minimum version that depends on ExtUtils::Depends 0.302 + 'B::Hooks::OP::Check' => '0.19', + }, -test_requires 'Test::More' => '0.88'; + 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)), + }, -repository 'git://github.com/rafl/devel-declare.git'; + $mymeta_works ? (BUILD_REQUIRES => \%TEST_DEPS) : (), -postamble(<<'EOM'); -$(OBJECT) : stolen_chunk_of_toke.c -EOM + META_MERGE => { + 'meta-spec' => { version => 2 }, + dynamic_config => 0, + resources => { + # GitHub mirrors from Shadowcat. We list it so we can get pull requests. + # The canonical repo is: + # r/o: git://git.shadowcat.co.uk/p5sagit/Devel-Declare.git + # r/w: p5sagit@git.shadowcat.co.uk:Devel-Declare.git + # web: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Devel-Declare.git + repository => { + url => 'https://github.com/p5sagit/Devel-Declare.git', + web => 'https://github.com/p5sagit/Devel-Declare', + type => 'git', + }, + bugtracker => { + mailto => 'bug-Devel-Declare@rt.cpan.org', + web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Devel-Declare', + }, + }, + x_contributors => [ # manually added, from git shortlog -e -s -n + 'Florian Ragwitz ', + 'Matt S Trout ', + 'Karen Etheridge ', + 'Zefram ', + 'Rhesa Rozendaal ', + 'Ash Berlin ', + 'Chia-liang Kao ', + 'Marcus Ramberg ', + 'Christopher Nehren ', + 'Yuval Kogman ', + 'Cory Watson ', + 'Alexandr Ciornii ', + 'Father Chrysostomos ', + 'Graham Knop ', + 'Matthew Horsfall ', + 'Nick Perez ', + 'Yanick Champoux ', + ], + x_deprecated => 1, + }, -my $pkg = ExtUtils::Depends->new('Devel::Declare', 'B::Hooks::OP::Check'); + C => [ 'Declare.c' ], + XS => { 'Declare.xs' => 'Declare.c' }, + depend => { '$(OBJECT)' => 'stolen_chunk_of_toke.c' }, -WriteMakefile( - dist => { - PREOP => 'pod2text lib/Devel/Declare.pm >README' - }, - $pkg->get_makefile_vars, + $pkg->get_makefile_vars, ); +