libv8 6.2.414.42.0beta1 → 6.2.414.42.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 24f1e27ffdebdfda185ee877d56047941a3b7743
4
- data.tar.gz: 48beb24665420d51ff4485856d8c501a24e57168
3
+ metadata.gz: f8e70e8c088714457f66bed0de8b86a8ec8c8ae3
4
+ data.tar.gz: 57b26947d176a732338892cbd0d03f8380b394ef
5
5
  SHA512:
6
- metadata.gz: 9b924dd26d7921729c5d61d4f86259efe30ee232af5be699b0898c9aa28bb27c51fa228ae352c019353e20008138fb6c66dae5be1903ad3a199bffa9dcbc2d7d
7
- data.tar.gz: 79c9c625f18a36b69321ac7cbfd904457c43e46903e59f86f4ccbd261cc60d70f025cce60eac5fce9594baefc83a8ff331633cc663f52d3739510dd11dc39bd3
6
+ metadata.gz: df6e0c5398b7d2fca104eb895c4d56611db15603ddc65bece35ed4beaf072801d1a059567fbe1048c4bbb1a010976ecd256b2d55e5d5f0658788fb07c64b5ddb
7
+ data.tar.gz: 305c0ba5520371a8d21ac7eb6d945625b7fa80b600aeabf698292c514f7bfd821491850bc30373f5bd3ed343b763ae8f77888df66bc54b1aa63eef6536b3e79d
@@ -1,4 +1,4 @@
1
- ### Unreleased
1
+ ### v6.2.414.42.0, v6.2.414.42.1 - 2017-10-25
2
2
 
3
3
  * Update upstream v8 version to 6.2.414.42
4
4
 
data/Rakefile CHANGED
@@ -70,9 +70,9 @@ namespace :build do
70
70
  Dir.chdir(arch_dir) do
71
71
  ENV['RUBYLIB'] = nil # https://github.com/mitchellh/vagrant/issues/6158
72
72
  sh "vagrant up"
73
- # sh "vagrant ssh -c 'rm -rf ~/libv8'"
74
- # sh "vagrant ssh -c 'git clone /libv8/.git ~/libv8 --recursive'"
75
- # sh "vagrant ssh -c 'cd ~/libv8 && bundle install --path vendor/bundle'"
73
+ sh "vagrant ssh -c 'rm -rf ~/libv8'"
74
+ sh "vagrant ssh -c 'git clone /libv8/.git ~/libv8 --recursive'"
75
+ sh "vagrant ssh -c 'cd ~/libv8 && bundle install --path vendor/bundle'"
76
76
  sh "vagrant ssh -c 'cd ~/libv8 && env MAKEFLAGS=-j4 bundle exec rake binary'"
77
77
  sh "vagrant status | grep scaleway" do |ok, res|
78
78
  if ok
@@ -1,3 +1,3 @@
1
1
  module Libv8
2
- VERSION = "6.2.414.42.0beta1"
2
+ VERSION = "6.2.414.42.0"
3
3
  end
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.2.414.42.0beta1
4
+ version: 6.2.414.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charles Lowell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-05 00:00:00.000000000 Z
11
+ date: 2017-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -90,7 +90,6 @@ files:
90
90
  - patches/0003-Use-the-fPIC-flag-for-the-static-library.patch
91
91
  - patches/0004-Do-not-embed-debug-symbols-in-macOS-libraries.patch
92
92
  - patches/0005-avoid-constructor-inheritance-due-to-compilation-iss.patch
93
- - patches/9001-Arm64-Fix-host-architecture-detection.patch
94
93
  - patches/mingw-generate-makefiles.sh
95
94
  - scaleway.png
96
95
  - spec/compiler/apple_llvm_spec.rb
@@ -1017,9 +1016,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
1017
1016
  version: '0'
1018
1017
  required_rubygems_version: !ruby/object:Gem::Requirement
1019
1018
  requirements:
1020
- - - ">"
1019
+ - - ">="
1021
1020
  - !ruby/object:Gem::Version
1022
- version: 1.3.1
1021
+ version: '0'
1023
1022
  requirements: []
1024
1023
  rubyforge_project: libv8
1025
1024
  rubygems_version: 2.6.13
@@ -1,37 +0,0 @@
1
- From f7b393110c0bc58f4fde7589397b5f931a18ea4b Mon Sep 17 00:00:00 2001
2
- From: Pierre Langlois <pierre.langlois@arm.com>
3
- Date: Tue, 07 Nov 2017 14:26:17 +0000
4
- Subject: [PATCH] Arm64: Fix host architecture detection
5
-
6
- This allows the install-sysroot.py script to run as a hook on an Arm64
7
- platform. This was tested in v8 and allows us to run `gclient sync` natively.
8
-
9
- Bug: v8:5075
10
- Change-Id: Ie2f11a5a6e30973be7ab4ef032abb8c3c7e9591b
11
- Reviewed-on: https://chromium-review.googlesource.com/756704
12
- Reviewed-by: John Budorick <jbudorick@chromium.org>
13
- Commit-Queue: John Budorick <jbudorick@chromium.org>
14
- Cr-Commit-Position: refs/heads/master@{#514463}
15
- ---
16
-
17
- diff --git a/build/detect_host_arch.py b/build/detect_host_arch.py
18
- index 8d6a1ba..0e491bc 100755
19
- --- a/build/detect_host_arch.py
20
- +++ b/build/detect_host_arch.py
21
- @@ -21,6 +21,8 @@
22
- host_arch = 'x64'
23
- elif host_arch.startswith('arm'):
24
- host_arch = 'arm'
25
- + elif host_arch.startswith('aarch64'):
26
- + host_arch = 'arm64'
27
- elif host_arch.startswith('mips'):
28
- host_arch = 'mips'
29
- elif host_arch.startswith('ppc'):
30
- @@ -35,6 +37,8 @@
31
- # the python binary.
32
- if host_arch == 'x64' and platform.architecture()[0] == '32bit':
33
- host_arch = 'ia32'
34
- + if host_arch == 'arm64' and platform.architecture()[0] == '32bit':
35
- + host_arch = 'arm'
36
-
37
- return host_arch