Distar
Matt S Trout [Thu, 9 Aug 2012 12:25:11 +0000 (12:25 +0000)]
Changes
Makefile.PL [new file with mode: 0644]
dist.ini [deleted file]
lib/Sub/Exporter/Progressive.pm
maint/Makefile.PL.include [new file with mode: 0644]

diff --git a/Changes b/Changes
index 16f1af4..350ae05 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,3 @@
-Revision history for {{$dist->name}}
-
 {{$NEXT}}
   - fix skipping when Sub::Exporter isn't installed
 
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..5cd9f1f
--- /dev/null
@@ -0,0 +1,10 @@
+use strict;
+use warnings FATAL => 'all';
+use 5.008001;
+use ExtUtils::MakeMaker;
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+
+WriteMakefile(
+  NAME => 'Sub-Exporter-Progressive',
+  VERSION_FROM => 'lib/Sub/Exporter/Progressive.pm',
+);
diff --git a/dist.ini b/dist.ini
deleted file mode 100644 (file)
index 3131c21..0000000
--- a/dist.ini
+++ /dev/null
@@ -1,27 +0,0 @@
-name             = Sub-Exporter-Progressive
-author           = Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>
-license          = Perl_5
-copyright_holder = Arthur Axel "fREW" Schmidt
-version          = 0.001003
-
-[NextRelease]
-[@Git]
-[@Filter]
-bundle = @Basic
-remove = MetaYAML
-
-[MetaResources]
-repository.url    = git://github.com/frioux/Sub-Exporter-Progressive.git
-repository.web    = http://github.com/frioux/Sub-Exporter-Progressive
-repository.type   = git
-
-[MetaJSON]
-[PodWeaver]
-[OurPkgVersion]
-[ReadmeFromPod]
-[PodSyntaxTests]
-
-[Prereqs]
-Exporter         = 0
-List::Util       = 0
-
index 7e41de2..886f642 100644 (file)
@@ -1,11 +1,9 @@
 package Sub::Exporter::Progressive;
 
-# ABSTRACT: Only use Sub::Exporter if you need it
-
 use strict;
 use warnings;
 
-# VERSION
+our $VERSION = '0.001004';
 
 use List::Util 'first';
 
@@ -89,6 +87,10 @@ sub sub_export_options {
 
 1;
 
+=head1 NAME
+
+Sub::Exporter::Progressive - Only use Sub::Exporter if you need it
+
 =head1 SYNOPSIS
 
  package Syntax::Keyword::Gather;
@@ -123,3 +125,25 @@ Note that this module will export C<@EXPORT> and C<@EXPORT_OK> package
 variables for C<Exporter> to work.  Additionally, if your package uses advanced
 C<Sub::Exporter> features like currying, this module will only ever use
 C<Sub::Exporter>, so you might as well use it directly.
+
+=head1 AUTHOR
+
+frew - Arthur Axel Schmidt (cpan:FREW) <frioux+cpan@gmail.com>
+
+=head1 CONTRIBUTORS
+
+ilmari - Dagfinn Ilmari MannsÃ¥ker (cpan:ILMARI) <ilmari@ilmari.org>
+
+mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
+
+=head1 COPYRIGHT
+
+Copyright (c) 2012 the Sub::Exporter::Progressive L</AUTHOR> and
+L</CONTRIBUTORS> as listed above.
+
+=head1 LICENSE
+
+This library is free software and may be distributed under the same terms
+as perl itself.
+
+=cut
diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include
new file mode 100644 (file)
index 0000000..da4cf69
--- /dev/null
@@ -0,0 +1,7 @@
+BEGIN { -e 'Distar' or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") }
+use lib 'Distar/lib';
+use Distar;
+
+author 'frew - Arthur Axel Schmidt (cpan:FREW) <frioux+cpan@gmail.com>';
+
+1;