unf_ext 0.0.8-x64-mingw32 → 0.0.8.2-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 +4 -4
- data/.github/workflows/unf_ext.yml +1 -7
- data/CHANGELOG.md +9 -1
- data/Rakefile +8 -5
- data/lib/2.4/unf_ext.so +0 -0
- data/lib/2.5/unf_ext.so +0 -0
- data/lib/2.6/unf_ext.so +0 -0
- data/lib/2.7/unf_ext.so +0 -0
- data/lib/3.0/unf_ext.so +0 -0
- data/lib/unf_ext/version.rb +1 -1
- data/unf_ext.gemspec +1 -1
- metadata +9 -10
- data/lib/2.3/unf_ext.so +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38f037687a442ffa804ddb7ff0b92aae1246c6776a21bb36062fdcd6fc1d4edb
|
4
|
+
data.tar.gz: 4c6c321e9c15fb0ff8bdda51c12300bba16468c8872a3935a0c125ed33ae8042
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c478590dfb086fa5113419692f29a3b5b4a935ab42f78407a7ebc45344268614eb340ecb00283e0573fb1938e15017493bcff952d50fe915788c32adc84ee96f
|
7
|
+
data.tar.gz: 814dcc013d8cd4730a7567ad7389747ad26e251c45531d71f324aa766ebf6fccc970900bf0c187a996b2f1814cf63910d579c785b4e45a510d914eaf457536ef
|
@@ -12,12 +12,10 @@ jobs:
|
|
12
12
|
fail-fast: false
|
13
13
|
matrix:
|
14
14
|
os: [ ubuntu-20.04, macos-11.0, windows-2019 ]
|
15
|
-
ruby: [ 2.
|
15
|
+
ruby: [ 2.7, "3.0", 3.1, head ]
|
16
16
|
include:
|
17
17
|
- { os: windows-2019, ruby: mingw }
|
18
18
|
exclude:
|
19
|
-
- { os: macos-11.0, ruby: 2.2 }
|
20
|
-
- { os: macos-11.0, ruby: 2.3 }
|
21
19
|
- { os: windows-2019, ruby: head }
|
22
20
|
|
23
21
|
steps:
|
@@ -33,10 +31,6 @@ jobs:
|
|
33
31
|
- name: bundle install
|
34
32
|
shell: pwsh
|
35
33
|
run: |
|
36
|
-
# update RubyGems in Ruby 2.2, bundle install
|
37
|
-
if ('${{ matrix.ruby }}' -lt '2.3') {
|
38
|
-
gem update --system 2.7.10 --no-document
|
39
|
-
}
|
40
34
|
bundle config set --local path .bundle/vendor
|
41
35
|
bundle install --jobs 4 --retry 3
|
42
36
|
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,12 @@
|
|
1
|
-
## 0.0.8
|
1
|
+
## 0.0.8.2 (2022-05-26)
|
2
|
+
|
3
|
+
- Add x64-mingw-ucrt native gem support for RubyInstaller 3.1.
|
4
|
+
|
5
|
+
## 0.0.8.1 (2022-03-13)
|
6
|
+
|
7
|
+
- Include Windows binaries for Ruby 3.1. (FAIL)
|
8
|
+
|
9
|
+
## 0.0.8 (2021-09-14)
|
2
10
|
|
3
11
|
- No functional change in the library code.
|
4
12
|
- Include Windows binaries for Ruby 3.0.
|
data/Rakefile
CHANGED
@@ -2,10 +2,16 @@ require 'bundler/gem_tasks'
|
|
2
2
|
|
3
3
|
gemspec = Bundler::GemHelper.gemspec
|
4
4
|
|
5
|
+
native_platforms = %w[
|
6
|
+
x86-mingw32
|
7
|
+
x64-mingw32
|
8
|
+
x64-mingw-ucrt
|
9
|
+
]
|
10
|
+
|
5
11
|
require 'rake/extensiontask'
|
6
12
|
Rake::ExtensionTask.new('unf_ext', gemspec) do |ext|
|
7
13
|
ext.cross_compile = true
|
8
|
-
ext.cross_platform =
|
14
|
+
ext.cross_platform = native_platforms
|
9
15
|
ext.cross_config_options << '--with-ldflags="-static-libgcc"' << '--with-static-libstdc++'
|
10
16
|
end
|
11
17
|
|
@@ -13,10 +19,7 @@ namespace :gem do
|
|
13
19
|
task :native do
|
14
20
|
require 'rake_compiler_dock'
|
15
21
|
sh 'bundle package --all'
|
16
|
-
|
17
|
-
x64-mingw32
|
18
|
-
x86-mingw32
|
19
|
-
].each do |plat|
|
22
|
+
native_platforms.each do |plat|
|
20
23
|
RakeCompilerDock.sh "bundle --local && rake native:#{plat} gem", platform: plat
|
21
24
|
end
|
22
25
|
end
|
data/lib/2.4/unf_ext.so
CHANGED
Binary file
|
data/lib/2.5/unf_ext.so
CHANGED
Binary file
|
data/lib/2.6/unf_ext.so
CHANGED
Binary file
|
data/lib/2.7/unf_ext.so
CHANGED
Binary file
|
data/lib/3.0/unf_ext.so
CHANGED
Binary file
|
data/lib/unf_ext/version.rb
CHANGED
data/unf_ext.gemspec
CHANGED
@@ -30,5 +30,5 @@ Gem::Specification.new do |gem|
|
|
30
30
|
gem.add_development_dependency("rdoc", ["> 2.4.2"])
|
31
31
|
gem.add_development_dependency("bundler", [">= 1.2"])
|
32
32
|
gem.add_development_dependency("rake-compiler", [">= 1.1.1"])
|
33
|
-
gem.add_development_dependency("rake-compiler-dock", [">= 1.1
|
33
|
+
gem.add_development_dependency("rake-compiler-dock", [">= 1.2.1"])
|
34
34
|
end
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unf_ext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.8
|
4
|
+
version: 0.0.8.2
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- Takeru Ohta
|
8
8
|
- Akinori MUSHA
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2022-06-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -87,14 +87,14 @@ dependencies:
|
|
87
87
|
requirements:
|
88
88
|
- - ">="
|
89
89
|
- !ruby/object:Gem::Version
|
90
|
-
version: 1.1
|
90
|
+
version: 1.2.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: 1.1
|
97
|
+
version: 1.2.1
|
98
98
|
description: Unicode Normalization Form support library for CRuby
|
99
99
|
email:
|
100
100
|
- knu@idaemons.org
|
@@ -120,7 +120,6 @@ 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.3/unf_ext.so
|
124
123
|
- lib/2.4/unf_ext.so
|
125
124
|
- lib/2.5/unf_ext.so
|
126
125
|
- lib/2.6/unf_ext.so
|
@@ -136,7 +135,7 @@ homepage: https://github.com/knu/ruby-unf_ext
|
|
136
135
|
licenses:
|
137
136
|
- MIT
|
138
137
|
metadata: {}
|
139
|
-
post_install_message:
|
138
|
+
post_install_message:
|
140
139
|
rdoc_options: []
|
141
140
|
require_paths:
|
142
141
|
- lib
|
@@ -144,7 +143,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
144
143
|
requirements:
|
145
144
|
- - ">="
|
146
145
|
- !ruby/object:Gem::Version
|
147
|
-
version: '2.
|
146
|
+
version: '2.4'
|
148
147
|
- - "<"
|
149
148
|
- !ruby/object:Gem::Version
|
150
149
|
version: 3.1.dev
|
@@ -154,8 +153,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
153
|
- !ruby/object:Gem::Version
|
155
154
|
version: '0'
|
156
155
|
requirements: []
|
157
|
-
rubygems_version: 3.
|
158
|
-
signing_key:
|
156
|
+
rubygems_version: 3.3.4
|
157
|
+
signing_key:
|
159
158
|
specification_version: 4
|
160
159
|
summary: Unicode Normalization Form support library for CRuby
|
161
160
|
test_files:
|
data/lib/2.3/unf_ext.so
DELETED
Binary file
|