r42394 - in /branches/upstream/libpoe-component-pluggable-perl/current: Changes META.yml lib/POE/Component/Pluggable.pm lib/POE/Component/Pluggable/Constants.pm lib/POE/Component/Pluggable/Pipeline.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Aug 22 01:09:51 UTC 2009


Author: jawnsy-guest
Date: Sat Aug 22 01:09:45 2009
New Revision: 42394

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=42394
Log:
[svn-upgrade] Integrating new upstream version, libpoe-component-pluggable-perl (1.24)

Modified:
    branches/upstream/libpoe-component-pluggable-perl/current/Changes
    branches/upstream/libpoe-component-pluggable-perl/current/META.yml
    branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable.pm
    branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable/Constants.pm
    branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable/Pipeline.pm

Modified: branches/upstream/libpoe-component-pluggable-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-pluggable-perl/current/Changes?rev=42394&op=diff
==============================================================================
--- branches/upstream/libpoe-component-pluggable-perl/current/Changes (original)
+++ branches/upstream/libpoe-component-pluggable-perl/current/Changes Sat Aug 22 01:09:45 2009
@@ -1,5 +1,8 @@
 POE::Component::Pluggable
 =========================
+
+1.24  Tue Aug 18 09:17:59 BST 2009
+    - Applied patch from Jonathan Steinert to fix RT #48788
 
 1.22  Thu Jul 23 14:12:05 BST 2009
     - Added constant 1.17 as a prereq. Versions prior to 1.03

Modified: branches/upstream/libpoe-component-pluggable-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-pluggable-perl/current/META.yml?rev=42394&op=diff
==============================================================================
--- branches/upstream/libpoe-component-pluggable-perl/current/META.yml (original)
+++ branches/upstream/libpoe-component-pluggable-perl/current/META.yml Sat Aug 22 01:09:45 2009
@@ -22,13 +22,13 @@
 provides:
   POE::Component::Pluggable:
     file: lib/POE/Component/Pluggable.pm
-    version: 1.22
+    version: 1.24
   POE::Component::Pluggable::Constants:
     file: lib/POE/Component/Pluggable/Constants.pm
-    version: 1.22
+    version: 1.24
   POE::Component::Pluggable::Pipeline:
     file: lib/POE/Component/Pluggable/Pipeline.pm
-    version: 1.22
+    version: 1.24
 requires:
   POE: 1.004
   Task::Weaken: 0
@@ -38,4 +38,4 @@
   homepage: http://github.com/bingos/poe-component-pluggable/tree
   license: http://dev.perl.org/licenses/
   repository: git://github.com/bingos/poe-component-pluggable.git
-version: 1.22
+version: 1.24

Modified: branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable.pm?rev=42394&op=diff
==============================================================================
--- branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable.pm (original)
+++ branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable.pm Sat Aug 22 01:09:45 2009
@@ -6,7 +6,7 @@
 use POE::Component::Pluggable::Pipeline;
 use POE::Component::Pluggable::Constants qw(:ALL);
 
-our $VERSION='1.22';
+our $VERSION='1.24';
 
 sub _pluggable_init {
     my ($self, %opts) = @_;

Modified: branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable/Constants.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable/Constants.pm?rev=42394&op=diff
==============================================================================
--- branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable/Constants.pm (original)
+++ branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable/Constants.pm Sat Aug 22 01:09:45 2009
@@ -2,7 +2,7 @@
 
 use strict;
 use warnings;
-our $VERSION = '1.22';
+our $VERSION = '1.24';
 
 require Exporter;
 use base qw(Exporter);

Modified: branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable/Pipeline.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable/Pipeline.pm?rev=42394&op=diff
==============================================================================
--- branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable/Pipeline.pm (original)
+++ branches/upstream/libpoe-component-pluggable-perl/current/lib/POE/Component/Pluggable/Pipeline.pm Sat Aug 22 01:09:45 2009
@@ -5,19 +5,21 @@
 use Carp;
 use Scalar::Util qw(weaken);
 
-our $VERSION = '1.22';
+our $VERSION = '1.24';
 
 sub new {
     my ($package, $pluggable) = @_;
 
-    weaken($pluggable);
-
-    return bless {
+    my $self = bless {
         PLUGS    => {},
         PIPELINE => [],
         HANDLES  => {},
         OBJECT   => $pluggable,
     }, $package;
+
+    weaken($self->{OBJECT});
+
+    return $self;
 }
 
 sub push {




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