r70880 - in /branches/upstream/libpoe-component-server-simplehttp-perl/current: ./ lib/POE/Component/Server/ lib/POE/Component/Server/SimpleHTTP/

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Tue Mar 8 12:21:57 UTC 2011


Author: jawnsy-guest
Date: Tue Mar  8 12:21:45 2011
New Revision: 70880

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=70880
Log:
[svn-upgrade] new version libpoe-component-server-simplehttp-perl (2.10)

Modified:
    branches/upstream/libpoe-component-server-simplehttp-perl/current/Changes
    branches/upstream/libpoe-component-server-simplehttp-perl/current/META.yml
    branches/upstream/libpoe-component-server-simplehttp-perl/current/Makefile.PL
    branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP.pm
    branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/Connection.pm
    branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/Response.pm
    branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/State.pm

Modified: branches/upstream/libpoe-component-server-simplehttp-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-server-simplehttp-perl/current/Changes?rev=70880&op=diff
==============================================================================
--- branches/upstream/libpoe-component-server-simplehttp-perl/current/Changes (original)
+++ branches/upstream/libpoe-component-server-simplehttp-perl/current/Changes Tue Mar  8 12:21:45 2011
@@ -1,3 +1,13 @@
+==============================
+2011-03-08 00:28:07 +0000 2.10
+==============================
+
+  commit 0425908e6f4c9708ed6649c8ab72c074599d8c14
+  Author: Chris 'BinGOs' Williams <chris at bingosnet.co.uk>
+  Date:   Tue Mar 8 00:28:07 2011 +0000
+  
+    Update build requirements and dist fixes 
+
 ==============================
 2011-01-12 20:05:05 +0000 2.08
 ==============================

Modified: branches/upstream/libpoe-component-server-simplehttp-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-server-simplehttp-perl/current/META.yml?rev=70880&op=diff
==============================================================================
--- branches/upstream/libpoe-component-server-simplehttp-perl/current/META.yml (original)
+++ branches/upstream/libpoe-component-server-simplehttp-perl/current/META.yml Tue Mar  8 12:21:45 2011
@@ -4,7 +4,7 @@
   - 'Apocalypse <APOCAL at cpan.org>'
 build_requires:
   ExtUtils::MakeMaker: 6.42
-  POE::Filter::HTTP::Parser: 0.02
+  POE::Filter::HTTP::Parser: 1.06
   Test::More: 0.47
   Test::POE::Client::TCP: 0.1
 configure_requires:
@@ -24,16 +24,16 @@
 provides:
   POE::Component::Server::SimpleHTTP:
     file: lib/POE/Component/Server/SimpleHTTP.pm
-    version: 2.08
+    version: 2.10
   POE::Component::Server::SimpleHTTP::Connection:
     file: lib/POE/Component/Server/SimpleHTTP/Connection.pm
-    version: 2.08
+    version: 2.10
   POE::Component::Server::SimpleHTTP::Response:
     file: lib/POE/Component/Server/SimpleHTTP/Response.pm
-    version: 2.08
+    version: 2.10
   POE::Component::Server::SimpleHTTP::State:
     file: lib/POE/Component/Server/SimpleHTTP/State.pm
-    version: 2.08
+    version: 2.10
 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.08
+version: 2.10

Modified: branches/upstream/libpoe-component-server-simplehttp-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-server-simplehttp-perl/current/Makefile.PL?rev=70880&op=diff
==============================================================================
--- branches/upstream/libpoe-component-server-simplehttp-perl/current/Makefile.PL (original)
+++ branches/upstream/libpoe-component-server-simplehttp-perl/current/Makefile.PL Tue Mar  8 12:21:45 2011
@@ -25,7 +25,7 @@
 requires    'MooseX::POE'      =>    0.205;
 
 build_requires   'Test::More'                   => 0.47;
-build_requires	 'POE::Filter::HTTP::Parser'	=> 0.02;
+build_requires	 'POE::Filter::HTTP::Parser'	=> 1.06;
 build_requires	 'Test::POE::Client::TCP'	=> 0.10;
 
 my $value = prompt( 'Do you want to test streaming ( requires POE::Component::Client::HTTP ) [y/N]?', 'N' );

Modified: branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP.pm?rev=70880&op=diff
==============================================================================
--- branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP.pm (original)
+++ branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP.pm Tue Mar  8 12:21:45 2011
@@ -5,7 +5,7 @@
 
 use vars qw($VERSION);
 
-$VERSION = '2.08';
+$VERSION = '2.10';
 
 use POE;
 use POE::Wheel::SocketFactory;

Modified: branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/Connection.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/Connection.pm?rev=70880&op=diff
==============================================================================
--- branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/Connection.pm (original)
+++ branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/Connection.pm Tue Mar  8 12:21:45 2011
@@ -4,7 +4,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '2.08';
+our $VERSION = '2.10';
 
 use Socket qw( inet_ntoa unpack_sockaddr_in );
 use POE;

Modified: branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/Response.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/Response.pm?rev=70880&op=diff
==============================================================================
--- branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/Response.pm (original)
+++ branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/Response.pm Tue Mar  8 12:21:45 2011
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '2.08';
+our $VERSION = '2.10';
 
 use base qw( HTTP::Response );
 

Modified: branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/State.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/State.pm?rev=70880&op=diff
==============================================================================
--- branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/State.pm (original)
+++ branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP/State.pm Tue Mar  8 12:21:45 2011
@@ -4,7 +4,7 @@
 use warnings;
 use POE::Wheel::ReadWrite;
 
-our $VERSION = '2.08';
+our $VERSION = '2.10';
 
 use Moose;
 




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