tebako 0.15.7 → 0.15.8
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.
- checksums.yaml +4 -4
- data/CMakeLists.txt +1 -11
- data/lib/tebako/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6fa7515769c7ae33c0b89cc8ff79a268e468ea722e7020d55fa9cd1e3ef49c7b
|
|
4
|
+
data.tar.gz: ea471ce3d5740057352ab9a63477d93d18a2a692de913a20e4babc95d8442892
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b90c153285f562f555802a848a530e71983a03158a7c253f00264270dbf2593a7ed8aa742f46b1db17ae911e52d14da5289e45473c850ed58b95c034210133d
|
|
7
|
+
data.tar.gz: 9f125641fe1008e3afa312335ad8a3e89fd5b5954a66747524dcaa2f1a4c05880a27bb3264db57b6a7f7d439591c85f1324037ee5c1ac1dd4faffa18739d62d2
|
data/CMakeLists.txt
CHANGED
|
@@ -112,16 +112,6 @@ elseif("${OSTYPE_TXT}" MATCHES "^darwin.*")
|
|
|
112
112
|
set(IS_DARWIN ON)
|
|
113
113
|
endif()
|
|
114
114
|
|
|
115
|
-
if(IS_MSYS AND DWARFS_PRELOAD)
|
|
116
|
-
# The prebuilt windows-ucrt64 libtfs package carries the modern API only:
|
|
117
|
-
# the legacy tebako API (tebako-io/memfs, which tebako-main.cpp consumes)
|
|
118
|
-
# is excluded from the standalone MinGW build by design because its
|
|
119
|
-
# ruby-win32 shims only compile inside the ruby build context. Windows
|
|
120
|
-
# runtimes therefore always build libtfs from source (tebako#345).
|
|
121
|
-
message(STATUS "DWARFS_PRELOAD forced OFF on msys (the prebuilt package lacks the legacy tebako API)")
|
|
122
|
-
set(DWARFS_PRELOAD OFF CACHE BOOL "Deploy the prebuilt libtfs package from the GitHub release" FORCE)
|
|
123
|
-
endif()
|
|
124
|
-
|
|
125
115
|
if(${RUBY_VER} VERSION_LESS "3.1.0")
|
|
126
116
|
set(OPENSSL_VER "1.1")
|
|
127
117
|
else(${RUBY_VER} VERSION_LESS "3.1.0")
|
|
@@ -185,7 +175,7 @@ string(CONCAT RUBY_API_VER ${RUBY_VER_BASE} ".0")
|
|
|
185
175
|
# NOTE: the env override in def_ext_prj_g (tebako-tools) is currently broken
|
|
186
176
|
# (`if (DEFINED ENV{${TAG})` is missing a closing brace, so the test never
|
|
187
177
|
# fires); this default is the operative tag selection.
|
|
188
|
-
def_ext_prj_g(DWARFS_WR "v0.12.
|
|
178
|
+
def_ext_prj_g(DWARFS_WR "v0.12.10")
|
|
189
179
|
|
|
190
180
|
# Provisions libtfs (prebuilt package or vcpkg toolchain for the source
|
|
191
181
|
# build), the prebuilt mkdwarfs, and -- for the prebuilt path -- the
|
data/lib/tebako/version.rb
CHANGED