fixup version bump to nuke Makefile, make Makefile.PL use new location of maint include
Matt S Trout [Thu, 8 Jul 2010 23:57:30 +0000 (00:57 +0100)]
Makefile.PL
maint/Makefile.PL.include

index 3f4bae3..6f7be25 100644 (file)
@@ -2,7 +2,7 @@ use strict;
 use warnings FATAL => 'all';
 use ExtUtils::MakeMaker;
 
-(do 'Author.PL' or die $@) unless -f 'META.yml';
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
 
 WriteMakefile(
   NAME => 'Module::Metadata',
index 04dd585..af16630 100644 (file)
@@ -3,10 +3,15 @@ use warnings FATAL => 'all';
 
 my $POSTAMBLE = q{bump:
        maint/bump-version
+       rm Makefile
 bumpminor:
        maint/bump-version minor
+       rm Makefile
 bumpmajor:
        maint/bump-version major
+       rm Makefile
+upload: $(DISTVNAME).tar$(SUFFIX)
+       cpan-upload $<
 };
 
 {
@@ -61,7 +66,8 @@ manifest_include(
   'xt' => '.t',
   'xt/lib' => '.pm',
   '' => '.PL',
-  '' => qr{Changes|MANIFEST|README|META\.yml}
+  '' => qr{Changes|MANIFEST|README|META\.yml},
+  'maint' => qr{[^.].*},
 );
 
 1;