tebako 0.8.6 → 0.8.7

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: 17722a182f3df63283d1b99ede4bb8a3bae7a864eb001412165cbf7e43d2c4d5
4
- data.tar.gz: '029dd9ec847efd8f0002b148e4db1496d6a09c005879b52ae88f088e6333e1ba'
3
+ metadata.gz: e7482a572c9c213f8c2b6b59003b7265c8668535b13de72591ef2f2750bb9a27
4
+ data.tar.gz: 2d308207651c814f42c0012a1eccf0ce02db8b4eb38f9c195c06f0cd815ba2af
5
5
  SHA512:
6
- metadata.gz: 4425672dd1e610017539d3c329ab476e6f5080a91b81f9afda7c0aabeb82f6b83fdf29b4e5e1ff9b604c7eb1d20b61b029442ab902736680c33b32ba7c66fb9c
7
- data.tar.gz: 5144425b8ebe468462352db8da92c2ea6483a365bd88e7dd992d3d09dbac1bb0f4f57865e1e298adcc8e66ff3a90f4e21f85b9ffba6ff624fca42a05a1c5f85f
6
+ metadata.gz: 15d0d729e275a6b1022159294c7a402559a34c6e3086701ca528e06ac5fc7536ed8e369061466244b0b615a40bb28aeddaa718e264e056e71e65c02c39976ded
7
+ data.tar.gz: 2c85725fe1478d2604af8a52efa44fdc2abebf66f7a854d42a033dd40fd35c0181d5a7536ecfd4d07d371e8b53f4f6d2b8685dadf0e764ef0186234ae86a6430
data/CMakeLists.txt CHANGED
@@ -127,11 +127,7 @@ set(WITH_PATCHELF OFF)
127
127
  if("${OSTYPE_TXT}" MATCHES "^linux-gnu.*")
128
128
  set(IS_GNU ON)
129
129
  if(REMOVE_GLIBC_PRIVATE)
130
- if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
131
- set(WITH_PATCHELF ON)
132
- else()
133
- message(WARNING "Elf file patching is supported for GNU toolchain only. 'patchelf' setting ignored")
134
- endif()
130
+ set(WITH_PATCHELF ON)
135
131
  endif(REMOVE_GLIBC_PRIVATE)
136
132
  elseif("${OSTYPE_TXT}" MATCHES "^linux-musl.*")
137
133
  set(IS_MUSL ON)
@@ -216,7 +212,7 @@ string(CONCAT RUBY_API_VER ${RUBY_VER_BASE} ".0")
216
212
  def_ext_prj_g(DWARFS_WR "v0.5.9")
217
213
  #endif(DWARFS_PRELOAD)
218
214
 
219
- def_ext_prj_g(PATCHELF "master")
215
+ def_ext_prj_g(PATCHELF "65e14792061c298f1d2bc44becd48a10cbf0bc81")
220
216
 
221
217
  set(LIBYAML_RUBY_OPTION "")
222
218
  if(${RUBY_VER} VERSION_LESS "3.2.0")
data/README.adoc CHANGED
@@ -9,6 +9,9 @@ image:https://github.com/tamatebako/tebako/actions/workflows/windows-msys.yml/ba
9
9
  Platform tests on Cirrus:
10
10
  image:https://api.cirrus-ci.com/github/tamatebako/tebako.svg?branch=main&task=ubuntu-aarch64["Ubuntu aarch64", link="https://cirrus-ci.com/github/tamatebako/tebako"]
11
11
 
12
+ Tools tests on GitHub:
13
+ image:https://github.com/tamatebako/tebako-ci-containers/actions/workflows/build-containers.yml/badge.svg["Tebako cobtainers", link="https://github.com/tamatebako/tebako-ci-containers/actions/workflows/build-containers.yml"]
14
+
12
15
  Quality:
13
16
  image:https://github.com/tamatebako/tebako/actions/workflows/lint-and-rspec.yml/badge.svg["lint and rspec", link="https://github.com/tamatebako/tebako/actions/workflows/lint-and-rspec.yml"]
14
17
  image:https://codecov.io/gh/tamatebako/tebako/graph/badge.svg?token=XD3emQ5qsY["Tebako cli rspec coverage", link="https://codecov.io/gh/tamatebako/tebako"]
@@ -695,8 +698,8 @@ packaging consistency checks are relaxed.
695
698
 
696
699
  `patchelf`::
697
700
  flag that removal a reference to GLIBC_PRIVATE version of libpthread from tebako package. This allows Linux Gnu packages to run against versions of
698
- libpthread that differ from the version used for packaging. For example, package created at Ubuntu 20 system can be used on Ubuntu 22. This option works on Gnu Linux with
699
- Gnu toolchain only (not for LLVM/clang). The feature is exeprimental, we may consider other approach in the future.
701
+ libpthread that differ from the version used for packaging. For example, package created at Ubuntu 20 system can be used on Ubuntu 22. This option makes
702
+ sense and works on Gnu Linux only. The feature is exeprimental, we may consider other approach in the future.
700
703
 
701
704
  `tebafile`::
702
705
  the tebako configuration file (optional, defaults to `$PWD/.tebako.yml`).
@@ -26,5 +26,5 @@
26
26
  # POSSIBILITY OF SUCH DAMAGE.
27
27
 
28
28
  module Tebako
29
- VERSION = "0.8.6"
29
+ VERSION = "0.8.7"
30
30
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tebako
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.6
4
+ version: 0.8.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-09-02 00:00:00.000000000 Z
11
+ date: 2024-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor