libv8-node 18.16.0.0 → 18.19.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/libv8/node/version.rb +2 -2
- data/libexec/build-libv8 +9 -1
- data/sums/v18.19.0.sum +1 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b315cf0c9b93c8b72c0c93217620056865a7a2d529f60b50410e20720afab91
|
4
|
+
data.tar.gz: efaf88598b5d5b3d03518bdfb17a4e6b0e28b0ba8462c27aa819f00d0739ff99
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 144737ba46503b1154fab500df60bbdd5a993cd84276d92d65e77202451ff183dd6a6642369c7a29dcbc4f7fbd07d4571934ce5f07d12c7b34e419e2707ff9c4
|
7
|
+
data.tar.gz: 8653426d7d84f2140a02fc90331ef1b8d9d1477a28335875d0a5a63737582a15a877d7872df4291e89a3e77e33bb583454a154306ff0a06925364678e0738151
|
data/lib/libv8/node/version.rb
CHANGED
data/libexec/build-libv8
CHANGED
@@ -37,7 +37,15 @@ make BUILDTYPE="${BUILDTYPE}" "out/Makefile"
|
|
37
37
|
|
38
38
|
# shellcheck disable=SC2154 # these variables are defined by `eval`ing the output of the platform script above
|
39
39
|
if [ "$host_platform" != "$target_platform" ] && [ "${target_platform%%-*}" = "aarch64" ]; then
|
40
|
-
find . -iname "*.host.mk" -exec sed -i '/-msign-return-address/d' {} ';'
|
40
|
+
find . -iname "*.host.mk" -exec sed -i '/-msign-return-address /d' {} ';'
|
41
|
+
fi
|
42
|
+
|
43
|
+
# workaround for clang 15 making -Wenum-constexpr-conversion a default and an error
|
44
|
+
# (if the host isn't arm64, no such error occurs)
|
45
|
+
|
46
|
+
# shellcheck disable=SC2154 # these variables are defined by `eval`ing the output of the platform script above
|
47
|
+
if [ "${target_platform%%-*}" = "arm64" ]; then
|
48
|
+
find . \( -iname "*.host.mk" -or -iname "*.target.mk" \) -exec perl -pi -e 's/^(CFLAGS_(?:Release|Debug) := )([\\])/\1-Wno-enum-constexpr-conversion \2/' {} ';'
|
41
49
|
fi
|
42
50
|
|
43
51
|
export PATH="${PWD}/out/tools/bin:${PATH}"
|
data/sums/v18.19.0.sum
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
dd4c1dc1cb94e1e29f65a3a592247edeb8ceb23483123b0e1847d75c5f0b0c17
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libv8-node
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 18.
|
4
|
+
version: 18.19.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ''
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -80,6 +80,7 @@ files:
|
|
80
80
|
- sums/v17.9.1.sum
|
81
81
|
- sums/v18.13.0.sum
|
82
82
|
- sums/v18.16.0.sum
|
83
|
+
- sums/v18.19.0.sum
|
83
84
|
- sums/v18.8.0.sum
|
84
85
|
homepage: https://github.com/rubyjs/libv8-node
|
85
86
|
licenses:
|
@@ -101,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
102
|
- !ruby/object:Gem::Version
|
102
103
|
version: '0'
|
103
104
|
requirements: []
|
104
|
-
rubygems_version: 3.
|
105
|
+
rubygems_version: 3.4.22
|
105
106
|
signing_key:
|
106
107
|
specification_version: 4
|
107
108
|
summary: Node.JS's V8 JavaScript engine
|