ffi-libarchive-binary 0.3.1-x86_64-darwin → 0.3.2.rc1-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: b4f54c7338162e6842d152e959ba91ec869d15426c1685432a044f5baa5e7d79
4
- data.tar.gz: cf034ed8252746616c72d5fe75962831901325c4443fec18fdb77ab92b67894f
3
+ metadata.gz: c8c0b97d1153d996b295b9f0be609392fa3ff88c2198c458127c9e4d378fd1b7
4
+ data.tar.gz: 102e09294bea02a5c2bc8506e3a7c7a90e777cacde0a161dcc978311d81b8122
5
5
  SHA512:
6
- metadata.gz: 7b837fb7f3f81a33d7f58b8c3e89a750d4c9099fe299581b2223eca5520f3ad07c34980df6d7104395570bdb0ce1b694bf0f889b54ddc3ec1b1a11d5bdfa3484
7
- data.tar.gz: 035abb1feebcd6496e1021516c0b35025e139a4583a0a8b7d243a6d9691b1b9152c3d5ab6ac7208b403038dba6b97daf236d6c6fc8a55d9dde6bea96c49124dd
6
+ metadata.gz: 6dedfcfeb09effad5f839cb4746953b8ab7ea2c2ab0ee039a77b63e33ff1ae838048a9c59628202c51858ac0f908148de5e01a71abcee5fa283492245b6e3d47
7
+ data.tar.gz: dda108ca9de90243fac066046a1c6275e22dcf0a923086f2bfb44dfce1e211d72d1ec5bf2fae155505eef5b4ef3f2a949bd38fc676433ee80071e67fb336cdf3
data/README.adoc CHANGED
@@ -1,7 +1,7 @@
1
1
  = Binaries for ffi-libarchive
2
2
 
3
3
  image:https://img.shields.io/gem/v/ffi-libarchive-binary.svg["Gem Version", link="https://rubygems.org/gems/ffi-libarchive-binary"]
4
- image:https://github.com/fontist/ffi-libarchive-binary/actions/workflows/rspec.yml/badge.svg["Build Status", link="https://github.com/fontist/ffi-libarchive-binary/actions/workflows/rspec.yml"]
4
+ image:https://github.com/fontist/ffi-libarchive-binary/actions/workflows/test-and-release.yml/badge.svg["Build Status", link="https://github.com/fontist/ffi-libarchive-binary/actions/workflows/test-and-release.yml"]
5
5
 
6
6
  == Purpose
7
7
 
@@ -12,14 +12,22 @@ require_relative "xz_recipe"
12
12
  module LibarchiveBinary
13
13
  class LibarchiveRecipe < MiniPortileCMake
14
14
  ROOT = Pathname.new(File.expand_path("../..", __dir__))
15
-
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
+ #
16
24
  def initialize
17
- super("libarchive", "3.7.4")
25
+ super("libarchive", "3.6.2")
18
26
  @printed = {}
19
27
 
20
28
  @files << {
21
- url: "https://www.libarchive.org/downloads/libarchive-3.7.4.tar.gz",
22
- sha256: "7875d49596286055b52439ed42f044bd8ad426aa4cc5aabd96bfe7abb971d5e8",
29
+ url: "https://www.libarchive.org/downloads/libarchive-3.6.2.tar.gz",
30
+ sha256: "ba6d02f15ba04aba9c23fd5f236bb234eab9d5209e95d1c4df85c44d5f19b9b3",
23
31
  }
24
32
 
25
33
  @target = ROOT.join(@target).to_s
@@ -40,12 +48,12 @@ module LibarchiveBinary
40
48
 
41
49
  def default_flags
42
50
  [
43
- "-DENABLE_OPENSSL:BOOL=ON", "-DENABLE_LIBB2:BOOL=OFF", "-DENABLE_LZ4:BOOL=OFF",
51
+ "-DENABLE_OPENSSL:BOOL=ON", "-DENABLE_LIBB2:BOOL=OFF", "-DENABLE_LZ4:BOOL=OFF",
44
52
  "-DENABLE_LZO::BOOL=OFF", "-DENABLE_LZMA:BOOL=ON", "-DENABLE_ZSTD:BOOL=OFF",
45
53
  "-DENABLE_ZLIB::BOOL=ON", "-DENABLE_BZip2:BOOL=OFF", "-DENABLE_LIBXML2:BOOL=OFF",
46
54
  "-DENABLE_EXPAT::BOOL=ON", "-DENABLE_TAR:BOOL=OFF", "-DENABLE_ICONV::BOOL=OFF",
47
55
  "-DENABLE_CPIO::BOOL=OFF", "-DENABLE_CAT:BOOL=OFF", "-DENABLE_ACL:BOOL=OFF",
48
- "-DENABLE_TEST:BOOL=OFF",
56
+ "-DENABLE_TEST:BOOL=OFF", "-DENABLE_UNZIP:BOOL=OFF",
49
57
  "-DCMAKE_INCLUDE_PATH=#{include_path}",
50
58
  "-DCMAKE_LIBRARY_PATH=#{library_path}"
51
59
  ]
@@ -17,11 +17,11 @@ module LibarchiveBinary
17
17
  ROOT = Pathname.new(File.expand_path("../..", __dir__))
18
18
 
19
19
  def initialize
20
- super("openssl", "1.1.1w")
20
+ super("openssl", "1.1.1n")
21
21
 
22
22
  @files << {
23
- url: "https://github.com/openssl/openssl/releases/download/OpenSSL_1_1_1w/openssl-1.1.1w.tar.gz",
24
- sha256: "cf3098950cb4d853ad95c0841f1f9c6d3dc102dccfcacd521d93925208b76ac8",
23
+ url: "https://www.openssl.org/source/openssl-1.1.1n.tar.gz",
24
+ sha256: "40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a",
25
25
  }
26
26
 
27
27
  @target = ROOT.join(@target).to_s
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LibarchiveBinary
4
- VERSION = "0.3.1"
4
+ VERSION = "0.3.2.rc1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffi-libarchive-binary
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2.rc1
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-11 00:00:00.000000000 Z
11
+ date: 2024-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -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: '0'
163
+ version: 1.3.1
164
164
  requirements: []
165
165
  rubygems_version: 3.1.6
166
166
  signing_key: