r64195 - in /branches/upstream/libforest-perl/current: ./ lib/ lib/Forest/ lib/Forest/Tree/ lib/Forest/Tree/Builder/ lib/Forest/Tree/Indexer/ lib/Forest/Tree/Loader/ lib/Forest/Tree/Reader/ lib/Forest/Tree/Roles/ lib/Forest/Tree/Writer/

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Sun Oct 24 18:04:56 UTC 2010


Author: carnil
Date: Sun Oct 24 18:02:41 2010
New Revision: 64195

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=64195
Log:
[svn-upgrade] new version libforest-perl (0.09)

Modified:
    branches/upstream/libforest-perl/current/Changes
    branches/upstream/libforest-perl/current/META.yml
    branches/upstream/libforest-perl/current/Makefile.PL
    branches/upstream/libforest-perl/current/lib/Forest.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder/Callback.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder/SimpleTextFile.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Constructor.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Indexer.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Indexer/SimpleUIDIndexer.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Loader.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Loader/SimpleUIDLoader.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Pure.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Reader.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Reader/SimpleTextFile.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/HasNodeFormatter.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/JSONable.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/LoadWithMetaData.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/MetaData.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/ASCIIWithBranches.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/SimpleASCII.pm
    branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/SimpleHTML.pm

Modified: branches/upstream/libforest-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/Changes?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/Changes (original)
+++ branches/upstream/libforest-perl/current/Changes Sun Oct 24 18:02:41 2010
@@ -1,4 +1,7 @@
 Revision history for Perl extension Forest
+
+0.09 Mon. Sep. 27, 2010
+    - silence warnings on new Moose (doy)
 
 0.08 Wed. Jan. 13, 2010
     *** MAJOR REFACTORINGS ***

Modified: branches/upstream/libforest-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/META.yml?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/META.yml (original)
+++ branches/upstream/libforest-perl/current/META.yml Sun Oct 24 18:02:41 2010
@@ -22,10 +22,10 @@
     - t
 requires:
   List::Util: 1.17
-  Moose: 0.74
+  Moose: 0.90
   MooseX::AttributeHelpers: 0.17
   MooseX::Clone: 0.05
   Scalar::Util: 1.17
 resources:
   license: http://dev.perl.org/licenses/
-version: 0.08
+version: 0.09

Modified: branches/upstream/libforest-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/Makefile.PL?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/Makefile.PL (original)
+++ branches/upstream/libforest-perl/current/Makefile.PL Sun Oct 24 18:02:41 2010
@@ -7,7 +7,7 @@
 license 'perl';
 
 # prereqs
-requires 'Moose'                    => '0.74';
+requires 'Moose'                    => '0.90';
 requires 'MooseX::Clone'            => '0.05';
 requires 'MooseX::AttributeHelpers' => '0.17';
 requires 'Scalar::Util'             => '1.17';

Modified: branches/upstream/libforest-perl/current/lib/Forest.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest;
 use Moose ();
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 1;
@@ -29,7 +29,7 @@
 
 =item More documentation
 
-This is 0.08 so it is (still) lacking quite a bit of docs (I am being really lazy sorry).
+This is 0.09 so it is (still) lacking quite a bit of docs (I am being really lazy sorry).
 Although I invite people to read the source, it is quite simple really.
 
 =item More tests

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree.pm Sun Oct 24 18:02:41 2010
@@ -5,7 +5,7 @@
 use Scalar::Util 'reftype', 'refaddr';
 use List::Util   'sum', 'max';
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 extends qw(Forest::Tree::Pure);

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Builder;
 use Moose::Role;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 with qw(Forest::Tree::Constructor);

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder/Callback.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder/Callback.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder/Callback.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder/Callback.pm Sun Oct 24 18:02:41 2010
@@ -1,10 +1,10 @@
 package Forest::Tree::Builder::Callback;
 use Moose::Role;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
