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=ea6d149db1c7b76f3a5a5bb3d9a67435dfda04e2;hb=e8e28944ba0dbcaf478071464085b15c5104e104;hpb=0d267aac56d1cdbd4358e92fae9244d71258d58a diff --git a/Makefile.PL b/Makefile.PL index ea6d149..c9b4f2c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,15 +1,91 @@ -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'; -name 'Devel-Declare'; -all_from 'lib/Devel/Declare.pm'; +use ExtUtils::Depends; +my $pkg = ExtUtils::Depends->new('Devel::Declare', 'B::Hooks::OP::Check'); -requires 'Scalar::Util'; -build_requires 'Test::More'; +my %TEST_DEPS = ( + 'B::Hooks::OP::Check' => '0.19', + 'Test::More' => '0.88', + 'Test::Requires' => '0', +); + +# 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 }; WriteMakefile( - dist => { - PREOP => 'pod2text lib/Devel/Declare.pm >$(DISTVNAME)/README' - } + NAME => 'Devel::Declare', + AUTHOR => 'Matt S Trout - - original author', + VERSION_FROM => 'lib/Devel/Declare.pm', + MIN_PERL_VERSION => '5.008001', + + CONFIGURE_REQUIRES => { + # minimum version that works on Win32+gcc + 'ExtUtils::Depends' => 0.302, + + # minimum version that depends on ExtUtils::Depends 0.302 + 'B::Hooks::OP::Check' => '0.19', + }, + + 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 => { + # 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, + }, + + C => [ 'Declare.c' ], + XS => { 'Declare.xs' => 'Declare.c' }, + depend => { '$(OBJECT)' => 'stolen_chunk_of_toke.c' }, + + $pkg->get_makefile_vars, ); +