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 +4 -4
- data/CMakeLists.txt +2 -6
- data/README.adoc +5 -2
- data/lib/tebako/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7482a572c9c213f8c2b6b59003b7265c8668535b13de72591ef2f2750bb9a27
|
4
|
+
data.tar.gz: 2d308207651c814f42c0012a1eccf0ce02db8b4eb38f9c195c06f0cd815ba2af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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 "
|
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
|
699
|
-
|
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`).
|
data/lib/tebako/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|