libv8 3.16.14.11 → 3.16.14.12
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/.gitmodules +1 -1
- data/ext/libv8/patcher.rb +1 -0
- data/lib/libv8/version.rb +1 -1
- data/patches/clang70/no-unused-local-typedefs.patch +13 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8dd0aaac1b22005f2435bf8151a6b432dc15dde1
|
|
4
|
+
data.tar.gz: bc6adba58cd5051fd06cf52ffd589608d6512c14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 167b36073b9b243592060f56d3252725f66c3aff87a717aa3fb45dcf4b7e28d3be3d471b0705320d6fca8e139e481dc0d8b0c0d38efa086321d4a9a819d5d66b
|
|
7
|
+
data.tar.gz: 469dbf38ab92c31bc3e84cb04709e407d4301ef57d0129ce4dbcff0be461c7129bec2bf8b8c390b8019b45282eb1bfb9c0adbbc90a341ae34c8f4c292267c633
|
data/.gitmodules
CHANGED
data/ext/libv8/patcher.rb
CHANGED
|
@@ -19,6 +19,7 @@ module Libv8
|
|
|
19
19
|
patch_directories << 'clang'
|
|
20
20
|
patch_directories << 'clang33' if compiler.version >= '3.3'
|
|
21
21
|
patch_directories << 'clang51' if compiler.version >= '5.1'
|
|
22
|
+
patch_directories << 'clang70' if compiler.version >= '7.0'
|
|
22
23
|
end
|
|
23
24
|
|
|
24
25
|
patch_directories
|
data/lib/libv8/version.rb
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
diff --git a/build/standalone.gypi b/build/standalone.gypi
|
|
2
|
+
index 125c5bf..a283a28 100644
|
|
3
|
+
--- a/build/standalone.gypi
|
|
4
|
+
+++ b/build/standalone.gypi
|
|
5
|
+
@@ -211,6 +212,8 @@
|
|
6
|
+
'-W',
|
|
7
|
+
'-Wno-unused-parameter',
|
|
8
|
+
'-Wno-unused-variable',
|
|
9
|
+
+ '-Wno-unused-local-typedefs',
|
|
10
|
+
+ '-Wno-tautological-undefined-compare',
|
|
11
|
+
'-Wnon-virtual-dtor',
|
|
12
|
+
],
|
|
13
|
+
},
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: libv8
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.16.14.
|
|
4
|
+
version: 3.16.14.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Charles Lowell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-10-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -102,6 +102,7 @@ files:
|
|
|
102
102
|
- patches/clang/no-unused-private-field.patch
|
|
103
103
|
- patches/clang33/silence-nested-anon-types-and-unused-function-warnings.patch
|
|
104
104
|
- patches/clang51/no-unused-variable.patch
|
|
105
|
+
- patches/clang70/no-unused-local-typedefs.patch
|
|
105
106
|
- patches/disable-building-tests.patch
|
|
106
107
|
- patches/fPIC-for-static.patch
|
|
107
108
|
- patches/gcc48/gcc48-wno-unused-local-typedefs.patch
|
|
@@ -3053,7 +3054,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
3053
3054
|
version: '0'
|
|
3054
3055
|
requirements: []
|
|
3055
3056
|
rubyforge_project: libv8
|
|
3056
|
-
rubygems_version: 2.
|
|
3057
|
+
rubygems_version: 2.4.5
|
|
3057
3058
|
signing_key:
|
|
3058
3059
|
specification_version: 4
|
|
3059
3060
|
summary: Distribution of the V8 JavaScript engine
|