tebako 0.12.15 → 0.13.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 (77) hide show
  1. checksums.yaml +4 -4
  2. data/CMakeLists.txt +3 -3
  3. data/CODE_OF_CONDUCT.adoc +128 -0
  4. data/CONTRIBUTING.adoc +294 -0
  5. data/Gemfile +1 -1
  6. data/INSTALLATION.adoc +231 -0
  7. data/LICENSE.md +33 -0
  8. data/README.adoc +463 -533
  9. data/Rakefile +1 -1
  10. data/cmake/copy_dir.cmake +1 -1
  11. data/common.env +1 -1
  12. data/exe/tebako +1 -1
  13. data/exe/tebako-packager +1 -16
  14. data/include/tebako/tebako-fs.h +1 -1
  15. data/include/tebako/tebako-main.h +1 -1
  16. data/lib/tebako/build_helpers.rb +1 -1
  17. data/lib/tebako/cache_manager.rb +1 -1
  18. data/lib/tebako/cli.rb +1 -1
  19. data/lib/tebako/cli_helpers.rb +34 -8
  20. data/lib/tebako/codegen.rb +1 -1
  21. data/lib/tebako/deploy_helper.rb +8 -7
  22. data/lib/tebako/error.rb +1 -1
  23. data/lib/tebako/options_manager.rb +29 -9
  24. data/lib/tebako/package_descriptor.rb +1 -1
  25. data/lib/tebako/packager/pass1_patch.rb +1 -1
  26. data/lib/tebako/packager/pass1a_patch.rb +1 -1
  27. data/lib/tebako/packager/pass2_patch.rb +1 -1
  28. data/lib/tebako/packager/pass2_patch_crt.rb +1 -1
  29. data/lib/tebako/packager/pass2msys_patch.rb +1 -1
  30. data/lib/tebako/packager/patch.rb +1 -1
  31. data/lib/tebako/packager/patch_buildsystem.rb +1 -1
  32. data/lib/tebako/packager/patch_helpers.rb +1 -1
  33. data/lib/tebako/packager/patch_libraries.rb +1 -1
  34. data/lib/tebako/packager/patch_literals.rb +1 -1
  35. data/lib/tebako/packager/patch_main.rb +1 -1
  36. data/lib/tebako/packager/rubygems_patch.rb +1 -1
  37. data/lib/tebako/packager.rb +4 -4
  38. data/lib/tebako/packager_lite.rb +3 -3
  39. data/lib/tebako/ruby_builder.rb +4 -4
  40. data/lib/tebako/ruby_version.rb +3 -2
  41. data/lib/tebako/scenario_manager.rb +9 -1
  42. data/lib/tebako/stripper.rb +1 -1
  43. data/lib/tebako/version.rb +2 -2
  44. data/lib/tebako.rb +1 -1
  45. data/src/tebako-main.cpp +1 -1
  46. data/tebako.gemspec +1 -1
  47. data/tools/.github/workflows/build-containers.yml +190 -0
  48. data/tools/.github/workflows/lint.yml +3 -3
  49. data/tools/.github/workflows/test.yml +150 -11
  50. data/tools/ci-scripts/arm-brew-install.sh +1 -1
  51. data/tools/ci-scripts/arm-brew-setup.sh +1 -1
  52. data/tools/ci-scripts/level-up.sh +1 -1
  53. data/tools/ci-scripts/patch-fbthrift.sh +1 -1
  54. data/tools/ci-scripts/patch-folly.sh +2 -2
  55. data/tools/ci-scripts/tools.sh +1 -1
  56. data/tools/ci-scripts/x86-brew-install.sh +1 -1
  57. data/tools/ci-scripts/x86-brew-setup.sh +1 -1
  58. data/tools/cmake-scripts/def-external-project.cmake +1 -1
  59. data/tools/cmake-scripts/macos-environment.cmake +2 -2
  60. data/tools/cmake-scripts/msys-environment.cmake +1 -1
  61. data/tools/cmake-scripts/setup-libarchive.cmake +1 -1
  62. data/tools/cmake-scripts/setup-libfmt.cmake +1 -1
  63. data/tools/cmake-scripts/setup-libhowardhinnerdate.cmake +1 -1
  64. data/tools/cmake-scripts/setup-libutfcpp.cmake +2 -2
  65. data/tools/cmake-scripts/setup-openssl-1.1.1.cmake +1 -1
  66. data/tools/docker/alpine-3.17-dev.Dockerfile +49 -0
  67. data/tools/docker/tools/tools.sh +66 -0
  68. data/tools/docker/ubuntu-20.04-dev.Dockerfile +51 -0
  69. data/tools/dwarfs-test-helper/CMakeLists.txt +1 -1
  70. data/tools/include/pro-statvfs.h +1 -1
  71. data/tools/tests/cmake/CMakeLists.txt +1 -1
  72. data/tools/tests/setup-libfmt/CMakeLists.txt +1 -1
  73. data/tools/tests/setup-libhowardhinnerdate/CMakeLists.txt +1 -1
  74. data/tools/tests/setup-librachive/CMakeLists.txt +1 -1
  75. data/tools/tests/setup-libutfcpp/CMakeLists.txt +1 -1
  76. data/tools/tests/setup-openssl/CMakeLists.txt +1 -1
  77. metadata +10 -2
@@ -0,0 +1,66 @@
1
+ #!/bin/bash
2
+
3
+ # Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
4
+ # All rights reserved.
5
+ # This file is a part of the Tebako project.
6
+ #
7
+ # Redistribution and use in source and binary forms, with or without
8
+ # modification, are permitted provided that the following conditions
9
+ # are met:
10
+ # 1. Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # 2. Redistributions in binary form must reproduce the above copyright
13
+ # notice, this list of conditions and the following disclaimer in the
14
+ # documentation and/or other materials provided with the distribution.
15
+ #
16
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18
+ # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
+ # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
20
+ # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21
+ # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22
+ # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24
+ # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25
+ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26
+ # POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ set -o errexit -o pipefail -o noclobber -o nounset
29
+
30
+ : "${LOCAL_BUILDS:=/tmp/tebako}"
31
+ : "${CMAKE_VERSION:=3.24.4-1}"
32
+ : "${RUBY_VERSION:=3.3.7}"
33
+ : "${RUBY_INSTALL_VERSION:=0.9.3}"
34
+ : "${ARCH:=x64}"
35
+
36
+ install_cmake() {
37
+ echo "Running install_cmake for CMake version ${CMAKE_VERSION} for ${ARCH}"
38
+ local cmake_install="${LOCAL_BUILDS}/cmake"
39
+ mkdir -p "${cmake_install}"
40
+ pushd "${cmake_install}"
41
+ wget -nv "https://github.com/xpack-dev-tools/cmake-xpack/releases/download/v${CMAKE_VERSION}/xpack-cmake-${CMAKE_VERSION}-linux-${ARCH}.tar.gz"
42
+ tar -zxf "xpack-cmake-${CMAKE_VERSION}-linux-${ARCH}.tar.gz" --directory /usr --strip-components=1 --skip-old-files
43
+ popd
44
+ rm -rf "${cmake_install}"
45
+ }
46
+
47
+ install_ruby() {
48
+ echo "Running ruby_install version ${RUBY_INSTALL_VERSION} for Ruby ${RUBY_VERSION}"
49
+ local ruby_install=${LOCAL_BUILDS}/ruby_install
50
+ mkdir -p "${ruby_install}"
51
+ pushd "${ruby_install}"
52
+ wget -nv "https://github.com/postmodern/ruby-install/releases/download/v${RUBY_INSTALL_VERSION}/ruby-install-${RUBY_INSTALL_VERSION}.tar.gz"
53
+ tar -xzvf "ruby-install-${RUBY_INSTALL_VERSION}.tar.gz"
54
+ cd "ruby-install-${RUBY_INSTALL_VERSION}"
55
+ make install
56
+ ruby-install --system ruby "${RUBY_VERSION}" -- --without-gmp --disable-dtrace --disable-debug-env --disable-install-doc CC="${CC}"
57
+ popd
58
+ rm -rf "${ruby_install}"
59
+ }
60
+
61
+ DIR0=$( dirname "$0" )
62
+ DIR_TOOLS=$( cd "$DIR0" && pwd )
63
+
64
+ echo "Running tools.sh with args: $* DIR_TOOLS: ${DIR_TOOLS}"
65
+
66
+ "$@"
@@ -0,0 +1,51 @@
1
+ # Copyright (c) 2024-2025 [Ribose Inc](https://www.ribose.com).
2
+ # All rights reserved.
3
+ # This file is a part of the Tebako project.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without
6
+ # modification, are permitted provided that the following conditions
7
+ # are met:
8
+ # 1. Redistributions of source code must retain the above copyright
9
+ # notice, this list of conditions and the following disclaimer.
10
+ # 2. Redistributions in binary form must reproduce the above copyright
11
+ # notice, this list of conditions and the following disclaimer in the
12
+ # documentation and/or other materials provided with the distribution.
13
+ #
14
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15
+ # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
16
+ # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17
+ # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
18
+ # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19
+ # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20
+ # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22
+ # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23
+ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24
+ # POSSIBILITY OF SUCH DAMAGE.
25
+
26
+ FROM ubuntu:focal
27
+
28
+ ENV DEBIAN_FRONTEND=noninteractive
29
+ ENV TZ=Etc/UTC
30
+ ARG ARCH=x64
31
+
32
+ RUN apt-get -y update && \
33
+ apt-get -y install sudo wget git make pkg-config clang-12 clang++-12 \
34
+ autoconf binutils-dev libevent-dev acl-dev libfmt-dev libjemalloc-dev \
35
+ libdouble-conversion-dev libiberty-dev liblz4-dev liblzma-dev libssl-dev \
36
+ libboost-filesystem-dev libboost-program-options-dev libboost-system-dev \
37
+ libboost-iostreams-dev libboost-date-time-dev libboost-context-dev \
38
+ libboost-regex-dev libboost-thread-dev libbrotli-dev libunwind-dev \
39
+ libdwarf-dev libelf-dev libgoogle-glog-dev libffi-dev libgdbm-dev \
40
+ libyaml-dev libncurses-dev libreadline-dev libutfcpp-dev libstdc++-10-dev \
41
+ gcc-10 g++-10 curl gpg gcovr ccache
42
+
43
+ ENV CC=clang-12
44
+ ENV CXX=clang++-12
45
+
46
+ COPY tools /opt/tools
47
+ RUN /opt/tools/tools.sh install_cmake && \
48
+ /opt/tools/tools.sh install_ruby
49
+
50
+ ENV PS1="\[\]\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ \[\]"
51
+ CMD ["bash"]
@@ -1,6 +1,6 @@
1
1
  # Copyright (c) 2025, [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
