summaryrefslogtreecommitdiff
path: root/dev-perl/Weather-Com/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/Weather-Com/files
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-perl/Weather-Com/files')
-rw-r--r--dev-perl/Weather-Com/files/Weather-Com-2.0.0-dotinc.patch68
-rw-r--r--dev-perl/Weather-Com/files/Weather-Com-2.0.0-network.patch54
2 files changed, 0 insertions, 122 deletions
diff --git a/dev-perl/Weather-Com/files/Weather-Com-2.0.0-dotinc.patch b/dev-perl/Weather-Com/files/Weather-Com-2.0.0-dotinc.patch
deleted file mode 100644
index e850732127e5..000000000000
--- a/dev-perl/Weather-Com/files/Weather-Com-2.0.0-dotinc.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-From 8093cbf66931ef66aadf6e68d8132066c49a792f Mon Sep 17 00:00:00 2001
-From: Kent Fredric <kentnl@gentoo.org>
-Date: Wed, 21 Mar 2018 14:46:49 +1300
-Subject: Fix tests for '.' in @INC removal
-
-Bug: https://bugs.gentoo.org/623148
----
- t/Base.t | 2 +-
- t/Cached.t | 2 +-
- t/OOInterface.t | 2 +-
- t/Simple.t | 2 +-
- 4 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/t/Base.t b/t/Base.t
-index 4085b6e..9669bc3 100644
---- a/t/Base.t
-+++ b/t/Base.t
-@@ -16,7 +16,7 @@
- #
- no warnings;
- use Test::More tests => 6;
--require 't/TestData.pm';
-+require './t/TestData.pm';
-
- BEGIN {
- use_ok('Weather::Com::Base');
-diff --git a/t/Cached.t b/t/Cached.t
-index 33aff23..7257374 100644
---- a/t/Cached.t
-+++ b/t/Cached.t
-@@ -16,7 +16,7 @@
- #
- no warnings;
- use Test::More tests => 10;
--require 't/TestData.pm';
-+require './t/TestData.pm';
-
- BEGIN {
- use_ok('Weather::Com::Cached');
-diff --git a/t/OOInterface.t b/t/OOInterface.t
-index 33d75a2..b20535e 100644
---- a/t/OOInterface.t
-+++ b/t/OOInterface.t
-@@ -15,7 +15,7 @@
- #
- no warnings;
- use Test::More tests => 62;
--require 't/TestData.pm';
-+require './t/TestData.pm';
-
- BEGIN {
- use_ok('Weather::Com::Finder');
-diff --git a/t/Simple.t b/t/Simple.t
-index b29c5bd..227383d 100644
---- a/t/Simple.t
-+++ b/t/Simple.t
-@@ -16,7 +16,7 @@
- no warnings;
- use Data::Dumper;
- use Test::More tests => 2;
--require 't/TestData.pm';
-+require './t/TestData.pm';
-
- BEGIN {
- use_ok('Weather::Com::Simple');
---
-2.16.2
-
diff --git a/dev-perl/Weather-Com/files/Weather-Com-2.0.0-network.patch b/dev-perl/Weather-Com/files/Weather-Com-2.0.0-network.patch
deleted file mode 100644
index b16a71f5ca9e..000000000000
--- a/dev-perl/Weather-Com/files/Weather-Com-2.0.0-network.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From d1c3b3bc53f2ce1ceb99e634a2d62f573a539220 Mon Sep 17 00:00:00 2001
-From: Kent Fredric <kentnl@gentoo.org>
-Date: Wed, 21 Mar 2018 14:58:29 +1300
-Subject: Disable tests that require network IO when NO_NETWORK_TESTING set
-
----
- t/OOInterface.t | 9 ++++++++-
- t/Simple.t | 9 ++++++++-
- 2 files changed, 16 insertions(+), 2 deletions(-)
-
-diff --git a/t/OOInterface.t b/t/OOInterface.t
-index b20535e..9591d93 100644
---- a/t/OOInterface.t
-+++ b/t/OOInterface.t
-@@ -14,7 +14,14 @@
- # initialization
- #
- no warnings;
--use Test::More tests => 62;
-+BEGIN {
-+ if ( $ENV{NO_NETWORK_TESTING} ) {
-+ print "1..0 # SKIP NO_NETWORK_TESTING set";
-+ exit 0;
-+ }
-+ require Test::More;
-+ Test::More->import( tests => 62 );
-+}
- require './t/TestData.pm';
-
- BEGIN {
-diff --git a/t/Simple.t b/t/Simple.t
-index 227383d..f4687ec 100644
---- a/t/Simple.t
-+++ b/t/Simple.t
-@@ -14,8 +14,15 @@
- # initialization
- #
- no warnings;
-+BEGIN {
-+ if ( $ENV{NO_NETWORK_TESTING} ) {
-+ print "1..0 # SKIP NO_NETWORK_TESTING set";
-+ exit 0;
-+ }
-+ require Test::More;
-+ Test::More->import( tests => 2 );
-+}
- use Data::Dumper;
--use Test::More tests => 2;
- require './t/TestData.pm';
-
- BEGIN {
---
-2.16.2
-