libv8-node 18.16.0.0 → 18.19.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 58ade5c78bafd88500d858453de1dab5eb2bef6c609b05feef5789b728537baf
4
- data.tar.gz: 5e12dc0d3195ccaf2a67942b7c91026fe11ec6fca97b6b3bfe2890c7533dfee1
3
+ metadata.gz: 1b315cf0c9b93c8b72c0c93217620056865a7a2d529f60b50410e20720afab91
4
+ data.tar.gz: efaf88598b5d5b3d03518bdfb17a4e6b0e28b0ba8462c27aa819f00d0739ff99
5
5
  SHA512:
6
- metadata.gz: 7523c349c1c7b63ff43c0f6e2da30fd225a74e42c5445418b283309e8544c1fdd11ee84bddf2bba59dcda43e121a5858047160edf25b7859cd50eb08d443c64b
7
- data.tar.gz: 8f2328edd6496a19a571bc84ea785af383caf2688a1193d56b36622e0991ced74763f5ddd4f57c3c6dfc04e9034fb0bc7174b8da2efde0b7a2525497d6b48ba1
6
+ metadata.gz: 144737ba46503b1154fab500df60bbdd5a993cd84276d92d65e77202451ff183dd6a6642369c7a29dcbc4f7fbd07d4571934ce5f07d12c7b34e419e2707ff9c4
7
+ data.tar.gz: 8653426d7d84f2140a02fc90331ef1b8d9d1477a28335875d0a5a63737582a15a877d7872df4291e89a3e77e33bb583454a154306ff0a06925364678e0738151
@@ -1,7 +1,7 @@
1
1
  module Libv8; end
2
2
 
3
3
  module Libv8::Node
4
- VERSION = '18.16.0.0'.freeze
5
- NODE_VERSION = '18.16.0'.freeze
4
+ VERSION = '18.19.0.0'.freeze
5
+ NODE_VERSION = '18.19.0'.freeze
6
6
  LIBV8_VERSION = '10.2.154.26'.freeze # from v8/include/v8-version.h
7
7
  end
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.16.0.0
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: 2023-05-26 00:00:00.000000000 Z
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.3.20
105
+ rubygems_version: 3.4.22
105
106
  signing_key:
106
107
  specification_version: 4
107
108
  summary: Node.JS's V8 JavaScript engine