ffi-libarchive-binary 0.3.0-aarch64-linux → 0.3.2.rc1-aarch64-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: 4e37eb17be6b13c4dfb76f195828223b4bf1b6f2d132b20aa4a8142faae3a329
4
- data.tar.gz: fb3620596d29592bcb49c343e39cb85a42951451af63c31cbe7dcd3ad2ece51e
3
+ metadata.gz: 23b92d9b3c6944e1b1a61bf64668971a050deae7e0d6f7e52f5acbddcab7c268
4
+ data.tar.gz: 98a953f43481f812763c2e946585ca3844737e03291947fd4d2d2e1b5994a4f7
5
5
  SHA512:
6
- metadata.gz: 9e2ae29929ec1d30b11e06b156dd23b7f686c50cea64dfdfc89e3957bb4db90e9ae174d562b112d559de2ca40688b572a9e20774e7756b51ce85750dad70ab47
7
- data.tar.gz: 3e5b834f69fbcca20af5dd75dbf3e710ef1de47bc3279197fe64784d954d02da16d568669195ca63965f4e46876a0f5d7a340591f8f439a3c546da2c5bcc6552
6
+ metadata.gz: 36de054edc262b8c7950199a8687f5bc2c704b57f644061c504f1a7feeffe753d240bfa60801ffaab1e09dcfcbd0184be1e77c94aa9740cc1fe5bc3f84431458
7
+ data.tar.gz: 6a4915dc49cd9b44a11b294262a80427caa4c76d4157675b4d6063018555754fec6d2efe10d60c6c9238c590bcde3f6f51d3f860163a252ba604d1cca07d7beb
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
 
@@ -8,7 +8,7 @@ module LibarchiveBinary
8
8
  "x86_64-apple-darwin" => "Mach-O 64-bit dynamically linked shared library x86_64",
9
9
  "aarch64-linux-gnu" => "ELF 64-bit LSB shared object, ARM aarch64",
10
10
  "x86_64-linux-gnu" => "ELF 64-bit LSB shared object, x86-64",
11
- "x86_64-w64-mingw32" => "PE32+ executable (DLL) (console) x86-64, for MS Windows",
11
+ "x86_64-w64-mingw32" => "PE32+ executable",
12
12
  }.freeze
13
13
 
14
14
  ARCHS = {
@@ -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.6.1")
25
+ super("libarchive", "3.6.2")
18
26
  @printed = {}
19
27
 
20
28
  @files << {
21
- url: "https://www.libarchive.org/downloads/libarchive-3.6.1.tar.gz",
22
- sha256: "c676146577d989189940f1959d9e3980d28513d74eedfbc6b7f15ea45fe54ee2",
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
  ]
@@ -7,11 +7,11 @@ module LibarchiveBinary
7
7
  ROOT = Pathname.new(File.expand_path("../..", __dir__))
8
8
 
9
9
  def initialize
10
- super("libexpat", "2.4.9")
10
+ super("libexpat", "2.6.4")
11
11
 
12
12
  @files << {
13
- url: "https://github.com/libexpat/libexpat/releases/download/R_2_4_9/expat-2.4.9.tar.gz",
14
- sha256: "4415710268555b32c4e5ab06a583bea9fec8ff89333b218b70b43d4ca10e38fa",
13
+ url: "https://github.com/libexpat/libexpat/releases/download/R_2_6_4/expat-2.6.4.tar.gz",
14
+ sha256: "fd03b7172b3bd7427a3e7a812063f74754f24542429b634e0db6511b53fb2278",
15
15
  }
16
16
 
17
17
  @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.0"
4
+ VERSION = "0.3.2.rc1"
5
5
  end
@@ -8,11 +8,11 @@ module LibarchiveBinary
8
8
  ROOT = Pathname.new(File.expand_path("../..", __dir__))
9
9
 
10
10
  def initialize
11
- super("zlib", "1.2.11")
11
+ super("zlib", "1.3.1")
12
12
 
13
13
  @files << {
14
- url: "http://zlib.net/fossils/zlib-1.2.11.tar.gz",
15
- sha256: "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1",
14
+ url: "http://zlib.net/fossils/zlib-1.3.1.tar.gz",
15
+ sha256: "9a93b2b7dfdac77ceba5a558a580e74667dd6fede4585b91eefb60f03b72df23",
16
16
  }
17
17
 
18
18
  @target = ROOT.join(@target).to_s
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.0
4
+ version: 0.3.2.rc1
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-10-25 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: