libv8 6.7.288.46.1beta0 → 6.7.288.46.1
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/.travis.yml +1 -1
- data/CHANGELOG.md +16 -0
- data/README.md +8 -5
- data/lib/libv8/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd5f92a72461be20bdde4e432ca6c3feb807f91517cec95d39c9be1d35254e5c
|
|
4
|
+
data.tar.gz: 5ea4d02e530edcc1ef74b919472f025228dcfef1b9ef3dc5c47780f4cb1cf027
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56cbdc1a78da9a7a37b933298559f3e57729a13dbf6f031c2d6277b08590bf7abb7844c5336f78f42bb347e081c42b8bf7b6dabb3a424a778e56f526c1ad9ec1
|
|
7
|
+
data.tar.gz: 8efea7896fe046e3736fbc9bcf825545752a6291f0997f519b160f4f937ce23980393377dd497cd3f97b50bb7267083219db8aeaab35b9cf4c5fbd67b997e7a7
|
data/.travis.yml
CHANGED
|
@@ -27,7 +27,7 @@ before_install:
|
|
|
27
27
|
- if [ "$TRAVIS_OS_NAME" == "osx" -a "$TRAVIS_RUBY_VERSION" != "system" ]; then gem update bundler; fi
|
|
28
28
|
script:
|
|
29
29
|
- git submodule update --init
|
|
30
|
-
-
|
|
30
|
+
- bundle exec rake spec binary --trace
|
|
31
31
|
deploy:
|
|
32
32
|
provider: releases
|
|
33
33
|
file: $(git ls-files -o pkg | head -1)
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
### v6.7.288.46.0, v6.7.288.46.1 - 2017-07-06
|
|
2
|
+
|
|
3
|
+
* Update upstream v8 version to 6.7.288.46 (https://github.com/cowboyd/libv8/pull/258)
|
|
4
|
+
Due to the change in V8's build system this causes several major changes until
|
|
5
|
+
we're able to find a way to reimplement the necessary functionality. The changes
|
|
6
|
+
are listed below.
|
|
7
|
+
* Remove the option to specify --with-cxx. For now V8 is built with the
|
|
8
|
+
toolchain provided by the build system (https://github.com/cowboyd/libv8/issues/260)
|
|
9
|
+
* Remove the option to specify --with-system-v8. It was making it too easy for
|
|
10
|
+
the user to shot themself in the foot.
|
|
11
|
+
* Drop ARM support. The V8 build system is not working natively on ARM and for
|
|
12
|
+
some reason crosscompilation produces X86 binaries
|
|
13
|
+
(https://github.com/cowboyd/libv8/issues/261)
|
|
14
|
+
* Drop FreeBSD support. Chromium's depot_tools do not support FreeBSD at this
|
|
15
|
+
point. (https://github.com/cowboyd/libv8/issues/253)
|
|
16
|
+
|
|
1
17
|
### v6.3.292.48.0, v6.3.292.48.1 - 2017-12-20
|
|
2
18
|
|
|
3
19
|
* Update upstream v8 version to 6.3.292.48
|
data/README.md
CHANGED
|
@@ -23,13 +23,12 @@ opens the door for supporting Windows.
|
|
|
23
23
|
That depends on your platform. Right now, we support the following
|
|
24
24
|
platforms.
|
|
25
25
|
|
|
26
|
+
* x86_64-darwin-17
|
|
26
27
|
* x86_64-darwin-16
|
|
27
28
|
* x86_64-darwin-15
|
|
28
29
|
* x86_64-darwin-14
|
|
29
30
|
* x86_64-linux
|
|
30
31
|
* x86-linux
|
|
31
|
-
* x86_64-freebsd-10
|
|
32
|
-
* x86_64-freebsd-11
|
|
33
32
|
|
|
34
33
|
If you don't see your platform on this list, first, make sure that it
|
|
35
34
|
installs from source, and second talk to us about setting up a binary
|
|
@@ -78,8 +77,13 @@ source-based distribution
|
|
|
78
77
|
|
|
79
78
|
Building the V8 library from source imposes the following requirements:
|
|
80
79
|
|
|
81
|
-
*
|
|
82
|
-
*
|
|
80
|
+
* An x86/x86_64 CPU. See [#261](https://github.com/cowboyd/libv8/issues/261) for ARM state.
|
|
81
|
+
* Linux with glibc or macOS. See
|
|
82
|
+
[#259](https://github.com/cowboyd/libv8/issues/259),
|
|
83
|
+
[#253](https://github.com/cowboyd/libv8/issues/253) and
|
|
84
|
+
[#217](https://github.com/cowboyd/libv8/issues/217) for state of other
|
|
85
|
+
platforms.
|
|
86
|
+
* Python 2
|
|
83
87
|
|
|
84
88
|
### Using a git version
|
|
85
89
|
|
|
@@ -120,7 +124,6 @@ installed that gem.
|
|
|
120
124
|
### Sponsored by
|
|
121
125
|
|
|
122
126
|
<a href="http://frontside.io"></a>
|
|
123
|
-
<a href="https://www.scaleway.com"></a>
|
|
124
127
|
|
|
125
128
|
### License
|
|
126
129
|
|
data/lib/libv8/version.rb
CHANGED
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: 6.7.288.46.
|
|
4
|
+
version: 6.7.288.46.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Charles Lowell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-06
|
|
11
|
+
date: 2018-07-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -977,9 +977,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
977
977
|
version: '0'
|
|
978
978
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
979
979
|
requirements:
|
|
980
|
-
- - "
|
|
980
|
+
- - ">="
|
|
981
981
|
- !ruby/object:Gem::Version
|
|
982
|
-
version:
|
|
982
|
+
version: '0'
|
|
983
983
|
requirements: []
|
|
984
984
|
rubyforge_project: libv8
|
|
985
985
|
rubygems_version: 2.7.7
|