unf_ext 0.0.7.5-x64-mingw32 → 0.0.7.7-x64-mingw32

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
- SHA1:
3
- metadata.gz: 5dc3d46d974c3e4e19f90425e7944a521b0e3484
4
- data.tar.gz: 3b510558d6e80c68faf4157e7e2df28fec8e8826
2
+ SHA256:
3
+ metadata.gz: 7fdca1537dfd259034bc3b2faa16ba56c0c7f9c4898d2b2f08c858a2c126ac53
4
+ data.tar.gz: b33aca46b56de3cb43a43229c5f89b70c44612f616d520434c2d8a2db54f3e9f
5
5
  SHA512:
6
- metadata.gz: 9326676462294db5e0f51089fa1b16234b96601288c1a27912557bdb8830eb852ffff2711e21a44a1a495c69249189697c9da12ac3453e0903c82baf268ec982
7
- data.tar.gz: c28128fbe9fb691260efdb9fce250300d0fb2f83bd948a20499c6cb9c06eb5b3521566f4f713516bf15e538249d46f2cf1e1e835ac55fb61c7492cedb8eed09c
6
+ metadata.gz: 2a2e3ba36f4808ce7a4d1a92ac1f555667e865f23a34e5f485d989dc44ea0004d93b1630355b68ef8c89420d26ebec334805cf00ec91d4a347805357ad3b6edf
7
+ data.tar.gz: a33e845f724bcb154d329ca54a7e4a98f18e6323ef1e0f6ddf8ed7bfe28dedeb7446d4d19771330ed8e53d1a843727b1b418ad590e2b93c5a4fe0ed639f520cb
@@ -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: x64-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