r69774 - in /trunk/libpoe-component-client-http-perl/debian: changelog patches/disable_network_tests.patch patches/fix_WHATIS_entry.patch patches/series rules

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Feb 26 17:19:38 UTC 2011


Author: jawnsy-guest
Date: Sat Feb 26 17:19:22 2011
New Revision: 69774

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=69774
Log:
* Remove whatis patch (applied upstream)
* Disable network tests by default, requiring HAS_INTERNET to be a
  true value in order to run

Removed:
    trunk/libpoe-component-client-http-perl/debian/patches/fix_WHATIS_entry.patch
Modified:
    trunk/libpoe-component-client-http-perl/debian/changelog
    trunk/libpoe-component-client-http-perl/debian/patches/disable_network_tests.patch
    trunk/libpoe-component-client-http-perl/debian/patches/series
    trunk/libpoe-component-client-http-perl/debian/rules

Modified: trunk/libpoe-component-client-http-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-client-http-perl/debian/changelog?rev=69774&op=diff
==============================================================================
--- trunk/libpoe-component-client-http-perl/debian/changelog (original)
+++ trunk/libpoe-component-client-http-perl/debian/changelog Sat Feb 26 17:19:22 2011
@@ -1,8 +1,5 @@
 libpoe-component-client-http-perl (0.942-1) UNRELEASED; urgency=low
 
-  WAITS-FOR: libpoe-component-client-keepalive-perl 0.2650
-
-  [ Jonathan Yu ]
   * New upstream release
   * Rewrite control description
   * Standards-Version 3.9.1 (no changes)
@@ -11,8 +8,11 @@
   * Refresh copyright information
   * Rewrite control description
   * Email change: Jose Luis Rivas -> ghostbar at debian.org
-
- -- Jonathan Yu <jawnsy at cpan.org>  Mon, 21 Feb 2011 20:43:51 -0500
+  * Remove whatis patch (applied upstream)
+  * Disable network tests by default, requiring HAS_INTERNET to be a
+    true value in order to run
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Sat, 26 Feb 2011 12:42:27 -0500
 
 libpoe-component-client-http-perl (0.895-1) unstable; urgency=low
 

Modified: trunk/libpoe-component-client-http-perl/debian/patches/disable_network_tests.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-client-http-perl/debian/patches/disable_network_tests.patch?rev=69774&op=diff
==============================================================================
--- trunk/libpoe-component-client-http-perl/debian/patches/disable_network_tests.patch (original)
+++ trunk/libpoe-component-client-http-perl/debian/patches/disable_network_tests.patch Sat Feb 26 17:19:22 2011
@@ -3,15 +3,24 @@
 
 --- a/t/57_pravus_progress.t
 +++ b/t/57_pravus_progress.t
-@@ -4,6 +4,11 @@
+@@ -4,12 +4,19 @@
  use warnings;
  use strict;
  
-+if ($ENV{NOINTERNET} ) {
-+  use Test::More skip_all => "Tests disabled that need internet access.";
+-use Test::More tests => 2;
++use Test::More;
++
++unless ($ENV{HAS_INTERNET} ) {
++  plan skip_all => "Tests disabled that need internet access.";
 +}
 +
-+
- use Test::More tests => 2;
  use HTTP::Request::Common qw(GET);
  use POE;
+ use POE::Component::Client::HTTP;
+ use Test::POE::Server::TCP;
+ 
++plan tests => 2;
++
+ POE::Component::Client::HTTP->spawn(
+   Alias           => 'ua',
+   Streaming       => 4000,

Modified: trunk/libpoe-component-client-http-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-client-http-perl/debian/patches/series?rev=69774&op=diff
==============================================================================
--- trunk/libpoe-component-client-http-perl/debian/patches/series (original)
+++ trunk/libpoe-component-client-http-perl/debian/patches/series Sat Feb 26 17:19:22 2011
@@ -1,2 +1,1 @@
-fix_WHATIS_entry.patch
 disable_network_tests.patch

Modified: trunk/libpoe-component-client-http-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpoe-component-client-http-perl/debian/rules?rev=69774&op=diff
==============================================================================
--- trunk/libpoe-component-client-http-perl/debian/rules (original)
+++ trunk/libpoe-component-client-http-perl/debian/rules Sat Feb 26 17:19:22 2011
@@ -7,7 +7,7 @@
 	dh $@
 
 override_dh_auto_test:
-	http_proxy= HTTP_PROXY= CGI_HTTP_PROXY= NOINTERNET=1 \
+	http_proxy= HTTP_PROXY= CGI_HTTP_PROXY= \
 	dh_auto_test
 
 override_dh_installexamples:




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