libv8 3.16.14.7 → 3.16.14.8.rc1

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: a9abd9d5d0de98029c36a63ec9bbefedb01d1fbc
4
- data.tar.gz: 175d3a0df1216b58ef9ee859b615a6326c689a05
3
+ metadata.gz: 87f28e3efc8aaca71eb2907ea44f3bf0265f1e9c
4
+ data.tar.gz: 55c873337139353105ee25c52d630d94d2325629
5
5
  SHA512:
6
- metadata.gz: 9b71ea0ceb5ea4a01671bf7ed9cfaa99a9b5d97ba31ea3ab8db3c32e1f310c765deefef864e8c8eb5019599e4178834d0742240ac8574e0d0bd9c910dc4daa0f
7
- data.tar.gz: 47392ad6ab94afd17acb126d656d8ab806e4e5f490f64c3cc45418432eda786e319730dcc442e4b9bb99a44114de9228952baa8f1201b5189303280be0d14e74
6
+ metadata.gz: e96105aa3f83e3e87533591de3ff533f8c2c46043027b68908ffad4b612f9a288b3a7921a7230f48df7c15502364c46d0f5864d6dc5d3909f2f0856d144c3fd1
7
+ data.tar.gz: 05108311aea44d2c803d6a4cb5fce6df76a110010a0d4d26458993769b2088bae4da7b91acc118af4bd9d341e270afcd0bba108ef7c5c4072309da216074c863
@@ -3,4 +3,4 @@
3
3
  url = https://github.com/v8/v8.git
4
4
  [submodule "vendor/gyp"]
5
5
  path = vendor/gyp
6
- url = https://git.chromium.org/git/external/gyp.git
6
+ url = https://chromium.googlesource.com/external/gyp.git
@@ -1,8 +1,9 @@
1
1
  rvm:
2
2
  - 2.0.0
3
- - 2.1.0
3
+ - 2.1.5
4
4
  - 1.9.3
5
- - rbx-2
5
+ - rbx
6
+ bundler_args: --jobs=1 --retry=3
6
7
  notifications:
7
8
  recipients:
8
9
  - cowboyd@thefrontside.net
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]
@@ -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=off" if @compiler.target.include? "arm"
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.
@@ -36,7 +36,7 @@ module Libv8
36
36
  end
37
37
 
38
38
  def git?(dir)
39
- File.exists?(File.join(dir, '.git'))
39
+ File.exist?(File.join(dir, '.git'))
40
40
  end
41
41
 
42
42
  def check_git_svn!
@@ -31,7 +31,7 @@ module Libv8
31
31
  end
32
32
 
33
33
  def call(*arguments)
34
- Open3.capture3 arguments.unshift(@path).join(' ')
34
+ Open3.capture3 arguments.unshift('env LC_ALL=en', @path).join(' ')
35
35
  end
36
36
  end
37
37
  end
@@ -33,7 +33,7 @@ module Libv8
33
33
 
34
34
  def verify_installation!
35
35
  Libv8::Paths.object_paths.each do |p|
36
- fail ArchiveNotFound, p unless File.exists? p
36
+ fail ArchiveNotFound, p unless File.exist? p
37
37
  end
38
38
  end
39
39
 
@@ -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.exists? filename
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.exists?(debug) ? debug : "#{base}.release"
31
+ File.exist?(debug) ? debug : "#{base}.release"
32
32
  end
33
33
 
34
34
  def vendored_source_path
@@ -1,3 +1,3 @@
1
1
  module Libv8
2
- VERSION = "3.16.14.7"
2
+ VERSION = "3.16.14.8.rc1"
3
3
  end
@@ -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.7
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: 2014-09-13 00:00:00.000000000 Z
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: '0'
3049
+ version: 1.3.1
3064
3050
  requirements: []
3065
3051
  rubyforge_project: libv8
3066
- rubygems_version: 2.4.1
3052
+ rubygems_version: 2.4.6
3067
3053
  signing_key:
3068
3054
  specification_version: 4
3069
3055
  summary: Distribution of the V8 JavaScript engine