aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Retornaz <gentoo@retornaz.com>2018-12-20 15:49:54 +0100
committerAnthony G. Basile <blueness@gentoo.org>2018-12-20 12:11:35 -0500
commitba62527e2b40d29d0e0e252d5baf063fe2ff8e90 (patch)
treef4b2b9a6764c93dd4aa641489528a522677aff48 /dev-perl/Net-SSLeay/files/Net-SSLeay-1.82-fix-network-tests.patch
parentdev-util/cargo: openssl-sys crate bump to 0.9.40 for libressl 2.9.0 (diff)
downloadlibressl-ba62527e2b40d29d0e0e252d5baf063fe2ff8e90.tar.gz
libressl-ba62527e2b40d29d0e0e252d5baf063fe2ff8e90.tar.bz2
libressl-ba62527e2b40d29d0e0e252d5baf063fe2ff8e90.zip
dev-perl/Net-SSLeay: new package
Signed-off-by: Quentin Retornaz <gentoo@retornaz.com> Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'dev-perl/Net-SSLeay/files/Net-SSLeay-1.82-fix-network-tests.patch')
-rw-r--r--dev-perl/Net-SSLeay/files/Net-SSLeay-1.82-fix-network-tests.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-perl/Net-SSLeay/files/Net-SSLeay-1.82-fix-network-tests.patch b/dev-perl/Net-SSLeay/files/Net-SSLeay-1.82-fix-network-tests.patch
new file mode 100644
index 0000000..6c3e768
--- /dev/null
+++ b/dev-perl/Net-SSLeay/files/Net-SSLeay-1.82-fix-network-tests.patch
@@ -0,0 +1,29 @@
+From 36c14369372f0371e033019c9cea197b31a93bde Mon Sep 17 00:00:00 2001
+From: Kent Fredric <kentnl@gentoo.org>
+Date: Sat, 5 Mar 2016 12:41:11 +1300
+Subject: Fix network tests re: Networking
+
+---
+ inc/Module/Install/PRIVATE/Net/SSLeay.pm | 6 +-----
+ 1 file changed, 1 insertion(+), 5 deletions(-)
+
+diff --git a/inc/Module/Install/PRIVATE/Net/SSLeay.pm b/inc/Module/Install/PRIVATE/Net/SSLeay.pm
+index 0a3aa24..f27b43f 100644
+--- a/inc/Module/Install/PRIVATE/Net/SSLeay.pm
++++ b/inc/Module/Install/PRIVATE/Net/SSLeay.pm
+@@ -46,11 +46,7 @@ EOM
+ LIBS => join(' ', (map {"-L$_"} @{$opts->{lib_paths}}), (map {"-l$_"} @{$opts->{lib_links}})),
+ );
+
+- if ( $self->prompt(
+- "Do you want to run external tests?\n".
+- "These tests *will* *fail* if you do not have network connectivity.",
+- 'n',
+- ) =~ /^y/i ) {
++ if ( 'yes' eq ( $ENV{NETWORK_TESTS} || '' ) ) {
+ $self->tests('t/*/*.t t/*/*/*.t');
+ } else {
+ $self->tests('t/local/*.t t/handle/local/*.t');
+--
+2.14.3
+