convert to Distar
Karen Etheridge [Sun, 16 Sep 2012 04:08:45 +0000 (21:08 -0700)]
.gitignore
Makefile.PL
maint/Makefile.PL.include [new file with mode: 0644]
maint/Makefile.include [new file with mode: 0644]
maint/bump-version [new file with mode: 0755]

index 1deb8a7..9fd5290 100644 (file)
@@ -20,4 +20,8 @@ nytprof*
 .*.sw?
 *~
 README
+Distar/
 /App-FatPacker-*
+
+# yes that's right, distar makes it for us
+MANIFEST.SKIP
index 3797a6d..0a91c74 100644 (file)
@@ -1,15 +1,18 @@
 use strict;
 use warnings FATAL => 'all';
-use inc::Module::Install 0.93;
+use ExtUtils::MakeMaker;
 
-all_from('lib/App/FatPacker.pm');
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
 
-install_script('bin/fatpack');
+WriteMakefile(
+  NAME => 'App::FatPacker',
+  VERSION_FROM => 'lib/App/FatPacker.pm',
 
-resources(
-    # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git
-    repository => "git://git.shadowcat.co.uk/p5sagit/App-FatPacker.git",
-    homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/App-FatPacker.git',
+  META_ADD => {
+    resources => {
+      # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git
+      repository => "git://git.shadowcat.co.uk/p5sagit/App-FatPacker.git",
+      homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/App-FatPacker.git',
+    },
+  },
 );
-
-WriteAll;
diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include
new file mode 100644 (file)
index 0000000..0cfde9f
--- /dev/null
@@ -0,0 +1,8 @@
+BEGIN { -e 'Distar' or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") }
+use lib 'Distar/lib';
+use Distar;
+
+author 'mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>';
+
+manifest_include 'bin' => qr/.*/;
+
diff --git a/maint/Makefile.include b/maint/Makefile.include
new file mode 100644 (file)
index 0000000..336847c
--- /dev/null
@@ -0,0 +1,11 @@
+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 $<
diff --git a/maint/bump-version b/maint/bump-version
new file mode 100755 (executable)
index 0000000..26de88b
--- /dev/null
@@ -0,0 +1,36 @@
+#!/usr/bin/env perl
+
+use 5.010;
+use strict;
+use warnings FATAL => 'all';
+use autodie;
+
+chomp(my $LATEST = qx(grep '^[0-9]' Changes | head -1 | awk '{print \$1}'));
+
+my @parts = split /\./, $LATEST;
+
+my $OLD_DECIMAL = sprintf('%i.%03i%03i', @parts);
+
+my %bump_part = (major => 0, minor => 1, bugfix => 2);
+
+my $bump_this = 
+  $bump_part{$ARGV[0]||'bugfix'}
+    // die "no idea which part to bump - $ARGV[0] means nothing to me";
+
+my @new_parts = @parts;
+
+$new_parts[$bump_this]++;
+
+my $NEW_DECIMAL = sprintf('%i.%03i%03i', @new_parts);
+
+warn "Bumping $OLD_DECIMAL -> $NEW_DECIMAL\n";
+
+my $PM_FILE = 'lib/Module/Metadata.pm';
+
+my $file = do { local (@ARGV, $/) = ($PM_FILE); <> };
+
+$file =~ s/(?<=\$VERSION = ')${\quotemeta $OLD_DECIMAL}/${NEW_DECIMAL}/;
+
+open my $out, '>', $PM_FILE;
+
+print $out $file;