summaryrefslogtreecommitdiff
blob: baab95e96e1ad1a494ccce1b491fa9bc03f69264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
diff -urN biblatex-biber-1.7.orig/bin/biber biblatex-biber-1.7/bin/biber
--- biblatex-biber-1.7.orig/bin/biber	2013-07-04 01:29:20.000000000 +0400
+++ biblatex-biber-1.7/bin/biber	2013-07-22 03:29:21.158897956 +0400
@@ -67,7 +67,6 @@
            'sortfirstinits=s',
            'sortlocale|l=s',
            'sortupper=s',
-           'ssl-nointernalca',
            'ssl-noverify-host',
            'tool',
            'tool_align',
@@ -604,12 +603,6 @@
 using B<--fastsort|-f>, your OS collation locale determines
 this and this option is ignored (default is true).
 
-=item B<--ssl-nointernalca>
-
-Don't try to use the default Mozilla CA certificates when using HTTPS to fetch remote data.
-This assumes that the user will set one of the perl LWP::UserAgent module environment variables
-to find the CA certs.
-
 =item B<--ssl-noverify-host>
 
 Turn off host verification when using HTTPS to fetch remote data sources.
diff -urN biblatex-biber-1.7.orig/Build.PL biblatex-biber-1.7/Build.PL
--- biblatex-biber-1.7.orig/Build.PL	2013-07-04 01:29:20.000000000 +0400
+++ biblatex-biber-1.7/Build.PL	2013-07-22 03:33:11.986908081 +0400
@@ -66,7 +66,6 @@
         'Business::ISBN' => 0,
         'Business::ISSN' => 0,
         'Business::ISMN' => 0,
-        'Mozilla::CA' =>  '20130114',
         'perl' => '5.16.0'
     },
     recommends => {
diff -urN biblatex-biber-1.7.orig/data/schemata/config.rnc biblatex-biber-1.7/data/schemata/config.rnc
--- biblatex-biber-1.7.orig/data/schemata/config.rnc	2013-07-04 01:29:20.000000000 +0400
+++ biblatex-biber-1.7/data/schemata/config.rnc	2013-07-22 03:29:41.924898867 +0400
@@ -157,7 +157,6 @@
       map+
     }+
   }? &
-  element ssl-nointernalca     { "0" | "1" }? &
   element ssl-noverify-host    { "0" | "1" }? &
   element tool                 { "0" | "1" }? &
   element tool_align           { "0" | "1" }? &
diff -urN biblatex-biber-1.7.orig/data/schemata/config.rng biblatex-biber-1.7/data/schemata/config.rng
--- biblatex-biber-1.7.orig/data/schemata/config.rng	2013-07-04 01:29:20.000000000 +0400
+++ biblatex-biber-1.7/data/schemata/config.rng	2013-07-22 03:30:12.661900215 +0400
@@ -531,14 +531,6 @@
           </element>
         </optional>
         <optional>
-          <element name="ssl-nointernalca">
-            <choice>
-              <value>0</value>
-              <value>1</value>
-            </choice>
-          </element>
-        </optional>
-        <optional>
           <element name="ssl-noverify-host">
             <choice>
               <value>0</value>
