r69188 - in /trunk/libpoe-component-server-simplehttp-perl: ./ debian/ lib/POE/Component/Server/ lib/POE/Component/Server/SimpleHTTP/

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Mon Feb 21 03:11:09 UTC 2011


Author: jawnsy-guest
Date: Mon Feb 21 03:10:56 2011
New Revision: 69188

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=69188
Log:
looks good, dch -r

Modified:
    trunk/libpoe-component-server-simplehttp-perl/Changes
    trunk/libpoe-component-server-simplehttp-perl/LICENSE
    trunk/libpoe-component-server-simplehttp-perl/META.yml
    trunk/libpoe-component-server-simplehttp-perl/debian/changelog
    trunk/libpoe-component-server-simplehttp-perl/debian/copyright
    trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP.pm
    trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/Connection.pm
    trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/Response.pm
    trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/State.pm

Modified: trunk/libpoe-component-server-simplehttp-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-server-simplehttp-perl/Changes?rev=69188&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/Changes (original)
+++ trunk/libpoe-component-server-simplehttp-perl/Changes Mon Feb 21 03:10:56 2011
@@ -1,3 +1,48 @@
+==============================
+2011-01-12 20:05:05 +0000 2.08
+==============================
+
+  commit 16849949bbe6b539d549bd7d5713f49441c64471
+  Author: Chris 'BinGOs' Williams <chris at bingosnet.co.uk>
+  Date:   Wed Jan 12 20:05:05 2011 +0000
+  
+    Bumper version
+
+  commit eeb9dd8ee9741a6ec363a2d2cdb1667ce2048488
+  Author: Ed Heil <ed at donor.com>
+  Date:   Wed Jan 12 20:03:10 2011 +0000
+  
+    [PATCH] possible issue with connections RT #64718
+
+    In using POE::Component::Server::SimpleHTTP v. 2.06, we've come
+    across a problem with error messages such as:
+
+    Can't call method "dead" on an undefined value at
+    [...]/POE/Component/Server/SimpleHTTP.pm line 840.
+
+    The line is:
+
+    # Mark the client dead
+
+    $connection->dead(1);
+
+    This happens when our load balancer makes a check to make sure the
+    port is open where the SimpleHTTP server is listening.
+
+    We've fixed it with:
+
+    # Mark the client dead
+
+    $connection->dead(1) if $connection;
+
+    I'm afraid at this point I haven't got the ability to do the
+    low-level debugging necessary to determine exactly how $connection
+    comes to be undef, or whether this is the best way to accomplish the
+    fix in the big picture, but I wanted to share the fix in case you
+    found it useful.
+
+    Signed-off-by: Chris 'BinGOs' Williams <chris at bingosnet.co.uk> 
+
 ==============================
 2010-12-03 23:50:53 +0000 2.06
 ==============================

Modified: trunk/libpoe-component-server-simplehttp-perl/LICENSE
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-server-simplehttp-perl/LICENSE?rev=69188&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/LICENSE (original)
+++ trunk/libpoe-component-server-simplehttp-perl/LICENSE Mon Feb 21 03:10:56 2011
@@ -1,4 +1,4 @@
-This software is copyright (c) 2010 by Apocalypse, Chris Williams, Eriam Schaffter, Marlon Bailey and Philip Gwyn.
+This software is copyright (c) 2011 by Apocalypse, Chris Williams, Eriam Schaffter, Marlon Bailey and Philip Gwyn.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2010 by Apocalypse, Chris Williams, Eriam Schaffter, Marlon Bailey and Philip Gwyn.
+This software is Copyright (c) 2011 by Apocalypse, Chris Williams, Eriam Schaffter, Marlon Bailey and Philip Gwyn.
 
 This is free software, licensed under:
 
@@ -270,7 +270,7 @@
 
 --- The Artistic License 1.0 ---
 
-This software is Copyright (c) 2010 by Apocalypse, Chris Williams, Eriam Schaffter, Marlon Bailey and Philip Gwyn.
+This software is Copyright (c) 2011 by Apocalypse, Chris Williams, Eriam Schaffter, Marlon Bailey and Philip Gwyn.
 
 This is free software, licensed under:
 

Modified: trunk/libpoe-component-server-simplehttp-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-server-simplehttp-perl/META.yml?rev=69188&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/META.yml (original)
+++ trunk/libpoe-component-server-simplehttp-perl/META.yml Mon Feb 21 03:10:56 2011
@@ -24,16 +24,16 @@
 provides:
   POE::Component::Server::SimpleHTTP:
     file: lib/POE/Component/Server/SimpleHTTP.pm
-    version: 2.06
+    version: 2.08
   POE::Component::Server::SimpleHTTP::Connection:
     file: lib/POE/Component/Server/SimpleHTTP/Connection.pm
-    version: 2.06
+    version: 2.08
   POE::Component::Server::SimpleHTTP::Response:
     file: lib/POE/Component/Server/SimpleHTTP/Response.pm
-    version: 2.06
+    version: 2.08
   POE::Component::Server::SimpleHTTP::State:
     file: lib/POE/Component/Server/SimpleHTTP/State.pm
-    version: 2.06
+    version: 2.08
 requires:
   Carp: 0
   HTTP::Date: 0
@@ -51,4 +51,4 @@
   homepage: http://github.com/bingos/poe-component-server-simplehttp/tree
   license: http://dev.perl.org/licenses/
   repository: git://github.com/bingos/poe-component-server-simplehttp.git
-version: 2.06
+version: 2.08

Modified: trunk/libpoe-component-server-simplehttp-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-server-simplehttp-perl/debian/changelog?rev=69188&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/debian/changelog (original)
+++ trunk/libpoe-component-server-simplehttp-perl/debian/changelog Mon Feb 21 03:10:56 2011
@@ -1,3 +1,10 @@
+libpoe-component-server-simplehttp-perl (2.08-1) unstable; urgency=low
+
+  * New upstream release
+  * Refresh copyright information
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Sun, 20 Feb 2011 22:34:06 -0500
+
 libpoe-component-server-simplehttp-perl (2.06-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libpoe-component-server-simplehttp-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-server-simplehttp-perl/debian/copyright?rev=69188&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/debian/copyright (original)
+++ trunk/libpoe-component-server-simplehttp-perl/debian/copyright Mon Feb 21 03:10:56 2011
@@ -1,11 +1,14 @@
 Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
-Maintainer: Chris 'BinGOs' Williams <chris at bingosnet.co.uk>
+Maintainer: Chris Williams <chris at bingosnet.co.uk>
 Source: http://search.cpan.org/dist/POE-Component-Server-SimpleHTTP/
 Name: POE-Component-Server-SimpleHTTP
 
 Files: *
-Copyright: 2010, Apocalypse, Chris Williams, Eriam Schaffter, Marlon Bailey
- and Philip Gwyn
+Copyright: 2011, Apocalypse <perl at 0ne.us>
+ 2011, Chris Williams <chris at bingosnet.co.uk>
+ 2011, Eriam Schaffter <eriam at cpan.org>
+ 2011, Marlon Bailey <mbailey at cpan.org>
+ 2011, Philip Gwyn <perl at pied.nu>
 License: Artistic or GPL-1+
 
 Files: inc/Module/*
@@ -15,7 +18,7 @@
 License: Artistic or GPL-1+
 
 Files: debian/*
-Copyright: 2009, Jonathan Yu <jawnsy at cpan.org>
+Copyright: 2009-2011, Jonathan Yu <jawnsy at cpan.org>
  2009, Ryan Niebur <ryan at debian.org>
  2009-2010, gregor herrmann <gregoa at debian.org>
  2009, Antonio Radici <antonio at dyne.org>

Modified: trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP.pm?rev=69188&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP.pm (original)
+++ trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP.pm Mon Feb 21 03:10:56 2011
@@ -5,7 +5,7 @@
 
 use vars qw($VERSION);
 
-$VERSION = '2.06';
+$VERSION = '2.08';
 
 use POE;
 use POE::Wheel::SocketFactory;
@@ -837,7 +837,7 @@
       delete $self->_responses->{$id};
 
       # Mark the client dead
-      $connection->dead(1);
+      $connection->dead(1) if $connection;
    }
 
    # Success!

Modified: trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/Connection.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/Connection.pm?rev=69188&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/Connection.pm (original)
+++ trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/Connection.pm Mon Feb 21 03:10:56 2011
@@ -4,7 +4,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '2.06';
+our $VERSION = '2.08';
 
 use Socket qw( inet_ntoa unpack_sockaddr_in );
 use POE;

Modified: trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/Response.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/Response.pm?rev=69188&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/Response.pm (original)
+++ trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/Response.pm Mon Feb 21 03:10:56 2011
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '2.06';
+our $VERSION = '2.08';
 
 use base qw( HTTP::Response );
 

Modified: trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/State.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/State.pm?rev=69188&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/State.pm (original)
+++ trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP/State.pm Mon Feb 21 03:10:56 2011
@@ -4,7 +4,7 @@
 use warnings;
 use POE::Wheel::ReadWrite;
 
-our $VERSION = '2.06';
+our $VERSION = '2.08';
 
 use Moose;
 




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