libv8 3.16.14.7 → 3.16.14.8.rc1
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/.travis.yml +3 -2
- data/Rakefile +0 -7
- data/ext/libv8/builder.rb +1 -1
- data/ext/libv8/checkout.rb +1 -1
- data/ext/libv8/compiler/generic_compiler.rb +1 -1
- data/ext/libv8/location.rb +1 -1
- data/ext/libv8/paths.rb +2 -2
- data/lib/libv8/version.rb +1 -1
- data/libv8.gemspec +0 -2
- metadata +5 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87f28e3efc8aaca71eb2907ea44f3bf0265f1e9c
|
4
|
+
data.tar.gz: 55c873337139353105ee25c52d630d94d2325629
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e96105aa3f83e3e87533591de3ff533f8c2c46043027b68908ffad4b612f9a288b3a7921a7230f48df7c15502364c46d0f5864d6dc5d3909f2f0856d144c3fd1
|
7
|
+
data.tar.gz: 05108311aea44d2c803d6a4cb5fce6df76a110010a0d4d26458993769b2088bae4da7b91acc118af4bd9d341e270afcd0bba108ef7c5c4072309da216074c863
|
data/.gitmodules
CHANGED
data/.travis.yml
CHANGED
data/Rakefile
CHANGED
@@ -77,12 +77,5 @@ task :clean do
|
|
77
77
|
sh "cd #{GYP_Source} && git checkout -f && git clean -dxf"
|
78
78
|
end
|
79
79
|
|
80
|
-
desc "build a binary on heroku (you must have vulcan configured for this)"
|
81
|
-
task :vulcan => directory("tmp/vulcan") do
|
82
|
-
Dir.chdir('tmp/vulcan') do
|
83
|
-
sh "vulcan build -v -c 'LANG=en_US.UTF-8 export BIN=/`pwd`/bin && export GEM=$BIN/gem && curl https://s3.amazonaws.com/heroku-buildpack-ruby/ruby-1.9.3.tgz > ruby-1.9.3.tgz && tar xf ruby-1.9.3.tgz && cd /tmp && $GEM fetch libv8 --platform=ruby --version=#{Libv8::VERSION} && $GEM unpack libv8*.gem && $GEM install bundler -n $BIN --no-ri --no-rdoc && cd libv8-#{Libv8::VERSION} && $BIN/bundle && $BIN/bundle exec rake binary' -p /tmp/libv8-#{Libv8::VERSION}"
|
84
|
-
end
|
85
|
-
end
|
86
|
-
|
87
80
|
task :default => [:checkout, :compile, :spec]
|
88
81
|
task :build => [:clean, :checkout]
|
data/ext/libv8/builder.rb
CHANGED
@@ -25,7 +25,7 @@ module Libv8
|
|
25
25
|
flags << "strictaliasing=off" if @compiler.is_a?(Compiler::GCC) and @compiler.version < '4.4'
|
26
26
|
|
27
27
|
# Avoid compilation failures on the Raspberry Pi.
|
28
|
-
flags << "vfp2=off vfp3=
|
28
|
+
flags << "vfp2=off vfp3=on" if @compiler.target.include? "arm"
|
29
29
|
|
30
30
|
# FIXME: Determine when to activate this instead of leaving it on by
|
31
31
|
# default.
|
data/ext/libv8/checkout.rb
CHANGED
data/ext/libv8/location.rb
CHANGED
data/ext/libv8/paths.rb
CHANGED
@@ -19,7 +19,7 @@ module Libv8
|
|
19
19
|
|
20
20
|
def libv8_object(name)
|
21
21
|
filename = "#{libv8_profile}/libv8_#{name}.#{config['LIBEXT']}"
|
22
|
-
unless File.
|
22
|
+
unless File.exist? filename
|
23
23
|
filename = "#{libv8_profile}/obj.target/tools/gyp/libv8_#{name}.#{config['LIBEXT']}"
|
24
24
|
end
|
25
25
|
return filename
|
@@ -28,7 +28,7 @@ module Libv8
|
|
28
28
|
def libv8_profile
|
29
29
|
base = "#{vendored_source_path}/out/#{Libv8::Arch.libv8_arch}"
|
30
30
|
debug = "#{base}.debug"
|
31
|
-
File.
|
31
|
+
File.exist?(debug) ? debug : "#{base}.release"
|
32
32
|
end
|
33
33
|
|
34
34
|
def vendored_source_path
|
data/lib/libv8/version.rb
CHANGED
data/libv8.gemspec
CHANGED
@@ -32,6 +32,4 @@ Gem::Specification.new do |s|
|
|
32
32
|
s.add_development_dependency "rake-compiler"
|
33
33
|
s.add_development_dependency "rspec"
|
34
34
|
s.add_development_dependency "rspec-spies"
|
35
|
-
s.add_development_dependency "rubysl", "~> 2.0" if RUBY_ENGINE == "rbx"
|
36
|
-
s.add_development_dependency "vulcan"
|
37
35
|
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: 3.16.14.
|
4
|
+
version: 3.16.14.8.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Charles Lowell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -66,20 +66,6 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: vulcan
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - ">="
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0'
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - ">="
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '0'
|
83
69
|
description: Distributes the V8 JavaScript engine in binary and source forms in order
|
84
70
|
to support fast builds of The Ruby Racer
|
85
71
|
email:
|
@@ -3058,12 +3044,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
3058
3044
|
version: '0'
|
3059
3045
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
3060
3046
|
requirements:
|
3061
|
-
- - "
|
3047
|
+
- - ">"
|
3062
3048
|
- !ruby/object:Gem::Version
|
3063
|
-
version:
|
3049
|
+
version: 1.3.1
|
3064
3050
|
requirements: []
|
3065
3051
|
rubyforge_project: libv8
|
3066
|
-
rubygems_version: 2.4.
|
3052
|
+
rubygems_version: 2.4.6
|
3067
3053
|
signing_key:
|
3068
3054
|
specification_version: 4
|
3069
3055
|
summary: Distribution of the V8 JavaScript engine
|