unf_ext 0.0.7.5-x86-mingw32 → 0.0.7.7-x86-mingw32

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
- SHA1:
3
- metadata.gz: 2aa73605663b78a93f599a55bd47542cb81feab1
4
- data.tar.gz: 690652d99e386674aa769cd1026633910b91b06d
2
+ SHA256:
3
+ metadata.gz: 8597e76a99cb96b77d73753ed4092b40bb25d1e5053c88780f991251e5ff294d
4
+ data.tar.gz: 7e0a23bc6fa39e61c323a4869013040282d8c362e4ea3e2c0712e0913e268d4e
5
5
  SHA512:
6
- metadata.gz: 199b797248fac50807ef168dbe6cd3342d580fb11c269736a8cdebeaa29cb682ce177cd5cdc5a84c4b1470e444c1d1e1a1b882cfbf6a5daeea79a4d778508248
7
- data.tar.gz: '069412727c95ac1319020d4abf7a78bc4a7a7c374a490884d411ddd823e19f8b8f3db2cdbd8d2e51772ce15657787917db0c1b076a036fc763034926554ad4f2'
6
+ metadata.gz: 1f4ece8467dd725e5e4b67a3670985d8acf0aec3c1cde1dc31cb5bd59657b80ccaf6fd2ab36c6d500be32ef686216d0142f5fe42e92143a94233e7997c2b3812
7
+ data.tar.gz: a9540ce8ae2d0a251b8f7b77369ee36b5fd1c9f65ad27a26b686bf24447cb0d43f75cda8a8987757b2a4c765932f7defd9694fe35da880f2f712e8ea9d69c235
@@ -7,17 +7,16 @@ rvm:
7
7
  - 2.0
8
8
  - 2.1
9
9
  - 2.2
10
- - 2.3.4
11
- - 2.4.1
10
+ - 2.3
11
+ - 2.4
12
+ - 2.5
13
+ - 2.6
14
+ - 2.7
12
15
  - ruby-head
13
- - rbx-18mode
14
- - rbx-19mode
15
16
  matrix:
16
17
  allow_failures:
17
18
  - rvm: ruby-head
18
- - rvm: rbx-18mode
19
- - rvm: rbx-19mode
20
19
  before_install:
21
- - gem install bundler
20
+ - gem update --system --conservative || gem install --conservative bundler -v '<2'
22
21
  before_script:
23
22
  - rake compile
@@ -1,6 +1,14 @@
1
+ ## 0.0.7.7 (2019-03-19)
2
+
3
+ - Include Windows binaries for Ruby 2.7.
4
+
5
+ ## 0.0.7.6 (2019-03-19)
6
+
7
+ - Include Windows binaries for Ruby 2.6.
8
+
1
9
  ## 0.0.7.5 (2018-02-06)
2
10
 
3
- - Version bump just for adding Windows binaries for Ruby 2.5.
11
+ - Include Windows binaries for Ruby 2.5.
4
12
 
5
13
  ## 0.0.7.4 (2017-04-19)
6
14
 
@@ -14,7 +22,7 @@
14
22
 
15
23
  ## 0.0.7.2 (2016-02-01)
16
24
 
17
- - Version bump just for adding Windows binaries for Ruby 2.3.
25
+ - Include Windows binaries for Ruby 2.3.
18
26
 
19
27
  ## 0.0.7.1 (2015-04-18)
20
28
 
@@ -4,6 +4,26 @@ if with_config('static-libstdc++')
4
4
  $LDFLAGS << ' ' << `#{CONFIG['CC']} -print-file-name=libstdc++.a`.chomp
5
5
  else
6
6
  have_library('stdc++')
7
+
8
+ case RbConfig::CONFIG['host_os']
9
+ when /solaris(!?2.11)/
10
+ # Do a little trickery here to enable C++ standard on Solaris 11 if found.
11
+ # This also forces 64bit compilation mode.
12
+ $CXX = CONFIG['CXX']
13
+ $CXX << ' ' << '-m64'
14
+ $CFLAGS = CONFIG['CFLAGS'].gsub(/-std=c99/, '')
15
+ $CFLAGS << ' ' << '-m64 -std=c++11'
16
+ $CPPFLAGS = CONFIG['CFLAGS'].gsub(/-std=c99/, '')
17
+ $CPPFLAGS << ' ' << '-m64 -std=c++11'
18
+ $CXXFLAGS = CONFIG['CFLAGS'].gsub(/-std=c99/, '')
19
+ $CXXFLAGS << ' ' << '-m64 -std=c++11'
20
+ when /aix/
21
+ # Compiler flags necessary on AIX.
22
+ # rubocop:disable Style/GlobalVars
23
+ $CFLAGS << ' ' << '-D_ALL_SOURCE=1'
24
+ $CPPFLAGS << ' ' << '-D_ALL_SOURCE=1'
25
+ $CXXFLAGS << ' ' << '-D_ALL_SOURCE=1'
26
+ end
7
27
  end
8
28
 
9
29
  create_makefile 'unf_ext'
@@ -1,5 +1,5 @@
1
1
  module UNF
2
2
  class Normalizer
3
- VERSION = "0.0.7.5"
3
+ VERSION = "0.0.7.7"
4
4
  end
5
5
  end
@@ -38,5 +38,5 @@ Gem::Specification.new do |gem|
38
38
  gem.add_development_dependency("rdoc", ["> 2.4.2"])
39
39
  gem.add_development_dependency("bundler", [">= 1.2"])
40
40
  gem.add_development_dependency("rake-compiler", [">= 0.7.9"])
41
- gem.add_development_dependency("rake-compiler-dock", ["~> 0.6.0"])
41
+ gem.add_development_dependency("rake-compiler-dock", [">= 1.0.1"])
42
42
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unf_ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7.5
4
+ version: 0.0.7.7
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Takeru Ohta
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-02-06 00:00:00.000000000 Z
12
+ date: 2020-03-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -85,16 +85,16 @@ dependencies:
85
85
  name: rake-compiler-dock
86
86
  requirement: !ruby/object:Gem::Requirement
87
87
  requirements:
88
- - - "~>"
88
+ - - ">="
89
89
  - !ruby/object:Gem::Version
90
- version: 0.6.0
90
+ version: 1.0.1
91
91
  type: :development
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
- - - "~>"
95
+ - - ">="
96
96
  - !ruby/object:Gem::Version
97
- version: 0.6.0
97
+ version: 1.0.1
98
98
  description: Unicode Normalization Form support library for CRuby
99
99
  email:
100
100
  - knu@idaemons.org
@@ -120,12 +120,12 @@ files:
120
120
  - ext/unf_ext/unf/trie/node.hh
121
121
  - ext/unf_ext/unf/trie/searcher.hh
122
122
  - ext/unf_ext/unf/util.hh
123
- - lib/2.0/unf_ext.so
124
- - lib/2.1/unf_ext.so
125
123
  - lib/2.2/unf_ext.so
126
124
  - lib/2.3/unf_ext.so
127
125
  - lib/2.4/unf_ext.so
128
126
  - lib/2.5/unf_ext.so
127
+ - lib/2.6/unf_ext.so
128
+ - lib/2.7/unf_ext.so
129
129
  - lib/unf_ext.rb
130
130
  - lib/unf_ext/version.rb
131
131
  - test/helper.rb
@@ -144,18 +144,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
144
144
  requirements:
145
145
  - - ">="
146
146
  - !ruby/object:Gem::Version
147
- version: '2.0'
147
+ version: '2.2'
148
148
  - - "<"
149
149
  - !ruby/object:Gem::Version
150
- version: '2.6'
150
+ version: 2.8.dev
151
151
  required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  requirements:
153
153
  - - ">="
154
154
  - !ruby/object:Gem::Version
155
155
  version: '0'
156
156
  requirements: []
157
- rubyforge_project:
158
- rubygems_version: 2.6.14
157
+ rubygems_version: 3.1.2
159
158
  signing_key:
160
159
  specification_version: 4
161
160
  summary: Unicode Normalization Form support library for CRuby