r41064 - in /trunk/libparse-method-signatures-perl: Changes META.yml Makefile.PL debian/changelog lib/Parse/Method/Signatures.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Fri Jul 31 04:13:37 UTC 2009


Author: jawnsy-guest
Date: Fri Jul 31 04:13:31 2009
New Revision: 41064

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=41064
Log:
WAITS for PPI 1.204 (this provides fixes for that version)
* New upstream release

Modified:
    trunk/libparse-method-signatures-perl/Changes
    trunk/libparse-method-signatures-perl/META.yml
    trunk/libparse-method-signatures-perl/Makefile.PL
    trunk/libparse-method-signatures-perl/debian/changelog
    trunk/libparse-method-signatures-perl/lib/Parse/Method/Signatures.pm

Modified: trunk/libparse-method-signatures-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-method-signatures-perl/Changes?rev=41064&op=diff
==============================================================================
--- trunk/libparse-method-signatures-perl/Changes (original)
+++ trunk/libparse-method-signatures-perl/Changes Fri Jul 31 04:13:31 2009
@@ -1,4 +1,7 @@
 Changelog for Parse::Method::Signatures
+
+1.003010 - 2009/07/30
+  - Make it work with upcomming PPI 1.204
 
 1.003009 - 2009/07/16
   - Fix 'Use of uninitialized value' when using regexps in signatures

Modified: trunk/libparse-method-signatures-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-method-signatures-perl/META.yml?rev=41064&op=diff
==============================================================================
--- trunk/libparse-method-signatures-perl/META.yml (original)
+++ trunk/libparse-method-signatures-perl/META.yml Fri Jul 31 04:13:31 2009
@@ -25,7 +25,7 @@
 provides:
   Parse::Method::Signatures:
     file: lib/Parse/Method/Signatures.pm
-    version: 1.003009
+    version: 1.003010
   Parse::Method::Signatures::Param:
     file: lib/Parse/Method/Signatures/Param.pm
   Parse::Method::Signatures::Param::Bindable:
@@ -60,7 +60,7 @@
   PPI: 1.203
   namespace::clean: 0.10
 resources:
-  homepage: http://github.com/ashb/parse-method-signatures/tree/master
+  homepage: http://github.com/ashb/Parse-Method-Signatures/tree/master
   license: http://dev.perl.org/licenses/
-  repository: git://github.com/ashb/parse-method-signatures.git
-version: 1.003009
+  repository: git://github.com/ashb/Parse-Method-Signatures.git
+version: 1.003010

Modified: trunk/libparse-method-signatures-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-method-signatures-perl/Makefile.PL?rev=41064&op=diff
==============================================================================
--- trunk/libparse-method-signatures-perl/Makefile.PL (original)
+++ trunk/libparse-method-signatures-perl/Makefile.PL Fri Jul 31 04:13:31 2009
@@ -29,8 +29,8 @@
 EOM
 
 resources(
-    'repository' => 'git://github.com/ashb/parse-method-signatures.git',
-    'homepage'   => 'http://github.com/ashb/parse-method-signatures/tree/master',
+    'repository' => 'git://github.com/ashb/Parse-Method-Signatures.git',
+    'homepage'   => 'http://github.com/ashb/Parse-Method-Signatures/tree/master',
 );
 
 auto_provides;

Modified: trunk/libparse-method-signatures-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-method-signatures-perl/debian/changelog?rev=41064&op=diff
==============================================================================
--- trunk/libparse-method-signatures-perl/debian/changelog (original)
+++ trunk/libparse-method-signatures-perl/debian/changelog Fri Jul 31 04:13:31 2009
@@ -1,3 +1,11 @@
+libparse-method-signatures-perl (1.003010-1) UNRELEASED; urgency=low
+
+  WAITS for PPI 1.204 (this provides fixes for that version)
+
+  * New upstream release
+
+ -- Jonathan Yu <frequency at cpan.org>  Thu, 30 Jul 2009 20:11:06 -0400
+
 libparse-method-signatures-perl (1.003009-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libparse-method-signatures-perl/lib/Parse/Method/Signatures.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-method-signatures-perl/lib/Parse/Method/Signatures.pm?rev=41064&op=diff
==============================================================================
--- trunk/libparse-method-signatures-perl/lib/Parse/Method/Signatures.pm (original)
+++ trunk/libparse-method-signatures-perl/lib/Parse/Method/Signatures.pm Fri Jul 31 04:13:31 2009
@@ -15,7 +15,7 @@
 use Carp qw/croak/;
 
 use namespace::clean -except => 'meta';
-our $VERSION = '1.003009';
+our $VERSION = '1.003010';
 our $ERROR_LEVEL = 0;
 our %LEXTABLE;
 our $DEBUG = $ENV{PMS_DEBUG} || 0;
@@ -706,8 +706,9 @@
     $self->error($self->ppi)
       if $self->ppi != $ppi->finish;
 
-    # Hmm we seem to have to call a private method. sucky
-    $list->_set_finish($self->consume_token->clone);
+    # There is no public way to do this as of PPI 1.204_06. I'll add one to the
+    # next release, 1.205 (or so)
+    $list->{finish} = $self->consume_token->clone;
   } else {
     # Just clone the entire [] or {}
     $ret = $ppi->clone;




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