r9558 - in /branches/upstream/libtree-simple-perl/current: Build.PL Changes META.yml Makefile.PL README lib/Tree/Simple.pm

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sat Nov 17 22:05:16 UTC 2007


Author: gregoa-guest
Date: Sat Nov 17 22:05:16 2007
New Revision: 9558

URL: http://svn.debian.org/wsvn/?sc=1&rev=9558
Log:
[svn-upgrade] Integrating new upstream version, libtree-simple-perl (1.18)

Modified:
    branches/upstream/libtree-simple-perl/current/Build.PL
    branches/upstream/libtree-simple-perl/current/Changes
    branches/upstream/libtree-simple-perl/current/META.yml
    branches/upstream/libtree-simple-perl/current/Makefile.PL
    branches/upstream/libtree-simple-perl/current/README
    branches/upstream/libtree-simple-perl/current/lib/Tree/Simple.pm

Modified: branches/upstream/libtree-simple-perl/current/Build.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libtree-simple-perl/current/Build.PL?rev=9558&op=diff
==============================================================================
--- branches/upstream/libtree-simple-perl/current/Build.PL (original)
+++ branches/upstream/libtree-simple-perl/current/Build.PL Sat Nov 17 22:05:16 2007
@@ -1,6 +1,6 @@
 use Module::Build;
 
-use 5.6.0;
+use 5.006;
 
 use strict;
 use warnings;

Modified: branches/upstream/libtree-simple-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libtree-simple-perl/current/Changes?rev=9558&op=diff
==============================================================================
--- branches/upstream/libtree-simple-perl/current/Changes (original)
+++ branches/upstream/libtree-simple-perl/current/Changes Sat Nov 17 22:05:16 2007
@@ -1,4 +1,8 @@
 Revision history for Perl extension Tree::Simple.
+
+1.18 Sun. Nov. 11, 2007
+    - fixing version string to not choke on 5.10
+      (RT #29746)
 
 1.17 Mon Oct. 23, 2006
     - make loading of Scalar::Util::weaken, completely 

Modified: branches/upstream/libtree-simple-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libtree-simple-perl/current/META.yml?rev=9558&op=diff
==============================================================================
--- branches/upstream/libtree-simple-perl/current/META.yml (original)
+++ branches/upstream/libtree-simple-perl/current/META.yml Sat Nov 17 22:05:16 2007
@@ -1,6 +1,6 @@
 ---
 name: Tree-Simple
-version: 1.17
+version: 1.18
 author:
   - 'Stevan Little, E<lt>stevan at iinteractive.comE<gt>'
   - 'Rob Kinyon, E<lt>rob at iinteractive.comE<gt>'
@@ -17,7 +17,7 @@
 provides:
   Tree::Simple:
     file: lib/Tree/Simple.pm
-    version: 1.17
+    version: 1.18
   Tree::Simple::Visitor:
     file: lib/Tree/Simple/Visitor.pm
     version: 1.11

Modified: branches/upstream/libtree-simple-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libtree-simple-perl/current/Makefile.PL?rev=9558&op=diff
==============================================================================
--- branches/upstream/libtree-simple-perl/current/Makefile.PL (original)
+++ branches/upstream/libtree-simple-perl/current/Makefile.PL Sat Nov 17 22:05:16 2007
@@ -2,15 +2,15 @@
 use ExtUtils::MakeMaker;
 WriteMakefile
 (
-          'PL_FILES' => {},
-          'INSTALLDIRS' => 'site',
           'NAME' => 'Tree::Simple',
-          'EXE_FILES' => [],
           'VERSION_FROM' => 'lib/Tree/Simple.pm',
           'PREREQ_PM' => {
-                           'Test::More' => '0.47',
                            'Scalar::Util' => '1.18',
-                           'Test::Exception' => '0.15'
-                         }
+                           'Test::Exception' => '0.15',
+                           'Test::More' => '0.47'
+                         },
+          'INSTALLDIRS' => 'site',
+          'EXE_FILES' => [],
+          'PL_FILES' => {}
         )
 ;

Modified: branches/upstream/libtree-simple-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libtree-simple-perl/current/README?rev=9558&op=diff
==============================================================================
--- branches/upstream/libtree-simple-perl/current/README (original)
+++ branches/upstream/libtree-simple-perl/current/README Sat Nov 17 22:05:16 2007
@@ -1,4 +1,4 @@
-Tree/Simple version 1.17
+Tree/Simple version 1.18
 ========================
 
 See the module documentation for more information.

Modified: branches/upstream/libtree-simple-perl/current/lib/Tree/Simple.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libtree-simple-perl/current/lib/Tree/Simple.pm?rev=9558&op=diff
==============================================================================
--- branches/upstream/libtree-simple-perl/current/lib/Tree/Simple.pm (original)
+++ branches/upstream/libtree-simple-perl/current/lib/Tree/Simple.pm Sat Nov 17 22:05:16 2007
@@ -1,12 +1,12 @@
 
 package Tree::Simple;
 
-use 5.6.0;
+use 5.006;
 
 use strict;
 use warnings;
 
-our $VERSION = '1.17';
+our $VERSION = '1.18';
 
 use Scalar::Util qw(blessed);
 
@@ -99,6 +99,7 @@
     my $child_height = $child->getHeight();
     return if ($self->{_height} >= $child_height + 1);
     $self->{_height} = $child_height + 1;
+    
     # and now bubble up to the parent (unless we are the root)
     $self->getParent()->_setHeight($self) unless $self->isRoot();
 }




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