r58040 - in /branches/upstream/libobject-insideout-perl/current: ./ examples/ lib/Bundle/Object/ lib/Object/ lib/Object/InsideOut/ t/

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed May 19 01:43:33 UTC 2010


Author: jawnsy-guest
Date: Wed May 19 01:42:35 2010
New Revision: 58040

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=58040
Log:
[svn-upgrade] Integrating new upstream version, libobject-insideout-perl (3.67)

Modified:
    branches/upstream/libobject-insideout-perl/current/Changes
    branches/upstream/libobject-insideout-perl/current/META.yml
    branches/upstream/libobject-insideout-perl/current/README
    branches/upstream/libobject-insideout-perl/current/examples/YAPI.pm
    branches/upstream/libobject-insideout-perl/current/lib/Bundle/Object/InsideOut.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut.pod
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Autoload.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Chained.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Cumulative.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Dump.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Dynamic.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Exception.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Foreign.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Metadata.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Overload.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Secure.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Universal.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Util.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/attributes.pm
    branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/lvalue.pm
    branches/upstream/libobject-insideout-perl/current/t/27-exception.t

Modified: branches/upstream/libobject-insideout-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/Changes?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/Changes (original)
+++ branches/upstream/libobject-insideout-perl/current/Changes Wed May 19 01:42:35 2010
@@ -1,4 +1,7 @@
 Revision history for Perl extension Object::InsideOut.
+
+3.67 Mon May 17 23:22:44 2010
+	- More fixes for $@ changes
 
 3.66 Fri May 14 13:31:04 2010
 	- More fixes for $@ changes

Modified: branches/upstream/libobject-insideout-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/META.yml?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/META.yml (original)
+++ branches/upstream/libobject-insideout-perl/current/META.yml Wed May 19 01:42:35 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Object-InsideOut
-version:            3.66
+version:            3.67
 abstract:           Comprehensive inside-out object support module
 author:
     - Jerry D. Hedden <jdhedden AT cpan DOT org>
@@ -25,7 +25,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.56
+generated_by:       ExtUtils::MakeMaker version 6.5601
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libobject-insideout-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/README?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/README (original)
+++ branches/upstream/libobject-insideout-perl/current/README Wed May 19 01:42:35 2010
@@ -1,4 +1,4 @@
-Object-InsideOut version 3.66
+Object-InsideOut version 3.67
 =============================
 
 This module provides comprehensive support for implementing classes using the

Modified: branches/upstream/libobject-insideout-perl/current/examples/YAPI.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/examples/YAPI.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/examples/YAPI.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/examples/YAPI.pm Wed May 19 01:42:35 2010
@@ -2,7 +2,7 @@
     use strict;
     use warnings;
 
-    our $VERSION = '3.66';
+    our $VERSION = '3.67';
 
     #####
     #
@@ -22,7 +22,7 @@
         $threaded_okay = !$@;
     }
 
-    use Object::InsideOut 3.66;
+    use Object::InsideOut 3.67;
 
     # Default progress indicator is a twirling bar
     my @yapi :Field
@@ -550,7 +550,7 @@
 =head1 SEE ALSO
 
 Annotated POD for Term::YAPI:
-L<http://annocpan.org/~JDHEDDEN/Object-InsideOut-3.66/examples/YAPI.pm>
+L<http://annocpan.org/~JDHEDDEN/Object-InsideOut-3.67/examples/YAPI.pm>
 
 L<Object::InsideOut>, L<threads>, L<Thread::Queue>
 

Modified: branches/upstream/libobject-insideout-perl/current/lib/Bundle/Object/InsideOut.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Bundle/Object/InsideOut.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Bundle/Object/InsideOut.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Bundle/Object/InsideOut.pm Wed May 19 01:42:35 2010
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '3.66';
+our $VERSION = '3.67';
 $VERSION = eval $VERSION;
 
 1;
@@ -58,7 +58,7 @@
 
 Exception::Class 1.30           - Error handling
 
-Object::InsideOut 3.66          - Inside-out object support
+Object::InsideOut 3.67          - Inside-out object support
 
 URI 1.54                        - Used by LWP::UserAgent
 

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut.pm Wed May 19 01:42:35 2010
@@ -5,12 +5,12 @@
 use strict;
 use warnings;
 
-our $VERSION = '3.66';
+our $VERSION = '3.67';
 $VERSION = eval $VERSION;
 
