r14920 - in /branches/upstream/libpoe-component-server-simplehttp-perl/current: Changes META.yml Makefile.PL lib/POE/Component/Server/SimpleHTTP.pm

tincho-guest at users.alioth.debian.org tincho-guest at users.alioth.debian.org
Thu Feb 14 12:24:51 UTC 2008


Author: tincho-guest
Date: Thu Feb 14 12:24:50 2008
New Revision: 14920

URL: http://svn.debian.org/wsvn/?sc=1&rev=14920
Log:
[svn-upgrade] Integrating new upstream version, libpoe-component-server-simplehttp-perl (1.42)

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

Modified: branches/upstream/libpoe-component-server-simplehttp-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libpoe-component-server-simplehttp-perl/current/Changes?rev=14920&op=diff
==============================================================================
--- branches/upstream/libpoe-component-server-simplehttp-perl/current/Changes (original)
+++ branches/upstream/libpoe-component-server-simplehttp-perl/current/Changes Thu Feb 14 12:24:50 2008
@@ -1,3 +1,22 @@
+========================
+2008-02-13 08:42:59 1.42
+========================
+
+  2008-02-13 08:29:28 (r108) by bingos
+  lib/POE/Component/Server/SimpleHTTP.pm M; Makefile.PL M
+
+    Increased the requirement of PoCo-Client-HTTP to version 0.82 as per
+    RT#33201
+
+========================
+2008-01-17 15:32:57 1.40
+========================
+
+  2008-01-17 15:31:39 (r106) by bingos
+  t/01_load.t M; lib/POE/Component/Server/SimpleHTTP.pm M; Changes M
+
+    "Fixed" the uppercase options annoyance. Hurrah. 
+
 ========================
 2008-01-17 14:53:21 1.38
 ========================

Modified: branches/upstream/libpoe-component-server-simplehttp-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libpoe-component-server-simplehttp-perl/current/META.yml?rev=14920&op=diff
==============================================================================
--- branches/upstream/libpoe-component-server-simplehttp-perl/current/META.yml (original)
+++ branches/upstream/libpoe-component-server-simplehttp-perl/current/META.yml Thu Feb 14 12:24:50 2008
@@ -26,4 +26,4 @@
   Socket: 0
   Storable: 0
   Sys::Hostname: 0
-version: 1.40
+version: 1.42

Modified: branches/upstream/libpoe-component-server-simplehttp-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libpoe-component-server-simplehttp-perl/current/Makefile.PL?rev=14920&op=diff
==============================================================================
--- branches/upstream/libpoe-component-server-simplehttp-perl/current/Makefile.PL (original)
+++ branches/upstream/libpoe-component-server-simplehttp-perl/current/Makefile.PL Thu Feb 14 12:24:50 2008
@@ -22,7 +22,7 @@
 build_requires   'LWP::ConnCache'               =>    0;
 
 my $value = prompt( 'Do you want to test streaming ( requires POE::Component::Client::HTTP ) [y/N]?', 'N' );
-build_requires   'POE::Component::Client::HTTP' =>    0 if $value =~ /^Y$/i;
+build_requires   'POE::Component::Client::HTTP' => 0.82 if $value =~ /^Y$/i;
 
 # Ask users if they want SSL support
 $value = prompt( 'Do you want SSL support ( requires POE::Component::SSLify ) [y/N]?', 'N' );
@@ -36,11 +36,11 @@
 # Add to the prereqs IPC::Shareable?
 if ( $value =~ /^Y$/i ) {
    requires 'IPC::Shareable' => '0';
-   build_requires   'POE::Component::Client::HTTP' =>    0;
+   build_requires   'POE::Component::Client::HTTP' => 0.82;
 }
 
 # Sanity check
 eval { require IPC::Shareable; };
-build_requires 'POE::Component::Client::HTTP' =>    0 unless $@;
+build_requires 'POE::Component::Client::HTTP' => 0.82 unless $@;
 
 WriteAll();

Modified: branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libpoe-component-server-simplehttp-perl/current/lib/POE/Component/Server/SimpleHTTP.pm?rev=14920&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 Thu Feb 14 12:24:50 2008
@@ -9,7 +9,7 @@
 
 # Initialize our version
 # $Revision: 1181 $
-$VERSION = '1.40';
+$VERSION = '1.42';
 
 # Import what we need from the POE namespace
 use POE;




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