summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-09-07 19:52:30 +0200
committerPatrice Clement <monsieurp@gentoo.org>2016-09-09 15:27:40 +0200
commit1e380ade2597f504aac4f6f726799a67302a937d (patch)
tree14eb5671b83ea6e0a6614a0719e4f462cc02e9d5 /dev-perl/libwww-perl
parentdev-perl/IPC-Shareable: remove unused patch. (diff)
downloadgentoo-1e380ade2597f504aac4f6f726799a67302a937d.tar.gz
gentoo-1e380ade2597f504aac4f6f726799a67302a937d.tar.bz2
gentoo-1e380ade2597f504aac4f6f726799a67302a937d.zip
dev-perl/libwww-perl: remove unused patch.
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-perl/libwww-perl')
-rw-r--r--dev-perl/libwww-perl/files/ca-certs.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/dev-perl/libwww-perl/files/ca-certs.patch b/dev-perl/libwww-perl/files/ca-certs.patch
deleted file mode 100644
index b0565f0fdba0..000000000000
--- a/dev-perl/libwww-perl/files/ca-certs.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-X-Bugs-Gentoo: https://bugs.gentoo.org/358081
---- libwww-perl-6.01/lib/LWP/Protocol/https.pm
-+++ libwww-perl-6.01/lib/LWP/Protocol/https.pm
-@@ -21,25 +21,7 @@
- }
- if ($ssl_opts{SSL_verify_mode}) {
- unless (exists $ssl_opts{SSL_ca_file} || exists $ssl_opts{SSL_ca_path}) {
-- eval {
-- require Mozilla::CA;
-- };
-- if ($@) {
-- if ($@ =! /^Can't locate Mozilla\/CA\.pm/) {
-- $@ = <<'EOT';
--Can't verify SSL peers without knowning which Certificate Authorities to trust
--
--This problem can be fixed by either setting the PERL_LWP_SSL_CA_FILE
--envirionment variable or by installing the Mozilla::CA module.
--
--To disable verification of SSL peers set the PERL_LWP_SSL_VERIFY_HOSTNAME
--envirionment variable to 0. If you do this you can't be sure that you
--communicate with the expected peer.
--EOT
-- }
-- die $@;
-- }
-- $ssl_opts{SSL_ca_file} = Mozilla::CA::SSL_ca_file();
-+ $ssl_opts{SSL_ca_path} = '/etc/ssl/certs';
- }
- }
- $self->{ssl_opts} = \%ssl_opts;