-use Object::InsideOut::Exception 3.66;
-use Object::InsideOut::Util 3.66 qw(create_object hash_re is_it make_shared);
-use Object::InsideOut::Metadata 3.66;
+use Object::InsideOut::Exception 3.67;
+use Object::InsideOut::Util 3.67 qw(create_object hash_re is_it make_shared);
+use Object::InsideOut::Metadata 3.67;
 
 require B;
 

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut.pod
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut.pod?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut.pod (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut.pod Wed May 19 01:42:35 2010
@@ -4,7 +4,7 @@
 
 =head1 VERSION
 
-This document describes Object::InsideOut version 3.66
+This document describes Object::InsideOut version 3.67
 
 =head1 SYNOPSIS
 
@@ -3227,7 +3227,7 @@
 L<http://www.cpanforum.com/dist/Object-InsideOut>
 
 Annotated POD for Object::InsideOut:
-L<http://annocpan.org/~JDHEDDEN/Object-InsideOut-3.66/lib/Object/InsideOut.pm>
+L<http://annocpan.org/~JDHEDDEN/Object-InsideOut-3.67/lib/Object/InsideOut.pm>
 
 Source repository:
 L<http://code.google.com/p/object-insideout/>

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Autoload.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Autoload.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Autoload.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Autoload.pm Wed May 19 01:42:35 2010
@@ -172,7 +172,7 @@
 
 
 # Ensure correct versioning
-($Object::InsideOut::VERSION == 3.66)
+($Object::InsideOut::VERSION == 3.67)
     or die("Version mismatch\n");
 
 # EOF

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Chained.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Chained.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Chained.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Chained.pm Wed May 19 01:42:35 2010
@@ -181,7 +181,7 @@
 
 
 # Ensure correct versioning
-($Object::InsideOut::VERSION == 3.66)
+($Object::InsideOut::VERSION == 3.67)
     or die("Version mismatch\n");
 
 # EOF

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Cumulative.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Cumulative.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Cumulative.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Cumulative.pm Wed May 19 01:42:35 2010
@@ -206,11 +206,11 @@
 use strict;
 use warnings;
 
-our $VERSION = '3.66';
+our $VERSION = '3.67';
 $VERSION = eval $VERSION;
 
-use Object::InsideOut 3.66;
-use Object::InsideOut::Metadata 3.66;
+use Object::InsideOut 3.67;
+use Object::InsideOut::Metadata 3.67;
 
 my @VALUES  :Field :Arg(VALUES);
 my @CLASSES :Field :Arg(CLASSES);
@@ -260,7 +260,7 @@
 
 
 # Ensure correct versioning
-($Object::InsideOut::VERSION == 3.66)
+($Object::InsideOut::VERSION == 3.67)
     or die("Version mismatch\n");
 
 # EOF

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Dump.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Dump.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Dump.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Dump.pm Wed May 19 01:42:35 2010
@@ -205,7 +205,7 @@
 
 
 # Ensure correct versioning
-($Object::InsideOut::VERSION == 3.66)
+($Object::InsideOut::VERSION == 3.67)
     or die("Version mismatch\n");
 
 # EOF

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Dynamic.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Dynamic.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Dynamic.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Dynamic.pm Wed May 19 01:42:35 2010
@@ -178,7 +178,7 @@
 
 
 # Ensure correct versioning
-($Object::InsideOut::VERSION == 3.66)
+($Object::InsideOut::VERSION == 3.67)
     or die("Version mismatch\n");
 
 # EOF

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Exception.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Exception.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Exception.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Exception.pm Wed May 19 01:42:35 2010
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '3.66';
+our $VERSION = '3.67';
 $VERSION = eval $VERSION;
 
 # Exceptions generated by this module

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Foreign.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Foreign.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Foreign.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Foreign.pm Wed May 19 01:42:35 2010
@@ -270,7 +270,7 @@
 
 
 # Ensure correct versioning
-($Object::InsideOut::VERSION == 3.66)
+($Object::InsideOut::VERSION == 3.67)
     or die("Version mismatch\n");
 
 # EOF

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Metadata.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Metadata.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Metadata.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Metadata.pm Wed May 19 01:42:35 2010
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '3.66';
+our $VERSION = '3.67';
 $VERSION = eval $VERSION;
 
 # Stores method metadata
@@ -99,7 +99,7 @@
 
 ### Object Interface ###
 
-use Object::InsideOut 3.66;
+use Object::InsideOut 3.67;
 
 my @CLASSES :Field;
 my @FOREIGN :Field;
@@ -268,7 +268,7 @@
 
 =head1 VERSION
 
-This document describes Object::InsideOut::Metadata version 3.66
+This document describes Object::InsideOut::Metadata version 3.67
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Overload.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Overload.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Overload.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Overload.pm Wed May 19 01:42:35 2010
@@ -83,7 +83,7 @@
 
 
 # Ensure correct versioning
-($Object::InsideOut::VERSION == 3.66)
+($Object::InsideOut::VERSION == 3.67)
     or die("Version mismatch\n");
 
 # EOF

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Secure.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Secure.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Secure.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Secure.pm Wed May 19 01:42:35 2010
@@ -2,10 +2,10 @@
     use strict;
     use warnings;
 
-    our $VERSION = '3.66';
+    our $VERSION = '3.67';
     $VERSION = eval $VERSION;
 
-    use Object::InsideOut 3.66 ':hash_only';
+    use Object::InsideOut 3.67 ':hash_only';
 
     # Holds used IDs
     my %used :Field = ( 0 => undef );

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Universal.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Universal.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Universal.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Universal.pm Wed May 19 01:42:35 2010
@@ -211,7 +211,7 @@
 
 
 # Ensure correct versioning
-($Object::InsideOut::VERSION == 3.66)
+($Object::InsideOut::VERSION == 3.67)
     or die("Version mismatch\n");
 
 # EOF

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Util.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Util.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Util.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/Util.pm Wed May 19 01:42:35 2010
@@ -5,10 +5,10 @@
 use strict;
 use warnings;
 
-our $VERSION = '3.66';
+our $VERSION = '3.67';
 $VERSION = eval $VERSION;
 
-use Object::InsideOut::Metadata 3.66;
+use Object::InsideOut::Metadata 3.67;
 
 ### Module Initialization ###
 

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/attributes.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/attributes.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/attributes.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/attributes.pm Wed May 19 01:42:35 2010
@@ -79,7 +79,7 @@
 
 
 # Ensure correct versioning
-($Object::InsideOut::VERSION == 3.66)
+($Object::InsideOut::VERSION == 3.67)
     or die("Version mismatch\n");
 
 # EOF

Modified: branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/lvalue.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/lvalue.pm?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/lvalue.pm (original)
+++ branches/upstream/libobject-insideout-perl/current/lib/Object/InsideOut/lvalue.pm Wed May 19 01:42:35 2010
@@ -157,7 +157,7 @@
 
 
 # Ensure correct versioning
-($Object::InsideOut::VERSION == 3.66)
+($Object::InsideOut::VERSION == 3.67)
     or die("Version mismatch\n");
 
 # EOF

Modified: branches/upstream/libobject-insideout-perl/current/t/27-exception.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libobject-insideout-perl/current/t/27-exception.t?rev=58040&op=diff
==============================================================================
--- branches/upstream/libobject-insideout-perl/current/t/27-exception.t (original)
+++ branches/upstream/libobject-insideout-perl/current/t/27-exception.t Wed May 19 01:42:35 2010
@@ -73,10 +73,10 @@
     my $obj = Foo->new('DEST' => 1);
     ok($obj && !$@ && !@errs, 'Have object');
     undef($obj);
-    if ($] < 5.013001) {
+    if ($] < 5.013) {
         ok($@, 'Got destroy exception');
         like($@, qr/Die in destruct/, 'Die in destroy');
-    } else {
+    } elsif ($] > 5.013) {
         ok(! $@, 'No destroy exception');
     }
     like($errs[0], qr/Die in destruct/, 'Die in destroy warning');
@@ -87,10 +87,10 @@
     my $obj = eval { Foo->new('INIT' => 1, 'DEST' => 1); };
     ok(! $obj, 'No object');
     like($@->Error(), qr/Die in init/, 'Die in init');
-    if ($] < 5.013001) {
+    if ($] < 5.013) {
         like($@->Chain()->Error(), qr/Die in destruct/, 'Combined errors');
         ok(! @errs, 'No warnings');
-    } else {
+    } elsif ($] > 5.013) {
         like($errs[0], qr/Die in destruct/, 'Die in destroy warning');
     }
     undef($@); @errs = ();




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