r14922 - in /trunk/libpoe-component-server-simplehttp-perl: Changes META.yml Makefile.PL debian/changelog lib/POE/Component/Server/SimpleHTTP.pm

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


Author: tincho-guest
Date: Thu Feb 14 12:30:05 2008
New Revision: 14922

URL: http://svn.debian.org/wsvn/?sc=1&rev=14922
Log:
* New upstream release, before we could upload :). It adds the versioned
  build-dep on libpoe-component-client-http-perl, as I requested in
  CPAN#33201.

Modified:
    trunk/libpoe-component-server-simplehttp-perl/Changes
    trunk/libpoe-component-server-simplehttp-perl/META.yml
    trunk/libpoe-component-server-simplehttp-perl/Makefile.PL
    trunk/libpoe-component-server-simplehttp-perl/debian/changelog
    trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP.pm

Modified: trunk/libpoe-component-server-simplehttp-perl/Changes
URL: http://svn.debian.org/wsvn/trunk/libpoe-component-server-simplehttp-perl/Changes?rev=14922&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/Changes (original)
+++ trunk/libpoe-component-server-simplehttp-perl/Changes Thu Feb 14 12:30:05 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: trunk/libpoe-component-server-simplehttp-perl/META.yml
URL: http://svn.debian.org/wsvn/trunk/libpoe-component-server-simplehttp-perl/META.yml?rev=14922&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/META.yml (original)
+++ trunk/libpoe-component-server-simplehttp-perl/META.yml Thu Feb 14 12:30:05 2008
@@ -26,4 +26,4 @@
   Socket: 0
   Storable: 0
   Sys::Hostname: 0
-version: 1.40
+version: 1.42

Modified: trunk/libpoe-component-server-simplehttp-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/trunk/libpoe-component-server-simplehttp-perl/Makefile.PL?rev=14922&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/Makefile.PL (original)
+++ trunk/libpoe-component-server-simplehttp-perl/Makefile.PL Thu Feb 14 12:30:05 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: trunk/libpoe-component-server-simplehttp-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libpoe-component-server-simplehttp-perl/debian/changelog?rev=14922&op=diff
==============================================================================
--- trunk/libpoe-component-server-simplehttp-perl/debian/changelog (original)
+++ trunk/libpoe-component-server-simplehttp-perl/debian/changelog Thu Feb 14 12:30:05 2008
@@ -1,8 +1,11 @@
-libpoe-component-server-simplehttp-perl (1.40-1) UNRELEASED; urgency=low
+libpoe-component-server-simplehttp-perl (1.42-1) UNRELEASED; urgency=low
 
   TODO: missing some dependencies: libpoe-perl (>= 2:0.9999),
   libpoe-component-client-http-perl (>= 0.82).
 
   * Initial Release. (Closes: #465545)
+  * New upstream release, before we could upload :). It adds the versioned
+    build-dep on libpoe-component-client-http-perl, as I requested in
+    CPAN#33201.
 
  -- Martín Ferrari <martin.ferrari at gmail.com>  Wed, 13 Feb 2008 03:36:10 -0200

Modified: trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP.pm
URL: http://svn.debian.org/wsvn/trunk/libpoe-component-server-simplehttp-perl/lib/POE/Component/Server/SimpleHTTP.pm?rev=14922&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 Thu Feb 14 12:30:05 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