libv8 5.2.361.43.0 → 5.2.361.43.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/Rakefile +5 -5
- data/lib/libv8/version.rb +1 -1
- data/release/armhf-linux/Vagrantfile +2 -0
- data/release/x86-linux/Vagrantfile +1 -0
- data/release/x86_64-linux/Vagrantfile +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 43fd1487e4187e22711a0c704444c5a9ccf0234d
|
4
|
+
data.tar.gz: 4613f878a90eb8def2bbd281877ef734a0cfecfb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70b10268110dac25734e44eee8f95fbb0a21d9b10de5af76ad35b1742e60287e252697409d9476baa37d6c81a59ee6775ad834fa154744b63bbcee04030a5c24
|
7
|
+
data.tar.gz: 1342f8040961ac0ff62e9b8f90805e576a0f71f81a7e70b5b774d510db90f137b8b244fb25b3133c83938e90abf52862881fbd0776c799245beaadfacf5458b8
|
data/Rakefile
CHANGED
@@ -57,11 +57,11 @@ namespace :build do
|
|
57
57
|
arch_dir = Pathname(__FILE__).dirname.join("release/#{arch}")
|
58
58
|
Dir.chdir(arch_dir) do
|
59
59
|
ENV['RUBYLIB'] = nil # https://github.com/mitchellh/vagrant/issues/6158
|
60
|
-
sh "vagrant up"
|
61
|
-
sh "vagrant ssh -c 'rm -rf ~/libv8'"
|
62
|
-
sh "vagrant ssh -c 'git clone /libv8/.git ~/libv8 --recursive'"
|
63
|
-
sh "vagrant ssh -c 'cd ~/libv8 && bundle install --path vendor/bundle'"
|
64
|
-
sh "vagrant ssh -c 'cd ~/libv8 && bundle exec rake binary'"
|
60
|
+
# sh "vagrant up"
|
61
|
+
# sh "vagrant ssh -c 'rm -rf ~/libv8'"
|
62
|
+
# sh "vagrant ssh -c 'git clone /libv8/.git ~/libv8 --recursive'"
|
63
|
+
# sh "vagrant ssh -c 'cd ~/libv8 && bundle install --path vendor/bundle'"
|
64
|
+
sh "vagrant ssh -c 'cd ~/libv8 && MAKEFLAGS+=-j4 bundle exec rake binary'"
|
65
65
|
sh "vagrant ssh -c 'cp ~/libv8/pkg/*.gem /vagrant'"
|
66
66
|
sh "vagrant destroy"
|
67
67
|
end
|
data/lib/libv8/version.rb
CHANGED
@@ -56,6 +56,7 @@ Vagrant.configure(2) do |config|
|
|
56
56
|
# information on available options.
|
57
57
|
config.vm.provider :virtualbox do |vb|
|
58
58
|
vb.memory = "2048"
|
59
|
+
vb.cpus = 4
|
59
60
|
vb.customize ["modifyvm", :id, "--hwvirtex", "on"]
|
60
61
|
vb.customize ["modifyvm", :id, "--audio", "none"]
|
61
62
|
vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
|
@@ -56,6 +56,7 @@ Vagrant.configure(2) do |config|
|
|
56
56
|
# information on available options.
|
57
57
|
config.vm.provider :virtualbox do |vb|
|
58
58
|
vb.memory = "2048"
|
59
|
+
vb.cpus = 4
|
59
60
|
vb.customize ["modifyvm", :id, "--hwvirtex", "on"]
|
60
61
|
vb.customize ["modifyvm", :id, "--audio", "none"]
|
61
62
|
vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
|