From: Matt S Trout Date: Thu, 9 Aug 2012 12:25:11 +0000 (+0000) Subject: Distar X-Git-Tag: v0.001004~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5cf6a81d378418e8f0b49f7f3d99f697e18c364e;p=p5sagit%2FSub-Exporter-Progressive.git Distar --- diff --git a/Changes b/Changes index 16f1af4..350ae05 100644 --- 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 index 0000000..5cd9f1f --- /dev/null +++ b/Makefile.PL @@ -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 index 3131c21..0000000 --- a/dist.ini +++ /dev/null @@ -1,27 +0,0 @@ -name = Sub-Exporter-Progressive -author = Arthur Axel "fREW" Schmidt -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 - diff --git a/lib/Sub/Exporter/Progressive.pm b/lib/Sub/Exporter/Progressive.pm index 7e41de2..886f642 100644 --- a/lib/Sub/Exporter/Progressive.pm +++ b/lib/Sub/Exporter/Progressive.pm @@ -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 to work. Additionally, if your package uses advanced C features like currying, this module will only ever use C, so you might as well use it directly. + +=head1 AUTHOR + +frew - Arthur Axel Schmidt (cpan:FREW) + +=head1 CONTRIBUTORS + +ilmari - Dagfinn Ilmari Mannsåker (cpan:ILMARI) + +mst - Matt S. Trout (cpan:MSTROUT) + +=head1 COPYRIGHT + +Copyright (c) 2012 the Sub::Exporter::Progressive L and +L 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 index 0000000..da4cf69 --- /dev/null +++ b/maint/Makefile.PL.include @@ -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) '; + +1;