libv8-node 23.6.1.0 → 24.12.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 +4 -4
- data/ext/libv8-node/builder.rb +2 -0
- data/ext/libv8-node/extconf.rb +1 -1
- data/ext/libv8-node/location.rb +3 -5
- data/ext/libv8-node/paths.rb +2 -0
- data/lib/libv8/node/version.rb +3 -3
- data/lib/libv8/node.rb +2 -0
- data/lib/libv8-node.rb +2 -0
- data/libexec/build-libv8 +12 -1
- data/libexec/build-macos-x86_64 +60 -0
- data/libexec/build-monolith +3 -3
- data/libexec/extract-node +1 -0
- data/libexec/platform +15 -15
- data/patch/v8-add-missing-typename.patch +66 -0
- data/patch/v8-disable-madv-dontfork.patch +3 -3
- data/sums/v23.8.0.sum +1 -0
- data/sums/v24.1.0.sum +1 -0
- data/sums/v24.12.0.sum +1 -0
- metadata +56 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b236529e0b7a1bc84cf99a96962ada218873a6cd24c8093fda5c8c33c9a6f90
|
|
4
|
+
data.tar.gz: e558d5b144f431d251409a73c70e98e32be7c59747f560687f30c6d9129a3d27
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f8e856fdf8828f71750f0141409ec8c134b30d1ac5478407aad6048de333e6f84dcf58bc1a47b9a81fb1d4508eb1f2267b87efb14f999ffeb6fc8a916f3f9040
|
|
7
|
+
data.tar.gz: 8365e6536ee648018e00773b8a194c07b0df395056523f60a90de3e949b82e0c6db3deedd147f72ded6bbf9d73e5dae0127eda36cd165ef78cbd43a84f48103b
|
data/ext/libv8-node/builder.rb
CHANGED
data/ext/libv8-node/extconf.rb
CHANGED
data/ext/libv8-node/location.rb
CHANGED
|
@@ -9,16 +9,14 @@ module Libv8; end
|
|
|
9
9
|
module Libv8::Node
|
|
10
10
|
class Location
|
|
11
11
|
def install!
|
|
12
|
-
File.
|
|
13
|
-
f.write(to_yaml)
|
|
14
|
-
end
|
|
12
|
+
File.write(Pathname(__FILE__).dirname.join('.location.yml'), to_yaml)
|
|
15
13
|
|
|
16
14
|
0
|
|
17
15
|
end
|
|
18
16
|
|
|
19
17
|
def self.load!
|
|
20
18
|
File.open(Pathname(__FILE__).dirname.join('.location.yml')) do |f|
|
|
21
|
-
YAML.respond_to?(:unsafe_load) ? YAML.unsafe_load(f) : YAML.load(f)
|
|
19
|
+
YAML.respond_to?(:unsafe_load) ? YAML.unsafe_load(f) : YAML.load(f)
|
|
22
20
|
end
|
|
23
21
|
end
|
|
24
22
|
|
|
@@ -58,7 +56,7 @@ module Libv8::Node
|
|
|
58
56
|
|
|
59
57
|
class ArchiveNotFound < StandardError
|
|
60
58
|
def initialize(filename)
|
|
61
|
-
super
|
|
59
|
+
super("libv8 did not install properly, expected binary v8 archive '#{filename}'to exist, but it was not found")
|
|
62
60
|
end
|
|
63
61
|
end
|
|
64
62
|
end
|
data/ext/libv8-node/paths.rb
CHANGED
data/lib/libv8/node/version.rb
CHANGED
|
@@ -4,7 +4,7 @@ module Libv8
|
|
|
4
4
|
end
|
|
5
5
|
|
|
6
6
|
module Libv8::Node
|
|
7
|
-
VERSION = '
|
|
8
|
-
NODE_VERSION = '
|
|
9
|
-
LIBV8_VERSION = '
|
|
7
|
+
VERSION = '24.12.0.0'
|
|
8
|
+
NODE_VERSION = '24.12.0'
|
|
9
|
+
LIBV8_VERSION = '13.6.233.17' # from src/node-.../deps/v8/include/v8-version.h
|
|
10
10
|
end
|
data/lib/libv8/node.rb
CHANGED
data/lib/libv8-node.rb
CHANGED
data/libexec/build-libv8
CHANGED
|
@@ -14,6 +14,7 @@ NJOBS="${NJOBS:-1}"
|
|
|
14
14
|
echo "parallel job count: ${NJOBS}"
|
|
15
15
|
|
|
16
16
|
BUILDTYPE="${BUILDTYPE:-Release}"
|
|
17
|
+
GITHUB_ACTIONS="${GITHUB_ACTIONS:-}"
|
|
17
18
|
|
|
18
19
|
cd "${src}/node-v${version}"
|
|
19
20
|
|
|
@@ -42,5 +43,15 @@ if [ "$host_platform" != "$target_platform" ] && [ "${target_platform%%-*}" = "a
|
|
|
42
43
|
find . -iname "*.host.mk" -exec sed -i '/-msign-return-address/d' {} ';'
|
|
43
44
|
fi
|
|
44
45
|
|
|
46
|
+
if [ "${BUILDTYPE}" = "Release" ] && [ "${GITHUB_ACTIONS}" != "" ]; then
|
|
47
|
+
case "${target_platform}" in
|
|
48
|
+
arm64*-darwin*)
|
|
49
|
+
# dwarf debug info for v8 is so massive the macos
|
|
50
|
+
# builder runs out of disk space when it's enabled
|
|
51
|
+
find out -name '*.mk' -exec sed -i '' -e 's/gdwarf-2/g0/g' {} ';'
|
|
52
|
+
;;
|
|
53
|
+
esac
|
|
54
|
+
fi
|
|
55
|
+
|
|
45
56
|
export PATH="${PWD}/out/tools/bin:${PATH}"
|
|
46
|
-
make -j"${NJOBS}" -C out BUILDTYPE="${BUILDTYPE}" V=
|
|
57
|
+
make -j"${NJOBS}" -C out BUILDTYPE="${BUILDTYPE}" V=
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
set -e
|
|
4
|
+
set -u
|
|
5
|
+
|
|
6
|
+
BASEDIR="${PWD}"
|
|
7
|
+
|
|
8
|
+
export TARGET_PLATFORM=x86_64-darwin
|
|
9
|
+
export RUBY_TARGET_PLATFORM=x86_64-darwin
|
|
10
|
+
|
|
11
|
+
bundle install
|
|
12
|
+
|
|
13
|
+
# shellcheck disable=SC2034
|
|
14
|
+
RUBY_PLATFORM=$(./libexec/metadata ruby_platform)
|
|
15
|
+
GEM_PLATFORM=$(./libexec/metadata gem_platform)
|
|
16
|
+
GEM_VERSION=$(./libexec/metadata gem_version)
|
|
17
|
+
NODE_VERSION=$(./libexec/metadata node_version)
|
|
18
|
+
LIBV8_VERSION=$(./libexec/metadata libv8_version)
|
|
19
|
+
|
|
20
|
+
./libexec/download-node "$NODE_VERSION"
|
|
21
|
+
./libexec/extract-node "$NODE_VERSION"
|
|
22
|
+
|
|
23
|
+
# Validate that we have the correct V8 version.
|
|
24
|
+
libv8_version_h=$(./libexec/metadata libv8_version_h)
|
|
25
|
+
if [ "$libv8_version_h" != "$LIBV8_VERSION" ]; then
|
|
26
|
+
echo "LIBV8 version mismatch: expected $LIBV8_VERSION but found $libv8_version_h"
|
|
27
|
+
exit 1
|
|
28
|
+
fi
|
|
29
|
+
|
|
30
|
+
# Build the package.
|
|
31
|
+
./libexec/build-libv8 "$NODE_VERSION"
|
|
32
|
+
./libexec/build-monolith "$NODE_VERSION"
|
|
33
|
+
./libexec/inject-libv8 "$NODE_VERSION"
|
|
34
|
+
|
|
35
|
+
# Run V8 tests.
|
|
36
|
+
cd test/gtest
|
|
37
|
+
cmake -S . -B build
|
|
38
|
+
cd build
|
|
39
|
+
cmake --build .
|
|
40
|
+
if ! ./c_v8_tests; then
|
|
41
|
+
echo "Tests failed."
|
|
42
|
+
exit 1
|
|
43
|
+
fi
|
|
44
|
+
|
|
45
|
+
# Build the gem.
|
|
46
|
+
cd "${BASEDIR}"
|
|
47
|
+
bundle exec rake binary
|
|
48
|
+
|
|
49
|
+
# Test that the gem can be installed and used.
|
|
50
|
+
gem install pkg/libv8-node-"$GEM_VERSION"-"$GEM_PLATFORM".gem
|
|
51
|
+
|
|
52
|
+
rm -rf test/mini_racer
|
|
53
|
+
git clone https://github.com/rubyjs/mini_racer.git test/mini_racer --depth 1
|
|
54
|
+
cd test/mini_racer
|
|
55
|
+
ruby -i -ne "\$_ =~ /^\s+LIBV8_NODE_VERSION/ ? print(\" LIBV8_NODE_VERSION = \\\"$GEM_VERSION\\\"\\n\") : print" lib/mini_racer/version.rb
|
|
56
|
+
# shellcheck disable=SC2016
|
|
57
|
+
ruby -i -ne '$_ =~ /spec.required_ruby_version/ ? "" : print' mini_racer.gemspec
|
|
58
|
+
bundle install
|
|
59
|
+
bundle exec rake compile
|
|
60
|
+
bundle exec rake test
|
data/libexec/build-monolith
CHANGED
|
@@ -21,13 +21,13 @@ platform=$(uname)
|
|
|
21
21
|
rm -f "${LIBV8_MONOLITH}"
|
|
22
22
|
case "${platform}" in
|
|
23
23
|
"SunOS")
|
|
24
|
-
/usr/xpg4/bin/find . '(' '!' -path './icutools/deps/icu-small/source/stubdata/stubdata.o' ')' -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | xargs ar cq "${LIBV8_MONOLITH}"
|
|
24
|
+
/usr/xpg4/bin/find . '(' '!' -path './icutools/deps/icu-small/source/stubdata/stubdata.o' ')' -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" -or -path './abseil/deps/v8/third_party/abseil-cpp/absl/**/*.o' -or -path './highway/deps/v8/third_party/highway/**/*.o' -or -path './simdutf/deps/v8/third_party/simdutf/*.o' | sort | uniq | xargs ar cq "${LIBV8_MONOLITH}"
|
|
25
25
|
;;
|
|
26
26
|
"Darwin")
|
|
27
|
-
/usr/bin/find . '(' '!' -path './icutools/deps/icu-small/source/stubdata/stubdata.o' ')' -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" | sort | uniq | xargs /usr/bin/ar -cq "${LIBV8_MONOLITH}"
|
|
27
|
+
/usr/bin/find . '(' '!' -path './icutools/deps/icu-small/source/stubdata/stubdata.o' ')' -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" -or -path './abseil/deps/v8/third_party/abseil-cpp/absl/**/*.o' -or -path './highway/deps/v8/third_party/highway/**/*.o' -or -path './simdutf/deps/v8/third_party/simdutf/*.o' | sort | uniq | xargs /usr/bin/ar -cq "${LIBV8_MONOLITH}"
|
|
28
28
|
;;
|
|
29
29
|
"Linux")
|
|
30
|
-
find . '(' '!' -path './icutools/deps/icu-small/source/stubdata/stubdata.o' ')' -and '(' -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" ')' | sort | uniq | xargs ar -cqSP "${LIBV8_MONOLITH}"
|
|
30
|
+
find . '(' '!' -path './icutools/deps/icu-small/source/stubdata/stubdata.o' ')' -and '(' -path "./torque_*/**/*.o" -or -path "./v8*/**/*.o" -or -path "./icu*/**/*.o" -or -path './abseil/deps/v8/third_party/abseil-cpp/absl/**/*.o' -or -path './highway/deps/v8/third_party/highway/**/*.o' -or -path './simdutf/deps/v8/third_party/simdutf/*.o' ')' | sort | uniq | xargs ar -cqSP "${LIBV8_MONOLITH}"
|
|
31
31
|
ar -sP "${LIBV8_MONOLITH}"
|
|
32
32
|
;;
|
|
33
33
|
*)
|
data/libexec/extract-node
CHANGED
|
@@ -29,6 +29,7 @@ extract "${src}" "${src}/node-v${version}.tar.gz"
|
|
|
29
29
|
|
|
30
30
|
cd "${src}/node-v${version}"
|
|
31
31
|
|
|
32
|
+
patch -p1 < "${top}"/patch/v8-add-missing-typename.patch
|
|
32
33
|
patch -p1 < "${top}"/patch/v8-std-is-trivially-destructible.patch
|
|
33
34
|
patch -p1 < "${top}"/patch/v8-disable-madv-dontfork.patch
|
|
34
35
|
patch -p1 < "${top}"/patch/v8-disable-pkey.patch
|
data/libexec/platform
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
set -e
|
|
4
4
|
set -u
|
|
5
5
|
|
|
6
|
-
if command -v
|
|
7
|
-
CC="${CC:-clang}"
|
|
8
|
-
CXX="${CXX:-clang++}"
|
|
9
|
-
elif command -v gcc >/dev/null 2>&1; then
|
|
6
|
+
if command -v gcc >/dev/null 2>&1; then
|
|
10
7
|
CC="${CC:-gcc}"
|
|
11
8
|
CXX="${CXX:-g++}"
|
|
9
|
+
elif command -v clang >/dev/null 2>&1; then
|
|
10
|
+
CC="${CC:-clang}"
|
|
11
|
+
CXX="${CXX:-clang++}"
|
|
12
12
|
elif command -v cc >/dev/null 2>&1; then
|
|
13
13
|
CC="${CC:-cc}"
|
|
14
14
|
CXX="${CXX:-c++}"
|
|
@@ -142,17 +142,17 @@ fi
|
|
|
142
142
|
# ;;
|
|
143
143
|
# esac
|
|
144
144
|
|
|
145
|
-
if command -v ccache >/dev/null 2>&1; then
|
|
146
|
-
if [ -n "${CC:-}" ] && [ "${CC}" = "${CC#ccache}" ]; then
|
|
147
|
-
CC="ccache ${CC}"
|
|
148
|
-
CXX="ccache ${CXX}"
|
|
149
|
-
fi
|
|
150
|
-
|
|
151
|
-
if [ -n "${CC_host:-}" ] && [ "${CC_host}" = "${CC_host#ccache}" ]; then
|
|
152
|
-
CC_host="ccache ${CC_host}"
|
|
153
|
-
CXX_host="ccache ${CXX_host}"
|
|
154
|
-
fi
|
|
155
|
-
fi
|
|
145
|
+
#if command -v ccache >/dev/null 2>&1; then
|
|
146
|
+
# if [ -n "${CC:-}" ] && [ "${CC}" = "${CC#ccache}" ]; then
|
|
147
|
+
# CC="ccache ${CC}"
|
|
148
|
+
# CXX="ccache ${CXX}"
|
|
149
|
+
# fi
|
|
150
|
+
#
|
|
151
|
+
# if [ -n "${CC_host:-}" ] && [ "${CC_host}" = "${CC_host#ccache}" ]; then
|
|
152
|
+
# CC_host="ccache ${CC_host}"
|
|
153
|
+
# CXX_host="ccache ${CXX_host}"
|
|
154
|
+
# fi
|
|
155
|
+
#fi
|
|
156
156
|
|
|
157
157
|
cat <<EOF
|
|
158
158
|
export CC='${CC}'
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
diff --git a/deps/v8/src/objects/ordered-hash-table.h b/deps/v8/src/objects/ordered-hash-table.h
|
|
2
|
+
index 0e1605d566..8145bb1b8a 100644
|
|
3
|
+
--- a/deps/v8/src/objects/ordered-hash-table.h
|
|
4
|
+
+++ b/deps/v8/src/objects/ordered-hash-table.h
|
|
5
|
+
@@ -70,7 +70,7 @@ class OrderedHashTable : public FixedArray {
|
|
6
|
+
// to add at least one new element.
|
|
7
|
+
template <template <typename> typename HandleType>
|
|
8
|
+
requires(std::is_convertible_v<HandleType<Derived>, DirectHandle<Derived>>)
|
|
9
|
+
- static HandleType<Derived>::MaybeType EnsureCapacityForAdding(
|
|
10
|
+
+ static typename HandleType<Derived>::MaybeType EnsureCapacityForAdding(
|
|
11
|
+
Isolate* isolate, HandleType<Derived> table);
|
|
12
|
+
|
|
13
|
+
// Returns an OrderedHashTable (possibly |table|) that's shrunken
|
|
14
|
+
@@ -218,11 +218,11 @@ class OrderedHashTable : public FixedArray {
|
|
15
|
+
|
|
16
|
+
template <template <typename> typename HandleType>
|
|
17
|
+
requires(std::is_convertible_v<HandleType<Derived>, DirectHandle<Derived>>)
|
|
18
|
+
- static HandleType<Derived>::MaybeType Rehash(Isolate* isolate,
|
|
19
|
+
+ static typename HandleType<Derived>::MaybeType Rehash(Isolate* isolate,
|
|
20
|
+
HandleType<Derived> table);
|
|
21
|
+
template <template <typename> typename HandleType>
|
|
22
|
+
requires(std::is_convertible_v<HandleType<Derived>, DirectHandle<Derived>>)
|
|
23
|
+
- static HandleType<Derived>::MaybeType Rehash(Isolate* isolate,
|
|
24
|
+
+ static typename HandleType<Derived>::MaybeType Rehash(Isolate* isolate,
|
|
25
|
+
HandleType<Derived> table,
|
|
26
|
+
int new_capacity);
|
|
27
|
+
|
|
28
|
+
@@ -287,7 +287,7 @@ class V8_EXPORT_PRIVATE OrderedHashSet
|
|
29
|
+
template <template <typename> typename HandleType>
|
|
30
|
+
requires(std::is_convertible_v<HandleType<OrderedHashSet>,
|
|
31
|
+
DirectHandle<OrderedHashSet>>)
|
|
32
|
+
- static HandleType<OrderedHashSet>::MaybeType Add(
|
|
33
|
+
+ static typename HandleType<OrderedHashSet>::MaybeType Add(
|
|
34
|
+
Isolate* isolate, HandleType<OrderedHashSet> table,
|
|
35
|
+
DirectHandle<Object> value);
|
|
36
|
+
static Handle<FixedArray> ConvertToKeysArray(Isolate* isolate,
|
|
37
|
+
@@ -296,12 +296,12 @@ class V8_EXPORT_PRIVATE OrderedHashSet
|
|
38
|
+
template <template <typename> typename HandleType>
|
|
39
|
+
requires(std::is_convertible_v<HandleType<OrderedHashSet>,
|
|
40
|
+
DirectHandle<OrderedHashSet>>)
|
|
41
|
+
- static HandleType<OrderedHashSet>::MaybeType Rehash(
|
|
42
|
+
+ static typename HandleType<OrderedHashSet>::MaybeType Rehash(
|
|
43
|
+
Isolate* isolate, HandleType<OrderedHashSet> table);
|
|
44
|
+
template <template <typename> typename HandleType>
|
|
45
|
+
requires(std::is_convertible_v<HandleType<OrderedHashSet>,
|
|
46
|
+
DirectHandle<OrderedHashSet>>)
|
|
47
|
+
- static HandleType<OrderedHashSet>::MaybeType Rehash(
|
|
48
|
+
+ static typename HandleType<OrderedHashSet>::MaybeType Rehash(
|
|
49
|
+
Isolate* isolate, HandleType<OrderedHashSet> table, int new_capacity);
|
|
50
|
+
|
|
51
|
+
template <typename IsolateT>
|
|
52
|
+
@@ -343,12 +343,12 @@ class V8_EXPORT_PRIVATE OrderedHashMap
|
|
53
|
+
template <template <typename> typename HandleType>
|
|
54
|
+
requires(std::is_convertible_v<HandleType<OrderedHashMap>,
|
|
55
|
+
DirectHandle<OrderedHashMap>>)
|
|
56
|
+
- static HandleType<OrderedHashMap>::MaybeType Rehash(
|
|
57
|
+
+ static typename HandleType<OrderedHashMap>::MaybeType Rehash(
|
|
58
|
+
Isolate* isolate, HandleType<OrderedHashMap> table);
|
|
59
|
+
template <template <typename> typename HandleType>
|
|
60
|
+
requires(std::is_convertible_v<HandleType<OrderedHashMap>,
|
|
61
|
+
DirectHandle<OrderedHashMap>>)
|
|
62
|
+
- static HandleType<OrderedHashMap>::MaybeType Rehash(
|
|
63
|
+
+ static typename HandleType<OrderedHashMap>::MaybeType Rehash(
|
|
64
|
+
Isolate* isolate, HandleType<OrderedHashMap> table, int new_capacity);
|
|
65
|
+
|
|
66
|
+
void SetEntry(InternalIndex entry, Tagged<Object> key, Tagged<Object> value);
|
|
@@ -6,11 +6,11 @@ index 6e21dac6d7..bcf022fb28 100644
|
|
|
6
6
|
}, {
|
|
7
7
|
'v8_enable_etw_stack_walking': 0,
|
|
8
8
|
}],
|
|
9
|
-
- ['OS=="linux"', {
|
|
9
|
+
- ['OS=="linux" or OS=="openharmony"', {
|
|
10
10
|
+ # Disable madvise(MADV_DONTFORK), it's a great optimization for programs
|
|
11
11
|
+ # that fork & exec but not for programs that fork and keep running.
|
|
12
12
|
+ # It makes mini_racer's test/test_forking.rb test segfault.
|
|
13
|
-
+ ['False and OS=="linux"', {
|
|
13
|
+
+ ['False and (OS=="linux" or OS=="openharmony")', {
|
|
14
14
|
# Sets -dV8_ENABLE_PRIVATE_MAPPING_FORK_OPTIMIZATION.
|
|
15
15
|
#
|
|
16
|
-
# This flag speeds up the performance of fork/execve on Linux systems for
|
|
16
|
+
# This flag speeds up the performance of fork/execve on Linux systems for
|
data/sums/v23.8.0.sum
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
23b5e0b0b6752a21c7af4e2361655a54ad499d3ae06b6f9af1dd311365b8496a
|
data/sums/v24.1.0.sum
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
b565cba1dd8f2eb3db7c95e0c3a87ecc5e77f079611ea6a3688531511383ec72
|
data/sums/v24.12.0.sum
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ad24a1f29e55c9539228f2c51a032da279188b681c4dc019cced7f82a0fcdd8d
|
metadata
CHANGED
|
@@ -1,15 +1,56 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: libv8-node
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 24.12.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ''
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: base64
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '0'
|
|
19
|
+
type: :development
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: logger
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: mutex_m
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
47
|
+
type: :development
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0'
|
|
13
54
|
- !ruby/object:Gem::Dependency
|
|
14
55
|
name: rake
|
|
15
56
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -28,16 +69,16 @@ dependencies:
|
|
|
28
69
|
name: rubocop
|
|
29
70
|
requirement: !ruby/object:Gem::Requirement
|
|
30
71
|
requirements:
|
|
31
|
-
- - "
|
|
72
|
+
- - ">="
|
|
32
73
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 1.
|
|
74
|
+
version: 1.8.0
|
|
34
75
|
type: :development
|
|
35
76
|
prerelease: false
|
|
36
77
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
78
|
requirements:
|
|
38
|
-
- - "
|
|
79
|
+
- - ">="
|
|
39
80
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 1.
|
|
81
|
+
version: 1.8.0
|
|
41
82
|
description: Node.JS's V8 JavaScript engine for multiplatform goodness
|
|
42
83
|
email:
|
|
43
84
|
- ''
|
|
@@ -57,12 +98,14 @@ files:
|
|
|
57
98
|
- lib/libv8/node.rb
|
|
58
99
|
- lib/libv8/node/version.rb
|
|
59
100
|
- libexec/build-libv8
|
|
101
|
+
- libexec/build-macos-x86_64
|
|
60
102
|
- libexec/build-monolith
|
|
61
103
|
- libexec/download-node
|
|
62
104
|
- libexec/extract-node
|
|
63
105
|
- libexec/inject-libv8
|
|
64
106
|
- libexec/metadata
|
|
65
107
|
- libexec/platform
|
|
108
|
+
- patch/v8-add-missing-typename.patch
|
|
66
109
|
- patch/v8-disable-madv-dontfork.patch
|
|
67
110
|
- patch/v8-disable-pkey.patch
|
|
68
111
|
- patch/v8-std-is-trivially-destructible.patch
|
|
@@ -89,11 +132,14 @@ files:
|
|
|
89
132
|
- sums/v22.7.0.sum
|
|
90
133
|
- sums/v22.9.0.sum
|
|
91
134
|
- sums/v23.6.1.sum
|
|
135
|
+
- sums/v23.8.0.sum
|
|
136
|
+
- sums/v24.1.0.sum
|
|
137
|
+
- sums/v24.12.0.sum
|
|
92
138
|
homepage: https://github.com/rubyjs/libv8-node
|
|
93
139
|
licenses:
|
|
94
140
|
- MIT
|
|
95
|
-
metadata:
|
|
96
|
-
|
|
141
|
+
metadata:
|
|
142
|
+
rubygems_mfa_required: 'true'
|
|
97
143
|
rdoc_options: []
|
|
98
144
|
require_paths:
|
|
99
145
|
- lib
|
|
@@ -109,8 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
109
155
|
- !ruby/object:Gem::Version
|
|
110
156
|
version: '0'
|
|
111
157
|
requirements: []
|
|
112
|
-
rubygems_version:
|
|
113
|
-
signing_key:
|
|
158
|
+
rubygems_version: 4.0.3
|
|
114
159
|
specification_version: 4
|
|
115
160
|
summary: Node.JS's V8 JavaScript engine
|
|
116
161
|
test_files: []
|