diff -urN biblatex-biber-1.7.orig/lib/Biber/Input/file/biblatexml.pm biblatex-biber-1.7/lib/Biber/Input/file/biblatexml.pm
--- biblatex-biber-1.7.orig/lib/Biber/Input/file/biblatexml.pm	2013-07-04 01:29:21.000000000 +0400
+++ biblatex-biber-1.7/lib/Biber/Input/file/biblatexml.pm	2013-07-22 03:31:00.149902298 +0400
@@ -93,16 +93,6 @@
     $logger->info("Data source '$filename' is a remote .xml - fetching ...");
     if ($1) { # HTTPS
       # use IO::Socket::SSL qw(debug4); # useful for debugging SSL issues
-      # We have to explicitly set the cert path because otherwise the https module
-      # can't find the .pem when PAR::Packer'ed
-      if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-          not defined(Biber::Config->getoption('ssl-nointernalca'))) {
-        require Mozilla::CA; # Have to explicitly require this here to get it into %INC below
-        # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-        (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-        $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-        $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-      }
       if (defined(Biber::Config->getoption('ssl-noverify-host'))) {
           $ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0;
       }
diff -urN biblatex-biber-1.7.orig/lib/Biber/Input/file/bibtex.pm biblatex-biber-1.7/lib/Biber/Input/file/bibtex.pm
--- biblatex-biber-1.7.orig/lib/Biber/Input/file/bibtex.pm	2013-07-04 01:29:20.000000000 +0400
+++ biblatex-biber-1.7/lib/Biber/Input/file/bibtex.pm	2013-07-22 03:31:36.297903883 +0400
@@ -134,16 +134,6 @@
     $logger->info("Data source '$source' is a remote BibTeX data source - fetching ...");
     if ($1) { # HTTPS
       # use IO::Socket::SSL qw(debug99); # useful for debugging SSL issues
-      # We have to explicitly set the cert path because otherwise the https module
-      # can't find the .pem when PAR::Packer'ed
-      if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-          not defined(Biber::Config->getoption('ssl-nointernalca'))) {
-        require Mozilla::CA; # Have to explicitly require this here to get it into %INC below
-        # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-        (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-        $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-        $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-      }
       if (defined(Biber::Config->getoption('ssl-noverify-host'))) {
           $ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0;
       }
diff -urN biblatex-biber-1.7.orig/lib/Biber/Input/file/endnotexml.pm biblatex-biber-1.7/lib/Biber/Input/file/endnotexml.pm
--- biblatex-biber-1.7.orig/lib/Biber/Input/file/endnotexml.pm	2013-07-04 01:29:20.000000000 +0400
+++ biblatex-biber-1.7/lib/Biber/Input/file/endnotexml.pm	2013-07-22 03:31:56.034904749 +0400
@@ -112,16 +112,6 @@
     $logger->info("Data source '$source' is a remote EndNote XML datasource - fetching ...");
     if ($1) { # HTTPS
       # use IO::Socket::SSL qw(debug4); # useful for debugging SSL issues
-      # We have to explicitly set the cert path because otherwise the https module
-      # can't find the .pem when PAR::Packer'ed
-      if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-          not defined(Biber::Config->getoption('ssl-nointernalca'))) {
-        require Mozilla::CA; # Have to explicitly require this here to get it into %INC below
-        # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-        (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-        $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-        $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-      }
       if (defined(Biber::Config->getoption('ssl-noverify-host'))) {
           $ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0;
       }
diff -urN biblatex-biber-1.7.orig/lib/Biber/Input/file/ris.pm biblatex-biber-1.7/lib/Biber/Input/file/ris.pm
--- biblatex-biber-1.7.orig/lib/Biber/Input/file/ris.pm	2013-07-04 01:29:20.000000000 +0400
+++ biblatex-biber-1.7/lib/Biber/Input/file/ris.pm	2013-07-22 03:32:17.511905691 +0400
@@ -107,16 +107,6 @@
     $logger->info("Data source '$source' is a remote RIS data source - fetching ...");
     if ($1) { # HTTPS
       # use IO::Socket::SSL qw(debug4); # useful for debugging SSL issues
-      # We have to explicitly set the cert path because otherwise the https module
-      # can't find the .pem when PAR::Packer'ed
-      if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-          not defined(Biber::Config->getoption('ssl-nointernalca'))) {
-        require Mozilla::CA; # Have to explicitly require this here to get it into %INC below
-        # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-        (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-        $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-        $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-      }
       if (defined(Biber::Config->getoption('ssl-noverify-host'))) {
           $ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0;
       }
diff -urN biblatex-biber-1.7.orig/lib/Biber/Input/file/zoterordfxml.pm biblatex-biber-1.7/lib/Biber/Input/file/zoterordfxml.pm
--- biblatex-biber-1.7.orig/lib/Biber/Input/file/zoterordfxml.pm	2013-07-04 01:29:20.000000000 +0400
+++ biblatex-biber-1.7/lib/Biber/Input/file/zoterordfxml.pm	2013-07-22 03:32:35.649906487 +0400
@@ -123,16 +123,6 @@
     $logger->info("Data source '$source' is a remote Zotero RDF/XML data source - fetching ...");
     if ($1) { # HTTPS
       # use IO::Socket::SSL qw(debug4); # useful for debugging SSL issues
-      # We have to explicitly set the cert path because otherwise the https module
-      # can't find the .pem when PAR::Packer'ed
-      if (not exists($ENV{PERL_LWP_SSL_CA_FILE}) and
-          not defined(Biber::Config->getoption('ssl-nointernalca'))) {
-        require Mozilla::CA; # Have to explicitly require this here to get it into %INC below
-        # we assume that the default CA file is in .../Mozilla/CA/cacert.pem
-        (my $vol, my $dir, undef) = File::Spec->splitpath( $INC{"Mozilla/CA.pm"} );
-        $dir =~ s/\/$//; # splitpath sometimes leaves a trailing '/'
-        $ENV{PERL_LWP_SSL_CA_FILE} = File::Spec->catpath($vol, "$dir/CA", 'cacert.pem');
-      }
       if (defined(Biber::Config->getoption('ssl-noverify-host'))) {
           $ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0;
       }
diff -urN biblatex-biber-1.7.orig/META.json biblatex-biber-1.7/META.json
--- biblatex-biber-1.7.orig/META.json	2013-07-04 01:29:20.000000000 +0400
+++ biblatex-biber-1.7/META.json	2013-07-22 03:33:29.583908853 +0400
@@ -48,7 +48,6 @@
             "List::AllUtils" : "0",
             "List::MoreUtils" : "0",
             "Log::Log4perl" : "0",
-            "Mozilla::CA" : "20130114",
             "Regexp::Common" : "0",
             "Text::BibTeX" : "0.66",
             "URI" : "0",
diff -urN biblatex-biber-1.7.orig/META.yml biblatex-biber-1.7/META.yml
--- biblatex-biber-1.7.orig/META.yml	2013-07-04 01:29:20.000000000 +0400
+++ biblatex-biber-1.7/META.yml	2013-07-22 03:33:44.344909500 +0400
@@ -88,7 +88,6 @@
   List::AllUtils: 0
   List::MoreUtils: 0
   Log::Log4perl: 0
-  Mozilla::CA: 20130114
   Regexp::Common: 0
   Text::BibTeX: 0.66
   URI: 0