summaryrefslogtreecommitdiff
path: root/dev-perl/LWP-Online/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-perl/LWP-Online/files
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-perl/LWP-Online/files')
-rw-r--r--dev-perl/LWP-Online/files/1.08-no-network.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/dev-perl/LWP-Online/files/1.08-no-network.patch b/dev-perl/LWP-Online/files/1.08-no-network.patch
deleted file mode 100644
index e6b0419eef09..000000000000
--- a/dev-perl/LWP-Online/files/1.08-no-network.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff -Naur LWP-Online-1.08/lib/LWP/Online.pm LWP-Online-1.08b/lib/LWP/Online.pm
---- LWP-Online-1.08/lib/LWP/Online.pm 2011-07-08 07:02:25.000000000 +0000
-+++ LWP-Online-1.08b/lib/LWP/Online.pm 2016-03-06 06:20:12.351333667 +0000
-@@ -167,6 +167,9 @@
- my @functions = grep { $_ ne ':skip_all' } @_;
- if ( @functions != @_ ) {
- require Test::More;
-+ if ( $ENV{NO_NETWORK_TESTING} ) {
-+ Test::More->import( skip_all => 'NO_NETWORK_TESTING set' );
-+ }
- unless ( online() ) {
- Test::More->import( skip_all => 'Test requires a working internet connection' );
- }
-diff -Naur LWP-Online-1.08/t/02_main.t LWP-Online-1.08b/t/02_main.t
---- LWP-Online-1.08/t/02_main.t 2011-07-08 07:02:25.000000000 +0000
-+++ LWP-Online-1.08b/t/02_main.t 2016-03-06 06:14:41.521243616 +0000
-@@ -7,7 +7,12 @@
- $| = 1;
- $^W = 1;
- }
--
-+BEGIN {
-+ if ( $ENV{NO_NETWORK_TESTING} ) {
-+ require Test::More;
-+ Test::More->import('skip_all', "NO_NETWORK_TESTING set");
-+ }
-+}
- use Test::More tests => 6;
- use LWP::Online 'online', 'offline';
-