- # This file is a part of tebako
3
+ # This file is a part of the Tebako project.
4
4
  #
5
5
  # Redistribution and use in source and binary forms, with or without
6
6
  # modification, are permitted provided that the following conditions
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Copyright (c) 2022, [Ribose Inc](https://www.ribose.com).
4
4
  * All rights reserved.
5
- * This file is a part of tebako (libdwarfs-wr)
5
+ * This file is a part of the Tebako project. (libdwarfs-wr)
6
6
  *
7
7
  * Redistribution and use in source and binary forms, with or without
8
8
  * modification, are permitted provided that the following conditions
@@ -1,6 +1,6 @@
1
1
  # Copyright (c) 2024, [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
- # This file is a part of tebako
3
+ # This file is a part of the Tebako project.
4
4
  #
5
5
  # Redistribution and use in source and binary forms, with or without
6
6
  # modification, are permitted provided that the following conditions
@@ -1,6 +1,6 @@
1
1
  # Copyright (c) 2024, [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
- # This file is a part of tebako
3
+ # This file is a part of the Tebako project.
4
4
  #
5
5
  # Redistribution and use in source and binary forms, with or without
6
6
  # modification, are permitted provided that the following conditions
@@ -1,6 +1,6 @@
1
1
  # Copyright (c) 2024, [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
- # This file is a part of tebako
3
+ # This file is a part of the Tebako project.
4
4
  #
5
5
  # Redistribution and use in source and binary forms, with or without
6
6
  # modification, are permitted provided that the following conditions
@@ -1,6 +1,6 @@
1
1
  # Copyright (c) 2024, [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
- # This file is a part of tebako
3
+ # This file is a part of the Tebako project.
4
4
  #
5
5
  # Redistribution and use in source and binary forms, with or without
6
6
  # modification, are permitted provided that the following conditions
@@ -1,6 +1,6 @@
1
1
  # Copyright (c) 2024, [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
- # This file is a part of tebako
3
+ # This file is a part of the Tebako project.
4
4
  #
5
5
  # Redistribution and use in source and binary forms, with or without
6
6
  # modification, are permitted provided that the following conditions
@@ -1,6 +1,6 @@
1
1
  # Copyright (c) 2025, [Ribose Inc](https://www.ribose.com).
2
2
  # All rights reserved.
3
- # This file is a part of tebako
3
+ # This file is a part of the Tebako project.
4
4
  #
5
5
  # Redistribution and use in source and binary forms, with or without
6
6
  # modification, are permitted provided that the following conditions
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.12.15
4
+ version: 0.13.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-02-24 00:00:00.000000000 Z
11
+ date: 2025-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -193,7 +193,11 @@ files:
193
193
  - ".clang-format"
194
194
  - Brewfile
195
195
  - CMakeLists.txt
196
+ - CODE_OF_CONDUCT.adoc
197
+ - CONTRIBUTING.adoc
196
198
  - Gemfile
199
+ - INSTALLATION.adoc
200
+ - LICENSE.md
197
201
  - README.adoc
198
202
  - Rakefile
199
203
  - bin/console
@@ -237,6 +241,7 @@ files:
237
241
  - src/tebako-main.cpp
238
242
  - tebako.gemspec
239
243
  - tools/.gitattributes
244
+ - tools/.github/workflows/build-containers.yml
240
245
  - tools/.github/workflows/lint.yml
241
246
  - tools/.github/workflows/test.yml
242
247
  - tools/.gitignore
@@ -258,6 +263,9 @@ files:
258
263
  - tools/cmake-scripts/setup-libutfcpp.cmake
259
264
  - tools/cmake-scripts/setup-openssl-1.1.1.cmake
260
265
  - tools/cmake-scripts/version.cmake
266
+ - tools/docker/alpine-3.17-dev.Dockerfile
267
+ - tools/docker/tools/tools.sh
268
+ - tools/docker/ubuntu-20.04-dev.Dockerfile
261
269
  - tools/dwarfs-test-helper/CMakeLists.txt
262
270
  - tools/include/pro-statvfs.h
263
271
  - tools/tests/cmake/CMakeLists.txt