openssl 2.2.1 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/History.md +16 -0
- data/ext/openssl/extconf.rb +2 -2
- data/lib/openssl/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca57a155a863eab5ef5138956be25ab7915d701d10e7487605f3f909262aecdc
|
|
4
|
+
data.tar.gz: ae7d5d15ae4944d79c8bd45a4279b4ab5fa021604ad8bb12759ebf3c9f6ff33d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 479a5f07bc88c5cc20e4be271da0f1e0314c69bcde3a3b173871e6499f905cb5d0335cc91b7132eb7c1b10382c088f23e5734aa5eadb675979f65afeb3e9f9fe
|
|
7
|
+
data.tar.gz: b3a5c5346ee5b3becedc9040c1a7e87344333c0cc1903566db1b24090897e45c186aded4e6c68f49eab16a13a42faf77d7adff89ea527fff5c73d4c0e976a27d
|
data/History.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
Version 2.2.2
|
|
2
|
+
=============
|
|
3
|
+
|
|
4
|
+
Merged changes in 2.1.4.
|
|
5
|
+
|
|
6
|
+
|
|
1
7
|
Version 2.2.1
|
|
2
8
|
=============
|
|
3
9
|
|
|
@@ -92,6 +98,16 @@ Notable changes
|
|
|
92
98
|
[[GitHub #297]](https://github.com/ruby/openssl/pull/297)
|
|
93
99
|
|
|
94
100
|
|
|
101
|
+
Version 2.1.4
|
|
102
|
+
=============
|
|
103
|
+
|
|
104
|
+
Bug fixes
|
|
105
|
+
---------
|
|
106
|
+
|
|
107
|
+
* Do not use pkg-config if --with-openssl-dir option is specified.
|
|
108
|
+
[[GitHub #486]](https://github.com/ruby/openssl/pull/486)
|
|
109
|
+
|
|
110
|
+
|
|
95
111
|
Version 2.1.3
|
|
96
112
|
=============
|
|
97
113
|
|
data/ext/openssl/extconf.rb
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
require "mkmf"
|
|
15
15
|
|
|
16
|
-
dir_config("openssl")
|
|
16
|
+
dir_config_given = dir_config("openssl").any?
|
|
17
17
|
dir_config("kerberos")
|
|
18
18
|
|
|
19
19
|
Logging::message "=== OpenSSL for Ruby configurator ===\n"
|
|
@@ -90,7 +90,7 @@ def find_openssl_library
|
|
|
90
90
|
end
|
|
91
91
|
|
|
92
92
|
Logging::message "=== Checking for required stuff... ===\n"
|
|
93
|
-
pkg_config_found = pkg_config("openssl") && have_header("openssl/ssl.h")
|
|
93
|
+
pkg_config_found = !dir_config_given && pkg_config("openssl") && have_header("openssl/ssl.h")
|
|
94
94
|
|
|
95
95
|
if !pkg_config_found && !find_openssl_library
|
|
96
96
|
Logging::message "=== Checking for required stuff failed. ===\n"
|
data/lib/openssl/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openssl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martin Bosslet
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date:
|
|
14
|
+
date: 2022-09-08 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: ipaddr
|
|
@@ -33,14 +33,14 @@ dependencies:
|
|
|
33
33
|
requirements:
|
|
34
34
|
- - ">="
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
|
-
version:
|
|
36
|
+
version: 11.2.0
|
|
37
37
|
type: :development
|
|
38
38
|
prerelease: false
|
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
40
40
|
requirements:
|
|
41
41
|
- - ">="
|
|
42
42
|
- !ruby/object:Gem::Version
|
|
43
|
-
version:
|
|
43
|
+
version: 11.2.0
|
|
44
44
|
- !ruby/object:Gem::Dependency
|
|
45
45
|
name: rake-compiler
|
|
46
46
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -189,7 +189,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
189
189
|
- !ruby/object:Gem::Version
|
|
190
190
|
version: '0'
|
|
191
191
|
requirements: []
|
|
192
|
-
rubygems_version: 3.3.
|
|
192
|
+
rubygems_version: 3.3.8
|
|
193
193
|
signing_key:
|
|
194
194
|
specification_version: 4
|
|
195
195
|
summary: OpenSSL provides SSL, TLS and general purpose cryptography.
|