r76978 - in /branches/upstream/libmodule-starter-perl/current: Changes META.yml Makefile.PL lib/Module/Starter.pm lib/Module/Starter/App.pm lib/Module/Starter/BuilderSet.pm lib/Module/Starter/Plugin/Template.pm lib/Module/Starter/Simple.pm

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Sat Jul 2 22:03:19 UTC 2011


Author: carnil
Date: Sat Jul  2 22:03:09 2011
New Revision: 76978

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=76978
Log:
[svn-upgrade] new version libmodule-starter-perl (1.580+dfsg)

Modified:
    branches/upstream/libmodule-starter-perl/current/Changes
    branches/upstream/libmodule-starter-perl/current/META.yml
    branches/upstream/libmodule-starter-perl/current/Makefile.PL
    branches/upstream/libmodule-starter-perl/current/lib/Module/Starter.pm
    branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/App.pm
    branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/BuilderSet.pm
    branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/Plugin/Template.pm
    branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/Simple.pm

Modified: branches/upstream/libmodule-starter-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-starter-perl/current/Changes?rev=76978&op=diff
==============================================================================
--- branches/upstream/libmodule-starter-perl/current/Changes (original)
+++ branches/upstream/libmodule-starter-perl/current/Changes Sat Jul  2 22:03:09 2011
@@ -1,4 +1,9 @@
 Revision history for Perl extension Module::Starter
+
+1.58    Sat Jul  2 15:58:46 2011
+
+        * Added prereq on Path::Class (RT #68360).
+        * Doc fixes by Nicholas Bamber and Salvatore Bonaccorso (RT #68385).
 
 1.57    Tue Apr 12 11:07:01 IDT 2011
 
@@ -15,7 +20,7 @@
             will remain an inspiration to many programmers, myself included.
 
         [ENHANCEMENTS]
-        Added hooks for distribution building in App. Thanks to Brian D. Foy.
+        Added hooks for distribution building in App. Thanks to brian d foy.
         MANIFEST is now created via the proper builder.
         Kept create_MANIFEST to act as hook.
         Added Apache license by pfig.

Modified: branches/upstream/libmodule-starter-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-starter-perl/current/META.yml?rev=76978&op=diff
==============================================================================
--- branches/upstream/libmodule-starter-perl/current/META.yml (original)
+++ branches/upstream/libmodule-starter-perl/current/META.yml Sat Jul  2 22:03:09 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Module-Starter
-version:            1.57
+version:            1.58
 abstract:           a simple starter kit for any module
 author:
     - Andy Lester <andy at petdance.com>
@@ -14,6 +14,7 @@
     ExtUtils::Command:  0
     File::Spec:         0
     Getopt::Long:       0
+    Path::Class:        0
     Pod::Usage:         1.21
     Test::Harness:      0.21
     Test::More:         0

Modified: branches/upstream/libmodule-starter-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-starter-perl/current/Makefile.PL?rev=76978&op=diff
==============================================================================
--- branches/upstream/libmodule-starter-perl/current/Makefile.PL (original)
+++ branches/upstream/libmodule-starter-perl/current/Makefile.PL Sat Jul  2 22:03:09 2011
@@ -16,6 +16,7 @@
         'Test::Harness'         => 0.21,
         'ExtUtils::Command'     => 0,
         'File::Spec'            => 0,
+        'Path::Class'           => 0,
         'Getopt::Long'          => 0,
         'Pod::Usage'            => 1.21,
     },

Modified: branches/upstream/libmodule-starter-perl/current/lib/Module/Starter.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-starter-perl/current/lib/Module/Starter.pm?rev=76978&op=diff
==============================================================================
--- branches/upstream/libmodule-starter-perl/current/lib/Module/Starter.pm (original)
+++ branches/upstream/libmodule-starter-perl/current/lib/Module/Starter.pm Sat Jul  2 22:03:09 2011
@@ -10,11 +10,11 @@
 
 =head1 VERSION
 
-Version 1.57
+Version 1.58
 
 =cut
 
-our $VERSION = '1.57';
+our $VERSION = '1.58';
 
 =head1 SYNOPSIS
 
@@ -61,7 +61,7 @@
     verbose      => $verbose,  # bool: print progress messages; defaults to 0
     force        => $force     # bool: overwrite existing files; defaults to 0
 
-The ignores_type is a new feature that allows to create SCM-specific ignore files.
+The ignores_type is a new feature that allows one to create SCM-specific ignore files.
 These are the mappings:
 
     ignores_type => 'generic'  # default, creates 'ignore.txt'

Modified: branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/App.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/App.pm?rev=76978&op=diff
==============================================================================
--- branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/App.pm (original)
+++ branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/App.pm Sat Jul  2 22:03:09 2011
@@ -9,7 +9,7 @@
 use warnings;
 use strict;
 
-our $VERSION = '1.57';
+our $VERSION = '1.58';
 
 use Path::Class;
 use Getopt::Long;

Modified: branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/BuilderSet.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/BuilderSet.pm?rev=76978&op=diff
==============================================================================
--- branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/BuilderSet.pm (original)
+++ branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/BuilderSet.pm Sat Jul  2 22:03:09 2011
@@ -11,11 +11,11 @@
 
 =head1 VERSION
 
-Version 1.57
-
-=cut
-
-our $VERSION = '1.57';
+Version 1.58
+
+=cut
+
+our $VERSION = '1.58';
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/Plugin/Template.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/Plugin/Template.pm?rev=76978&op=diff
==============================================================================
--- branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/Plugin/Template.pm (original)
+++ branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/Plugin/Template.pm Sat Jul  2 22:03:09 2011
@@ -10,11 +10,11 @@
 
 =head1 VERSION
 
-Version 1.57
-
-=cut
-
-our $VERSION = '1.57';
+Version 1.58
+
+=cut
+
+our $VERSION = '1.58';
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/Simple.pm?rev=76978&op=diff
==============================================================================
--- branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/Simple.pm (original)
+++ branches/upstream/libmodule-starter-perl/current/lib/Module/Starter/Simple.pm Sat Jul  2 22:03:09 2011
@@ -17,11 +17,11 @@
 
 =head1 VERSION
 
-Version 1.57
-
-=cut
-
-our $VERSION = '1.57';
+Version 1.58
+
+=cut
+
+our $VERSION = '1.58';
 
 =head1 SYNOPSIS
 
@@ -55,7 +55,7 @@
 =head1 OBJECT METHODS
 
 All the methods documented below are object methods, meant to be called
-internally by the ephemperal objects created during the execution of the class
+internally by the ephemeral objects created during the execution of the class
 method C<create_distro> above.
 
 =head2 postprocess_config




More information about the Pkg-perl-cvs-commits mailing list