fix use of variables that are no longer defined
[p5sagit/Devel-Declare.git] / Makefile.PL
index 3796acf..05017f8 100644 (file)
@@ -3,7 +3,7 @@ use warnings FATAL => 'all';
 
 use 5.008001;
 use ExtUtils::MakeMaker;
-(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+(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');
@@ -17,9 +17,9 @@ my %TEST_DEPS = (
 # 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 };
 
-sub MY::postamble {
-    '$(OBJECT) : stolen_chunk_of_toke.c'
-}
+use Data::Dumper;
+local $Data::Dumper::Sortkeys = 1;
+print STDERR "------------- calling WriteMakefile(): ExUtils::Depends get_makefile_vars says ", Dumper({ $pkg->get_makefile_vars });
 
 WriteMakefile(
     NAME => 'Devel::Declare',
@@ -28,11 +28,9 @@ WriteMakefile(
     MIN_PERL_VERSION => '5.008001',
 
     CONFIGURE_REQUIRES => {
-        # minimum version that works on Win32+gcc
-        'ExtUtils::Depends' => 0.302,
+        'ExtUtils::Depends' => 0.8000,
 
-        # minimum version that depends on ExtUtils::Depends 0.302
-        'B::Hooks::OP::Check' => '0.19',
+        'B::Hooks::OP::Check' => '0.22',
     },
 
     PREREQ_PM => {
@@ -49,10 +47,14 @@ WriteMakefile(
         '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 => 'git://git.shadowcat.co.uk/p5sagit/Devel-Declare.git',
-                web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Devel-Declare.git',
+                url => 'https://github.com/p5sagit/Devel-Declare.git',
+                web => 'https://github.com/p5sagit/Devel-Declare',
                 type => 'git',
             },
             bugtracker => {
@@ -79,11 +81,15 @@ WriteMakefile(
             'Nick Perez <nperez@cpan.org>',
             'Yanick Champoux <yanick@babyl.dyndns.org>',
         ],
+        x_deprecated => 1,
     },
 
     C => [ 'Declare.c' ],
     XS => { 'Declare.xs' => 'Declare.c' },
+    depend => { '$(OBJECT)' => 'stolen_chunk_of_toke.c' },
 
     $pkg->get_makefile_vars,
 );
 
+print STDERR "------- finished Makefile.PL\n";
+