ffi-libarchive-binary 0.3.2-x86_64-darwin → 0.3.4-x86_64-darwin
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab45db37586c12359ca6f829f7aff9f6947d6d358f962e6b011e05813dc337e4
|
4
|
+
data.tar.gz: 453b22fe676ac4a9685be450b6e4990f7156cd45a26e5a8ff316505774419dab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f55f192b9b0c99b92f7a688c6a6d971a99250742a8247572c471751fb36a3d42cea0f64b476e1ee5e3b92acc19c6b598a2f89c7d1dc0f09aa3f7352e8ff7cbb
|
7
|
+
data.tar.gz: 40fa886726d305c6d3f23e488859e567d552714225d9687300b78ca655fec3f0581490931ca9fe8a8082db6cdffb82e0f400698ec46bfae6b7743bef4fc4cf78
|
data/.rubocop.yml
CHANGED
Binary file
|
@@ -12,22 +12,13 @@ require_relative "xz_recipe"
|
|
12
12
|
module LibarchiveBinary
|
13
13
|
class LibarchiveRecipe < MiniPortileCMake
|
14
14
|
ROOT = Pathname.new(File.expand_path("../..", __dir__))
|
15
|
-
#
|
16
|
-
# libarchive 3.7.x uses new GLIBC packaging ( links to libc only and not to pthread, dl, ...)
|
17
|
-
# this does not link work on Ubuntu 20 with GLIBC 3.21
|
18
|
-
#
|
19
|
-
# Cannot build 3.7.x on Ubuntu 22 either because it creates a reference to GLIB 3.22 (min) that does
|
20
|
-
# not resolve on Ubuntu 20
|
21
|
-
#
|
22
|
-
# So without patching we are stick to 3.6.2 until Ubuntu 20 shall be supported
|
23
|
-
#
|
24
15
|
def initialize
|
25
|
-
super("libarchive", "3.
|
16
|
+
super("libarchive", "3.7.7")
|
26
17
|
@printed = {}
|
27
18
|
|
28
19
|
@files << {
|
29
|
-
url: "https://www.libarchive.org/downloads/libarchive-3.
|
30
|
-
sha256: "
|
20
|
+
url: "https://www.libarchive.org/downloads/libarchive-3.7.7.tar.gz",
|
21
|
+
sha256: "4cc540a3e9a1eebdefa1045d2e4184831100667e6d7d5b315bb1cbc951f8ddff",
|
31
22
|
}
|
32
23
|
|
33
24
|
@target = ROOT.join(@target).to_s
|
@@ -17,13 +17,9 @@ module LibarchiveBinary
|
|
17
17
|
ROOT = Pathname.new(File.expand_path("../..", __dir__))
|
18
18
|
|
19
19
|
def initialize
|
20
|
-
super("openssl", "1.1.
|
21
|
-
|
22
|
-
@files << {
|
23
|
-
url: "https://www.openssl.org/source/openssl-1.1.1n.tar.gz",
|
24
|
-
sha256: "40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a",
|
25
|
-
}
|
20
|
+
super("openssl", MiniPortile::windows? ? "1.1.1w" : "3.3.2")
|
26
21
|
|
22
|
+
@files << source_archive
|
27
23
|
@target = ROOT.join(@target).to_s
|
28
24
|
end
|
29
25
|
|
@@ -53,5 +49,15 @@ module LibarchiveBinary
|
|
53
49
|
|
54
50
|
FileUtils.touch(checkpoint)
|
55
51
|
end
|
52
|
+
|
53
|
+
def source_archive
|
54
|
+
if MiniPortile::windows?
|
55
|
+
{ url: "https://github.com/openssl/openssl/releases/download/OpenSSL_1_1_1w/openssl-1.1.1w.tar.gz",
|
56
|
+
sha256: "cf3098950cb4d853ad95c0841f1f9c6d3dc102dccfcacd521d93925208b76ac8" }
|
57
|
+
else
|
58
|
+
{ url: "https://github.com/openssl/openssl/releases/download/openssl-3.3.2/openssl-3.3.2.tar.gz",
|
59
|
+
sha256: "2e8a40b01979afe8be0bbfb3de5dc1c6709fedb46d6c89c10da114ab5fc3d281" }
|
60
|
+
end
|
61
|
+
end
|
56
62
|
end
|
57
63
|
end
|