-with 'Forest::Tree::Builder' => { excludes => [qw(create_new_subtree)] };
+with 'Forest::Tree::Builder' => { -excludes => [qw(create_new_subtree)] };
 
 has new_subtree_callback => (
     isa => "CodeRef|Str",

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder/SimpleTextFile.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder/SimpleTextFile.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder/SimpleTextFile.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Builder/SimpleTextFile.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Builder::SimpleTextFile;
 use Moose;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 no warnings 'recursion';

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Constructor.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Constructor.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Constructor.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Constructor.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Constructor;
 use Moose::Role;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 requires "tree_class";

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Indexer.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Indexer.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Indexer.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Indexer.pm Sun Oct 24 18:02:41 2010
@@ -2,7 +2,7 @@
 use Moose::Role;
 use MooseX::AttributeHelpers;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 has 'tree' => (

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Indexer/SimpleUIDIndexer.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Indexer/SimpleUIDIndexer.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Indexer/SimpleUIDIndexer.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Indexer/SimpleUIDIndexer.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Indexer::SimpleUIDIndexer;
 use Moose;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 with 'Forest::Tree::Indexer';

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Loader.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Loader.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Loader.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Loader.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Loader;
 use Moose::Role;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 with 'Forest::Tree::Constructor';

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Loader/SimpleUIDLoader.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Loader/SimpleUIDLoader.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Loader/SimpleUIDLoader.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Loader/SimpleUIDLoader.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Loader::SimpleUIDLoader;
 use Moose;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 with 'Forest::Tree::Loader';

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Pure.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Pure.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Pure.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Pure.pm Sun Oct 24 18:02:41 2010
@@ -2,7 +2,7 @@
 use Moose;
 use MooseX::AttributeHelpers;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Scalar::Util 'reftype', 'refaddr';

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Reader.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Reader.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Reader.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Reader.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Reader;
 use Moose::Role;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 with 'Forest::Tree::Loader';

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Reader/SimpleTextFile.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Reader/SimpleTextFile.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Reader/SimpleTextFile.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Reader/SimpleTextFile.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Reader::SimpleTextFile;
 use Moose;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Forest::Tree::Builder::SimpleTextFile;

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/HasNodeFormatter.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/HasNodeFormatter.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/HasNodeFormatter.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/HasNodeFormatter.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Roles::HasNodeFormatter;
 use Moose::Role;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 has 'node_formatter' => (

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/JSONable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/JSONable.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/JSONable.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/JSONable.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Roles::JSONable;
 use Moose::Role;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 requires 'as_json';

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/LoadWithMetaData.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/LoadWithMetaData.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/LoadWithMetaData.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/LoadWithMetaData.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Roles::LoadWithMetaData;
 use Moose::Role;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 has 'metadata' => (

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/MetaData.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/MetaData.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/MetaData.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Roles/MetaData.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Roles::MetaData;
 use Moose::Role;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 has 'metadata' => (

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Writer;
 use Moose::Role;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 has 'tree' => (

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/ASCIIWithBranches.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/ASCIIWithBranches.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/ASCIIWithBranches.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/ASCIIWithBranches.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Writer::ASCIIWithBranches;
 use Moose;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 with 'Forest::Tree::Writer',

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/SimpleASCII.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/SimpleASCII.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/SimpleASCII.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/SimpleASCII.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Writer::SimpleASCII;
 use Moose;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 with 'Forest::Tree::Writer',

Modified: branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/SimpleHTML.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/SimpleHTML.pm?rev=64195&op=diff
==============================================================================
--- branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/SimpleHTML.pm (original)
+++ branches/upstream/libforest-perl/current/lib/Forest/Tree/Writer/SimpleHTML.pm Sun Oct 24 18:02:41 2010
@@ -1,7 +1,7 @@
 package Forest::Tree::Writer::SimpleHTML;
 use Moose;
 
-our $VERSION   = '0.08';
+our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
 with 'Forest::Tree::Writer',




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