File perl-Net-SSLGlue-test.patch of Package perl-Net-SSLGlue
--- Makefile.PL.orig 2014-01-21 11:11:51.244004427 +0100
+++ Makefile.PL 2014-01-21 11:11:46.558989697 +0100
@@ -1,16 +1,13 @@
use ExtUtils::MakeMaker;
require 5.008;
-my $xt = prompt( "Should I do external tests?\n".
- "These tests will fail if there is no internet connection or if a firewall\n".
- "blocks some traffic.\n".
- "[y/N]", 'n' );
+
WriteMakefile(
NAME => 'Net::SSLGlue',
VERSION_FROM => 'lib/Net/SSLGlue.pm',
PREREQ_PM => {
'IO::Socket::SSL' => 1.19,
},
- $xt =~m{^y}i ? ( test => { TESTS => 't/*.t t/external/*.t' }):(),
+ test => { TESTS => 't/*.t' },
META_MERGE => {
resources => {
repository => 'https://github.com/noxxi/p5-net-sslglue',