ffi-libarchive-binary 0.3.2.rc1-x86_64-linux → 0.3.4-x86_64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fc0560679b2f3368caaac289be44936d49266b0aeea6f7735e931496e7eeae75
4
- data.tar.gz: fd5be3965d5dcf787e8ef5633b22bb409e162326e579357aa2dacaf5047d6fab
3
+ metadata.gz: 2a6f659f28579d54d6283b181edc870b0fa19df6e10f59357f8122840fabd4ee
4
+ data.tar.gz: 41bf5f76ce82215baeea079af3574eed1e2709c8dfe21f27836399bf9cdfd2a4
5
5
  SHA512:
6
- metadata.gz: e885d5155533257da629483e36c84e37f78136a90246fe7a7c517558239bf7c5055f0138d40faa177aa73baa86b6d9e66192df0cd83a0b0c7ec408d3a71713d1
7
- data.tar.gz: 11cf5b4b6f347b3ab3021a2bd3fc8db635b1d5c35ee3267e7406ea48d3c3f4bceb5ed29881fbb44008677b6e213f4d12a677a10131bfa81e78994889dafd0dec
6
+ metadata.gz: 01d40d6c0491799f05848be9bfe3dca8371f9f6d705f11a91b7afeb0e9612563df1e98ecd0fb000b9acf269b27eb4e5ac2d3eecd61ee1e38aa1a72d824f4893d
7
+ data.tar.gz: 1036732b57449bb1991ecd6802934ddfd82ac2c7aa5210a0896ae742c8839a336b9c7164d04ee214b7768dd6d72472f000c7c49c957a16e1b4aba59026ed5a01
data/.rubocop.yml CHANGED
@@ -4,6 +4,7 @@ inherit_from:
4
4
  AllCops:
5
5
  TargetRubyVersion: 2.7
6
6
  SuggestExtensions: false
7
+ NewCops: enable
7
8
  Exclude:
8
9
  - 'ffi-libarchive-binary.gemspec'
9
10
  - 'tmp/**/*'
@@ -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.6.2")
16
+ super("libarchive", "3.7.7")
26
17
  @printed = {}
27
18
 
28
19
  @files << {
29
- url: "https://www.libarchive.org/downloads/libarchive-3.6.2.tar.gz",
30
- sha256: "ba6d02f15ba04aba9c23fd5f236bb234eab9d5209e95d1c4df85c44d5f19b9b3",
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.1n")
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LibarchiveBinary
4
- VERSION = "0.3.2.rc1"
4
+ VERSION = "0.3.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffi-libarchive-binary
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2.rc1
4
+ version: 0.3.4
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Ribose Inc.
@@ -158,9 +158,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
158
158
  version: 2.7.0
159
159
  required_rubygems_version: !ruby/object:Gem::Requirement
160
160
  requirements:
161
- - - ">"
161
+ - - ">="
162
162
  - !ruby/object:Gem::Version
163
- version: 1.3.1
163
+ version: '0'
164
164
  requirements: []
165
165
  rubygems_version: 3.1.6
166
166
  signing_key: