sq_mini_racer 0.2.3.sqreen1 → 0.2.3.sqreen2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7b8c6801cd8f008d57619677460ede19b8c21caee52c7d13cb0dadac025b2873
4
- data.tar.gz: 3fff7038332c6c8a9efb9d3b6d5470bfcbd59e7ed9e88a0ba61d7cf25a710b50
3
+ metadata.gz: 63720790c786c9fa493ffc3e97546595ab71dc8499e711459dcfc93400323d1d
4
+ data.tar.gz: ef3575681579516ff276402cf1c7e5068932bae9adc31e290e8140854a9f8a96
5
5
  SHA512:
6
- metadata.gz: 2bc39850e4af84a8a1f665495c4e1a49cf87ed8fd829610bd76c7e95a5aa105706f1d3a5bf31d133a39f5c49abaf1b8009c754486f677a2079be031e595e903d
7
- data.tar.gz: 518d0410e7a23976093a52b31593e119c2beb883c8b23be3d4e7064f6d456c17a10ea086ae04a3fa327d7667133bcf9cfa8cde6b899fa46c5724c5e4eff3560c
6
+ metadata.gz: 689103108fe2abb9ea4a1b8f166730186ed77fb319e49d1e9c7e3d65677a17cda85efa7ef5e07987da5f239788a5b2cd20f4dd7e7a758794d973eb74d6cb366a
7
+ data.tar.gz: 4a46e3e00fdacff225ef6a6f9a52b4635085e46ba682ab7d613e7a7a74f50b2ace5b3f0fad335a66322c6227b3f8918f6eaaf5825a01d7d4075b811435d95914
@@ -10,9 +10,17 @@ matrix:
10
10
  sudo: true
11
11
  rvm: 2.0
12
12
  - os: linux
13
- dist: trusty
13
+ dist: precise
14
14
  sudo: true
15
15
  rvm: 2.1
16
+ addons:
17
+ apt:
18
+ sources:
19
+ - ubuntu-toolchain-r-test
20
+ packages:
21
+ - g++-4.8
22
+ env:
23
+ - CXX=g++-4.8
16
24
  - os: linux
17
25
  dist: trusty
18
26
  sudo: true
@@ -2,9 +2,11 @@ require 'mkmf'
2
2
  require 'fileutils'
3
3
 
4
4
  IS_DARWIN = RUBY_PLATFORM =~ /darwin/
5
+ IS_SOLARIS = RUBY_PLATFORM =~ /solaris/
5
6
 
6
7
  have_library('pthread')
7
8
  have_library('objc') if IS_DARWIN
9
+ $CPPFLAGS.gsub! /-std=\w+/, ''
8
10
  $CPPFLAGS += " -Wall" unless $CPPFLAGS.split.include? "-Wall"
9
11
  $CPPFLAGS += " -g" unless $CPPFLAGS.split.include? "-g"
10
12
  $CPPFLAGS += " -rdynamic" unless $CPPFLAGS.split.include? "-rdynamic"
@@ -65,6 +67,8 @@ def fixup_libtinfo
65
67
  end
66
68
 
67
69
  def libv8_gem_name
70
+ return "libv8-solaris" if IS_SOLARIS
71
+
68
72
  is_musl = false
69
73
  begin
70
74
  is_musl = !!(File.read('/proc/self/maps') =~ /ld-musl-x86_64/)
@@ -2,6 +2,6 @@ module Sqreen
2
2
  module MiniRacer
3
3
  # part before qualifier is the number of the last upstream release
4
4
  # since we synced with it
5
- VERSION = "0.2.3.sqreen1"
5
+ VERSION = "0.2.3.sqreen2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sq_mini_racer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3.sqreen1
4
+ version: 0.2.3.sqreen2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Saffron
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-09-28 00:00:00.000000000 Z
11
+ date: 2018-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler