tebako 0.13.4 → 0.15.0

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.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/Brewfile +0 -5
  3. data/CMakeLists.txt +94 -46
  4. data/README.adoc +0 -1
  5. data/cmake/tebako-libtfs.cmake +456 -0
  6. data/common.env +2 -2
  7. data/include/tebako/tpkg.h +575 -0
  8. data/lib/tebako/cli.rb +91 -0
  9. data/lib/tebako/cli_helpers.rb +24 -0
  10. data/lib/tebako/error.rb +10 -0
  11. data/lib/tebako/launcher_abi.rb +99 -0
  12. data/lib/tebako/options_manager.rb +71 -0
  13. data/lib/tebako/packager/pass2msys_patch.rb +5 -1
  14. data/lib/tebako/packager/patch_libraries.rb +47 -27
  15. data/lib/tebako/packager.rb +40 -1
  16. data/lib/tebako/runtime_manager.rb +347 -0
  17. data/lib/tebako/scenario_manager.rb +2 -0
  18. data/lib/tebako/stitcher.rb +255 -0
  19. data/lib/tebako/version.rb +1 -1
  20. data/src/tebako-main.cpp +577 -9
  21. data/tools/.github/workflows/build-containers.yml +1 -1
  22. data/tools/.github/workflows/lint.yml +1 -1
  23. data/tools/.github/workflows/test.yml +17 -35
  24. data/tools/ci-scripts/arm-brew-install.sh +1 -1
  25. data/tools/ci-scripts/arm-brew-setup.sh +1 -1
  26. data/tools/ci-scripts/level-up.sh +1 -1
  27. data/tools/ci-scripts/{patch-fbthrift.sh → patch-glog.sh} +4 -25
  28. data/tools/ci-scripts/patch-zstd.sh +57 -0
  29. data/tools/ci-scripts/tools.sh +1 -1
  30. data/tools/ci-scripts/x86-brew-install.sh +1 -1
  31. data/tools/ci-scripts/x86-brew-setup.sh +1 -1
  32. data/tools/cmake-scripts/def-external-project.cmake +1 -1
  33. data/tools/cmake-scripts/macos-environment.cmake +12 -3
  34. data/tools/cmake-scripts/msys-environment.cmake +1 -1
  35. data/tools/cmake-scripts/setup-libarchive.cmake +3 -7
  36. data/tools/cmake-scripts/setup-libfmt.cmake +1 -1
  37. data/tools/cmake-scripts/setup-libhowardhinnerdate.cmake +1 -1
  38. data/tools/cmake-scripts/version.cmake +1 -1
  39. data/tools/dwarfs-test-helper/CMakeLists.txt +1 -1
  40. data/tools/include/pro-statvfs.h +1 -1
  41. data/tools/tests/cmake/CMakeLists.txt +1 -1
  42. data/tools/tests/setup-libfmt/CMakeLists.txt +1 -1
  43. data/tools/tests/setup-libhowardhinnerdate/CMakeLists.txt +1 -1
  44. data/tools/tests/setup-librachive/CMakeLists.txt +1 -1
  45. data/tools/tests/setup-libutfcpp/CMakeLists.txt +1 -1
  46. data/tools/tests/setup-openssl/CMakeLists.txt +1 -1
  47. metadata +9 -5
  48. data/tools/ci-scripts/patch-folly.sh +0 -526
  49. data/tools/cmake-scripts/setup-openssl-1.1.1.cmake +0 -95
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2024-2025, [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
@@ -28,7 +28,13 @@ name: test
28
28
  on:
29
29
  push:
30
30
  branches: [ master, main ]
31
+ paths-ignore:
32
+ - 'docker/**'
33
+ - '.github/workflows/build-containers.yml'
31
34
  pull_request:
35
+ paths-ignore:
36
+ - 'docker/**'
37
+ - '.github/workflows/build-containers.yml'
32
38
  workflow_dispatch:
33
39
 
34
40
  concurrency:
@@ -42,7 +48,7 @@ jobs:
42
48
  strategy:
43
49
  fail-fast: false
44
50
  matrix:
45
- os: [ macos-13, macos-14 ]
51
+ os: [ macos-14 ]
46
52
  steps:
47
53
  - name: Checkout
48
54
  uses: actions/checkout@v4
@@ -130,7 +136,7 @@ jobs:
130
136
  strategy:
131
137
  fail-fast: false
132
138
  matrix:
133
- os: [ macos-13, macos-14 ]
139
+ os: [ macos-14 ]
134
140
  steps:
135
141
  - name: Checkout
136
142
  uses: actions/checkout@v4
@@ -144,7 +150,6 @@ jobs:
144
150
  run: |
145
151
  set -o errexit -o pipefail -o noclobber -o nounset
146
152
  test -f build/setup-librachive/deps/lib/pkgconfig/libarchive.pc
147
- test -f build/setup-librachive/deps/lib/libarchive.so || test -f build/setup-librachive/deps/lib/libarchive.dylib
148
153
  test -f build/setup-librachive/deps/lib/libarchive.a
149
154
  test -f build/setup-librachive/deps/include/archive.h
150
155
  test -f build/setup-librachive/deps/include/archive_entry.h
@@ -178,7 +183,6 @@ jobs:
178
183
  run: |
179
184
  set -o errexit -o pipefail -o noclobber -o nounset
180
185
  test -f build/setup-librachive/deps/lib/pkgconfig/libarchive.pc
181
- test -f build/setup-librachive/deps/lib/libarchive.so || test -f build/setup-librachive/deps/lib/libarchive.dylib
182
186
  test -f build/setup-librachive/deps/lib/libarchive.a
183
187
  test -f build/setup-librachive/deps/include/archive.h
184
188
  test -f build/setup-librachive/deps/include/archive_entry.h
@@ -189,7 +193,7 @@ jobs:
189
193
  strategy:
190
194
  fail-fast: false
191
195
  matrix:
192
- os: [ macos-13, macos-14 ]
196
+ os: [ macos-14 ]
193
197
  steps:
194
198
  - name: Checkout
195
199
  uses: actions/checkout@v4
@@ -241,7 +245,7 @@ jobs:
241
245
  strategy:
242
246
  fail-fast: false
243
247
  matrix:
244
- os: [ macos-13, macos-14 ]
248
+ os: [ macos-14 ]
245
249
  steps:
246
250
  - name: Checkout
247
251
  uses: actions/checkout@v4
@@ -287,7 +291,8 @@ jobs:
287
291
 
288
292
  test-cross-brew-install:
289
293
  name: test arm-brew-setup/install
290
- runs-on: macos-13
294
+ runs-on: macos-14
295
+ continue-on-error: true
291
296
  steps:
292
297
  - name: Checkout
293
298
  uses: actions/checkout@v4
@@ -310,40 +315,17 @@ jobs:
310
315
  strategy:
311
316
  fail-fast: false
312
317
  matrix:
313
- os: [ macos-13, macos-14 ]
318
+ os: [ macos-14 ]
314
319
 
315
320
  steps:
316
321
  - name: Checkout
317
322
  uses: actions/checkout@v4
318
323
 
324
+ - name: Checkout
325
+ uses: actions/checkout@v4
326
+
319
327
  - name: Install packages
320
328
  run: brew install flex bison bash
321
329
 
322
330
  - name: Run CMake test
323
331
  run: cmake -B test.build -S tests/cmake
324
-
325
- test-setup-openssl-alpine:
326
- name: test openssl 1.1.1 setup on alpine
327
- runs-on: ubuntu-latest
328
- container:
329
- image: 'ghcr.io/${{ github.repository_owner }}/tebako-alpine-3.17-dev'
330
-
331
- steps:
332
- - name: Install packages
333
- run: |
334
- apk --no-cache --upgrade add git bash cmake make build-base autoconf binutils-dev linux-headers
335
- git config --global --add safe.directory $PWD
336
-
337
- - name: Checkout
338
- uses: actions/checkout@v4
339
-
340
- - name: Run cmake script
341
- run: |
342
- cmake -B build/setup-openssl tests/setup-openssl
343
- cmake --build build/setup-openssl
344
-
345
- - name: Test
346
- run: |
347
- set -o errexit -o pipefail -o noclobber -o nounset
348
- v=$(build/setup-openssl/deps/bin/openssl version)
349
- [ "$v" = "OpenSSL 1.1.1w 11 Sep 2023" ]
@@ -1,6 +1,6 @@
1
1
  #! /bin/bash
2
2
  #
3
- # Copyright (c) 2022, [Ribose Inc](https://www.ribose.com).
3
+ # Copyright (c) 2022-2025 [Ribose Inc](https://www.ribose.com).
4
4
  # All rights reserved.
5
5
  # This file is a part of the Tebako project.
6
6
  #
@@ -1,6 +1,6 @@
1
1
  #! /bin/bash
2
2
  #
3
- # Copyright (c) 2022, [Ribose Inc](https://www.ribose.com).
3
+ # Copyright (c) 2022-2025 [Ribose Inc](https://www.ribose.com).
4
4
  # All rights reserved.
5
5
  # This file is a part of the Tebako project.
6
6
  #
@@ -1,6 +1,6 @@
1
1
  #! /bin/bash
2
2
  #
3
- # Copyright (c) 2022, [Ribose Inc](https://www.ribose.com).
3
+ # Copyright (c) 2022-2025 [Ribose Inc](https://www.ribose.com).
4
4
  # All rights reserved.
5
5
  # This file is a part of the Tebako project.
6
6
  #
@@ -1,5 +1,5 @@
1
1
  #! /bin/bash
2
- # Copyright (c) 2022,2024 [Ribose Inc](https://www.ribose.com).
2
+ # Copyright (c) 2025 [Ribose Inc](https://www.ribose.com).
3
3
  # All rights reserved.
4
4
  # This file is a part of the Tebako project.
5
5
  #
@@ -52,27 +52,6 @@ else
52
52
  exit 1
53
53
  fi
54
54
 
55
- if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then
56
- re="ftruncate(file\.fd(), finalBufferSize),"
57
- sbst="folly::portability::unistd::ftruncate(file.fd(), finalBufferSize), \/* tebako patched *\/"
58
- do_patch "$1/thrift/lib/cpp2/frozen/FrozenUtil.h" "$re" "$sbst"
59
-
60
- re="if (detail::platform_is_windows()) {"
61
- sbst="if (false) { \/* tebako patched *\/"
62
- do_patch "$1/thrift/compiler/source_location.cc" "$re" "$sbst"
63
-
64
- re="#include <fmt\/fmt-format\.h>"
65
- # shellcheck disable=SC2251
66
- ! IFS= read -r -d '' sbst << EOM
67
- #include <fmt\/format.h>
68
-
69
- \/* -- Start of tebako patch -- *\/
70
- #include <fmt\/fmt-ranges.h>
71
- \/* -- End of tebako patch -- *\/
72
- EOM
73
-
74
- do_patch_multiline "$1/thrift/compiler/lib/cpp2/util.h" "$re" "$sbst"
75
- do_patch_multiline "$1/thrift/compiler/gen/cpp/namespace_resolver.cc" "$re" "$sbst"
76
- do_patch_multiline "$1/thrift/compiler/ast/t_const_value.h" "$re" "$sbst"
77
-
78
- fi
55
+ re="cmake_policy (VERSION 3.3)"
56
+ sbst="cmake_policy (VERSION 3.16...3.27)"
57
+ do_patch "$1/cmake/GetCacheVariables.cmake" "$re" "$sbst"
@@ -0,0 +1,57 @@
1
+ #! /bin/bash
2
+ # Copyright (c) 2025 [Ribose Inc](https://www.ribose.com).
3
+ # All rights reserved.
4
+ # This file is a part of the Tebako project.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions
8
+ # are met:
9
+ # 1. Redistributions of source code must retain the above copyright
10
+ # notice, this list of conditions and the following disclaimer.
11
+ # 2. Redistributions in binary form must reproduce the above copyright
12
+ # notice, this list of conditions and the following disclaimer in the
13
+ # documentation and/or other materials provided with the distribution.
14
+ #
15
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16
+ # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17
+ # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18
+ # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
19
+ # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20
+ # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21
+ # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23
+ # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24
+ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25
+ # POSSIBILITY OF SUCH DAMAGE.
26
+
27
+ set -o errexit -o pipefail -o noclobber -o nounset
28
+
29
+ # ....................................................
30
+ restore_and_save() {
31
+ echo "Patching $1"
32
+ test -e "$1.old" && cp -f "$1.old" "$1"
33
+ cp -f "$1" "$1.old"
34
+ }
35
+
36
+ do_patch() {
37
+ restore_and_save "$1"
38
+ "$gSed" -i "s/$2/$3/g" "$1"
39
+ }
40
+
41
+ do_patch_multiline() {
42
+ restore_and_save "$1"
43
+ "$gSed" -i "s/$re/${sbst//$'\n'/"\\n"}/g" "$1"
44
+ }
45
+
46
+ if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "linux-musl"* || "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then
47
+ gSed="sed"
48
+ elif [[ "$OSTYPE" == "darwin"* ]]; then
49
+ gSed="gsed"
50
+ else
51
+ echo "Unknown OSTYPE=$OSTYPE"
52
+ exit 1
53
+ fi
54
+
55
+ re="cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)"
56
+ sbst="cmake_minimum_required(VERSION 3.24.0)"
57
+ do_patch "$1/build/cmake/CMakeLists.txt" "$re" "$sbst"
@@ -1,5 +1,5 @@
1
1
  #!/bin/bash
2
- # Copyright (c) 2023, [Ribose Inc](https://www.ribose.com).
2
+ # Copyright (c) 2023-2025 [Ribose Inc](https://www.ribose.com).
3
3
  # All rights reserved.
4
4
  # This file is a part of the Tebako project.
5
5
  #
@@ -1,6 +1,6 @@
1
1
  #! /bin/bash
2
2
  #
3
- # Copyright (c) 2022, [Ribose Inc](https://www.ribose.com).
3
+ # Copyright (c) 2022-2025 [Ribose Inc](https://www.ribose.com).
4
4
  # All rights reserved.
5
5
  # This file is a part of the Tebako project.
6
6
  #
@@ -1,6 +1,6 @@
1
1
  #! /bin/bash
2
2
  #
3
- # Copyright (c) 2022, [Ribose Inc](https://www.ribose.com).
3
+ # Copyright (c) 2022-2025 [Ribose Inc](https://www.ribose.com).
4
4
  # All rights reserved.
5
5
  # This file is a part of the Tebako project.
6
6
  #
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021-2022 [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2021-2025 [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2021-2025, [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2021-2025 [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
@@ -59,9 +59,18 @@ if (CMAKE_HOST_SYSTEM_NAME MATCHES "Darwin")
59
59
  set(OPENSSL_VERSION "3")
60
60
  endif()
61
61
  set(OPENSSL_ROOT_DIR "${BREW_PREFIX}/opt/openssl@${OPENSSL_VERSION}")
62
+
63
+ # IMPORTANT: Set CMAKE_PREFIX_PATH but do NOT add Homebrew include directories
64
+ # globally. vcpkg provides our dependencies and its includes must take precedence.
65
+ # Homebrew's include paths would conflict with vcpkg packages (e.g., dwarfs).
66
+ # Only add specific Homebrew package includes when explicitly needed via target_*
67
+ # functions, not global include_directories().
68
+ #
69
+ # Previously this file had:
70
+ # include_directories("${OPENSSL_ROOT_DIR}/include")
71
+ # include_directories("${BREW_PREFIX}/include")
72
+ # These caused Homebrew's dwarfs headers to shadow vcpkg's newer dwarfs headers.
62
73
  set(CMAKE_PREFIX_PATH "${BREW_PREFIX}")
63
- include_directories("${OPENSSL_ROOT_DIR}/include")
64
- include_directories("${BREW_PREFIX}/include")
65
74
 
66
75
  # https://stackoverflow.com/questions/53877344/cannot-configure-cmake-to-look-for-homebrew-installed-version-of-bison
67
76
  find_and_set_homebrew_prefix("bison" "BISON" "BISON_EXECUTABLE")
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022, [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2022-2025 [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
@@ -23,7 +23,7 @@
23
23
  # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24
24
  # POSSIBILITY OF SUCH DAMAGE.
25
25
 
26
- def_ext_prj_t(LIBARCHIVE "3.6.2" "9e2c1b80d5fbe59b61308fdfab6c79b5021d7ff4ff2489fb12daf0a96a83551d")
26
+ def_ext_prj_t(LIBARCHIVE "3.7.9" "ed8b5732e4cd6e30fae909fb945cad8ff9cb7be5c6cdaa3944ec96e4a200c04c")
27
27
 
28
28
  message(STATUS "Collecting libarchive - " v${LIBARCHIVE_VER} " at " ${LIBARCHIVE_SOURCE_DIR})
29
29
 
@@ -74,15 +74,11 @@ endif(DEFINED TEBAKO_BUILD_TARGET)
74
74
  # Method #1 is implemented here.
75
75
  # ...................................................................
76
76
 
77
- if(${IS_MSYS})
78
- set(__LIBARCHIVE "${DEPS}/lib/libarchive_static.a")
79
- else(${IS_MSYS})
80
- set(__LIBARCHIVE "${DEPS}/lib/libarchive.a")
81
- endif(${IS_MSYS})
77
+ set(__LIBARCHIVE "${DEPS}/lib/libarchive.a")
82
78
 
83
79
  ExternalProject_Add(${LIBARCHIVE_PRJ}
84
80
  PREFIX "${DEPS}"
85
- URL http://www.libarchive.org/downloads/libarchive-${LIBARCHIVE_VER}.tar.xz
81
+ URL https://www.libarchive.org/downloads/libarchive-${LIBARCHIVE_VER}.tar.xz
86
82
  URL_HASH SHA256=${LIBARCHIVE_HASH}
87
83
  DOWNLOAD_NO_PROGRESS true
88
84
  UPDATE_COMMAND ""
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2024 [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2024 [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2018-2021 Ribose Inc.
1
+ # Copyright (c) 2018-2025 Ribose Inc.
2
2
  # All rights reserved.
3
3
  #
4
4
  # Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2025, [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2025 [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  *
3
- * Copyright (c) 2022, [Ribose Inc](https://www.ribose.com).
3
+ * Copyright (c) 2022-2025 [Ribose Inc](https://www.ribose.com).
4
4
  * All rights reserved.
5
5
  * This file is a part of the Tebako project. (libdwarfs-wr)
6
6
  *
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2024, [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2024, [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2024, [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2024, [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2024-2025
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2024, [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2025, [Ribose Inc](https://www.ribose.com).
1
+ # Copyright (c) 2025-2025 [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
3
  # This file is a part of the Tebako project.
4
4
  #
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.13.4
4
+ version: 0.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-05-02 00:00:00.000000000 Z
11
+ date: 2026-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -203,12 +203,14 @@ files:
203
203
  - bin/console
204
204
  - bin/setup
205
205
  - cmake/copy_dir.cmake
206
+ - cmake/tebako-libtfs.cmake
206
207
  - common.env
207
208
  - exe/tebako
208
209
  - exe/tebako-packager
209
210
  - include/tebako/tebako-fs.h
210
211
  - include/tebako/tebako-main.h
211
212
  - include/tebako/tebako-prism.h
213
+ - include/tebako/tpkg.h
212
214
  - lib/tebako.rb
213
215
  - lib/tebako/build_helpers.rb
214
216
  - lib/tebako/cache_manager.rb
@@ -217,6 +219,7 @@ files:
217
219
  - lib/tebako/codegen.rb
218
220
  - lib/tebako/deploy_helper.rb
219
221
  - lib/tebako/error.rb
222
+ - lib/tebako/launcher_abi.rb
220
223
  - lib/tebako/options_manager.rb
221
224
  - lib/tebako/package_descriptor.rb
222
225
  - lib/tebako/packager.rb
@@ -235,7 +238,9 @@ files:
235
238
  - lib/tebako/packager_lite.rb
236
239
  - lib/tebako/ruby_builder.rb
237
240
  - lib/tebako/ruby_version.rb
241
+ - lib/tebako/runtime_manager.rb
238
242
  - lib/tebako/scenario_manager.rb
243
+ - lib/tebako/stitcher.rb
239
244
  - lib/tebako/stripper.rb
240
245
  - lib/tebako/version.rb
241
246
  - src/tebako-main.cpp
@@ -249,8 +254,8 @@ files:
249
254
  - tools/ci-scripts/arm-brew-install.sh
250
255
  - tools/ci-scripts/arm-brew-setup.sh
251
256
  - tools/ci-scripts/level-up.sh
252
- - tools/ci-scripts/patch-fbthrift.sh
253
- - tools/ci-scripts/patch-folly.sh
257
+ - tools/ci-scripts/patch-glog.sh
258
+ - tools/ci-scripts/patch-zstd.sh
254
259
  - tools/ci-scripts/tools.sh
255
260
  - tools/ci-scripts/x86-brew-install.sh
256
261
  - tools/ci-scripts/x86-brew-setup.sh
@@ -261,7 +266,6 @@ files:
261
266
  - tools/cmake-scripts/setup-libfmt.cmake
262
267
  - tools/cmake-scripts/setup-libhowardhinnerdate.cmake
263
268
  - tools/cmake-scripts/setup-libutfcpp.cmake
264
- - tools/cmake-scripts/setup-openssl-1.1.1.cmake
265
269
  - tools/cmake-scripts/version.cmake
266
270
  - tools/docker/alpine-3.17-dev.Dockerfile
267
271
  - tools/docker/tools/tools.sh