unf_ext 0.0.7.3-x86-mingw32 → 0.0.8-x86-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 +5 -5
- data/.github/workflows/unf_ext.yml +49 -0
- data/CHANGELOG.md +25 -1
- data/LICENSE.txt +1 -1
- data/README.md +2 -2
- data/Rakefile +8 -5
- data/ext/unf_ext/extconf.rb +20 -0
- data/ext/unf_ext/unf/table.hh +1 -1
- data/lib/2.3/unf_ext.so +0 -0
- 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/test/test_unf_ext.rb +21 -22
- data/unf_ext.gemspec +6 -14
- metadata +16 -16
- data/.travis.yml +0 -22
- data/lib/2.0/unf_ext.so +0 -0
- data/lib/2.1/unf_ext.so +0 -0
- data/lib/2.2/unf_ext.so +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6309af2e82dfd6b9fdae545bdccbde524b436defb913fb122d5293d4bcc04691
|
4
|
+
data.tar.gz: de0fcfd7eaf3aaca8cdeb7206bf7abbb7cae7454ac1401595cd77394cbb45511
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '041390598be50f3eb88dcce396d4c6a1806793090101bbef2523413d1f7ec76440078ec437782c052b2ccf8d6d298f3f5f9b41fc4eba41cd6f0e3cb2a738ef91'
|
7
|
+
data.tar.gz: 36f6cf55ad85447b17695ca21f0a9826caebb682dd675053b7da0b52519dffa872e461c0dbb17eb56bbb4bb593eb6ec7384ca5d84c535ab399dd39a011ccdda4
|
@@ -0,0 +1,49 @@
|
|
1
|
+
name: CI
|
2
|
+
|
3
|
+
on: [push, pull_request]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
build:
|
7
|
+
name: >-
|
8
|
+
${{ matrix.os }} ${{ matrix.ruby }}
|
9
|
+
|
10
|
+
runs-on: ${{ matrix.os }}
|
11
|
+
strategy:
|
12
|
+
fail-fast: false
|
13
|
+
matrix:
|
14
|
+
os: [ ubuntu-20.04, macos-11.0, windows-2019 ]
|
15
|
+
ruby: [ 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0, head ]
|
16
|
+
include:
|
17
|
+
- { os: windows-2019, ruby: mingw }
|
18
|
+
exclude:
|
19
|
+
- { os: macos-11.0, ruby: 2.2 }
|
20
|
+
- { os: macos-11.0, ruby: 2.3 }
|
21
|
+
- { os: windows-2019, ruby: head }
|
22
|
+
|
23
|
+
steps:
|
24
|
+
- name: repo checkout
|
25
|
+
uses: actions/checkout@v2
|
26
|
+
|
27
|
+
- name: load ruby cross-compilation toolkit
|
28
|
+
uses: MSP-Greg/setup-ruby-pkgs@v1
|
29
|
+
with:
|
30
|
+
ruby-version: ${{ matrix.ruby }}
|
31
|
+
mingw: _upgrade_
|
32
|
+
|
33
|
+
- name: bundle install
|
34
|
+
shell: pwsh
|
35
|
+
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
|
+
bundle config set --local path .bundle/vendor
|
41
|
+
bundle install --jobs 4 --retry 3
|
42
|
+
|
43
|
+
- name: compile
|
44
|
+
timeout-minutes: 5
|
45
|
+
run: bundle exec rake compile
|
46
|
+
|
47
|
+
- name: test
|
48
|
+
timeout-minutes: 5
|
49
|
+
run: bundle exec rake test
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,27 @@
|
|
1
|
+
## 0.0.8
|
2
|
+
|
3
|
+
- No functional change in the library code.
|
4
|
+
- Include Windows binaries for Ruby 3.0.
|
5
|
+
- Drop support for Ruby 2.1 and earlier.
|
6
|
+
- Replace Travis CI with Github Actions.
|
7
|
+
- Fix cross-build after upgrading rake-compiler/rake-compiler-dock to 1.1.1/1.1.0.
|
8
|
+
|
9
|
+
## 0.0.7.7 (2020-03-30)
|
10
|
+
|
11
|
+
- Include Windows binaries for Ruby 2.7.
|
12
|
+
|
13
|
+
## 0.0.7.6 (2019-03-19)
|
14
|
+
|
15
|
+
- Include Windows binaries for Ruby 2.6.
|
16
|
+
|
17
|
+
## 0.0.7.5 (2018-02-06)
|
18
|
+
|
19
|
+
- Include Windows binaries for Ruby 2.5.
|
20
|
+
|
21
|
+
## 0.0.7.4 (2017-04-19)
|
22
|
+
|
23
|
+
- Fix build on ARM and GCC 6 again.
|
24
|
+
|
1
25
|
## 0.0.7.3 (2017-04-11)
|
2
26
|
|
3
27
|
- Update the base Unicode version to 9.
|
@@ -6,7 +30,7 @@
|
|
6
30
|
|
7
31
|
## 0.0.7.2 (2016-02-01)
|
8
32
|
|
9
|
-
-
|
33
|
+
- Include Windows binaries for Ruby 2.3.
|
10
34
|
|
11
35
|
## 0.0.7.1 (2015-04-18)
|
12
36
|
|
data/LICENSE.txt
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
The MIT License
|
2
2
|
|
3
3
|
Copyright (c) 2010 Takeru Ohta <phjgt308@gmail.com>
|
4
|
-
Copyright (c) 2011-
|
4
|
+
Copyright (c) 2011-2018 Akinori MUSHA <knu@idaemons.org> (extended Ruby support)
|
5
5
|
|
6
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
7
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
@@ -17,7 +17,7 @@ Description
|
|
17
17
|
normalizer.normalize(string, :nfc) #=> string in NFC
|
18
18
|
}
|
19
19
|
|
20
|
-
* Compliant with Unicode
|
20
|
+
* Compliant with Unicode 9.0
|
21
21
|
|
22
22
|
Requirement
|
23
23
|
-----------
|
@@ -51,7 +51,7 @@ License
|
|
51
51
|
-------
|
52
52
|
|
53
53
|
Copyright (c) 2010-2017 Takeru Ohta
|
54
|
-
Copyright (c) 2011-
|
54
|
+
Copyright (c) 2011-2018 Akinori MUSHA
|
55
55
|
|
56
56
|
Licensed under the MIT license.
|
57
57
|
See `LICENSE` for details.
|
data/Rakefile
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
1
|
require 'bundler/gem_tasks'
|
3
2
|
|
4
3
|
gemspec = Bundler::GemHelper.gemspec
|
@@ -13,13 +12,17 @@ end
|
|
13
12
|
namespace :gem do
|
14
13
|
task :native do
|
15
14
|
require 'rake_compiler_dock'
|
16
|
-
|
15
|
+
sh 'bundle package --all'
|
16
|
+
%w[
|
17
|
+
x64-mingw32
|
18
|
+
x86-mingw32
|
19
|
+
].each do |plat|
|
20
|
+
RakeCompilerDock.sh "bundle --local && rake native:#{plat} gem", platform: plat
|
21
|
+
end
|
17
22
|
end
|
18
|
-
|
19
|
-
task :all => [:build, :native]
|
20
23
|
end
|
21
24
|
|
22
|
-
task :gems =>
|
25
|
+
task :gems => %i[build gem:native]
|
23
26
|
|
24
27
|
require 'rake/testtask'
|
25
28
|
Rake::TestTask.new(:test) do |test|
|
data/ext/unf_ext/extconf.rb
CHANGED
@@ -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'
|
data/ext/unf_ext/unf/table.hh
CHANGED
@@ -6365,7 +6365,7 @@ const unsigned NODES[]={
|
|
6365
6365
|
0xFF000000,0xFF000000,0xFF000000,0xFF000000,0xFF000000,0xFF000000,0xFF000000,0xFF000000,0xFF000000,0xFF000000,
|
6366
6366
|
0xFF000000,0xFF000000,0xFF000000};
|
6367
6367
|
|
6368
|
-
const char STRINGS[]={
|
6368
|
+
const signed char STRINGS[]={
|
6369
6369
|
-27,-113, -81, -27, -66,-105, -23,-123,-115, -27,-106, -74, -25,-108, -77, -26, -70,-128, -27,-112,
|
6370
6370
|
-120, -25, -87, -70, -25, -90,-127, -26,-116,-121, -23,-127,-118, -26,-115,-107, -26,-118,-107, -26,
|
6371
6371
|
-68,-108, -27,-112, -71, -27, -93, -80, -24, -78, -87, -25, -75,-126, -27,-120, -99, -26,-106, -80,
|
data/lib/2.3/unf_ext.so
CHANGED
Binary file
|
data/lib/2.4/unf_ext.so
CHANGED
Binary file
|
data/lib/2.5/unf_ext.so
ADDED
Binary file
|
data/lib/2.6/unf_ext.so
ADDED
Binary file
|
data/lib/2.7/unf_ext.so
ADDED
Binary file
|
data/lib/3.0/unf_ext.so
ADDED
Binary file
|
data/lib/unf_ext/version.rb
CHANGED
data/test/test_unf_ext.rb
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
1
|
require 'helper'
|
3
2
|
require 'pathname'
|
4
3
|
|
@@ -12,30 +11,30 @@ class TestUnf < Test::Unit::TestCase
|
|
12
11
|
normalizer = UNF::Normalizer.new
|
13
12
|
open(Pathname(__FILE__).dirname + 'normalization-test.txt', 'r:utf-8').each_slice(6) { |lines|
|
14
13
|
flunk "broken test file" if lines.size != 6 || lines.pop !~ /^$/
|
15
|
-
str, nfd,
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
14
|
+
str, nfc, nfd, nfkc, nfkd = lines
|
15
|
+
assert_equal nfd, normalizer.normalize(str, :nfd)
|
16
|
+
assert_equal nfd, normalizer.normalize(nfd, :nfd)
|
17
|
+
assert_equal nfd, normalizer.normalize(nfc, :nfd)
|
18
|
+
assert_equal nfkd, normalizer.normalize(nfkc, :nfd)
|
19
|
+
assert_equal nfkd, normalizer.normalize(nfkc, :nfd)
|
21
20
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
21
|
+
assert_equal nfc, normalizer.normalize(str, :nfc)
|
22
|
+
assert_equal nfc, normalizer.normalize(nfd, :nfc)
|
23
|
+
assert_equal nfc, normalizer.normalize(nfc, :nfc)
|
24
|
+
assert_equal nfkc, normalizer.normalize(nfkc, :nfc)
|
25
|
+
assert_equal nfkc, normalizer.normalize(nfkd, :nfc)
|
27
26
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
27
|
+
assert_equal nfkd, normalizer.normalize(str, :nfkd)
|
28
|
+
assert_equal nfkd, normalizer.normalize(nfd, :nfkd)
|
29
|
+
assert_equal nfkd, normalizer.normalize(nfc, :nfkd)
|
30
|
+
assert_equal nfkd, normalizer.normalize(nfkc, :nfkd)
|
31
|
+
assert_equal nfkd, normalizer.normalize(nfkd, :nfkd)
|
33
32
|
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
33
|
+
assert_equal nfkc, normalizer.normalize(str, :nfkc)
|
34
|
+
assert_equal nfkc, normalizer.normalize(nfd, :nfkc)
|
35
|
+
assert_equal nfkc, normalizer.normalize(nfc, :nfkc)
|
36
|
+
assert_equal nfkc, normalizer.normalize(nfkc, :nfkc)
|
37
|
+
assert_equal nfkc, normalizer.normalize(nfkd, :nfkc)
|
39
38
|
}
|
40
39
|
end
|
41
40
|
end
|
data/unf_ext.gemspec
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
1
|
lib = File.expand_path('../lib', __FILE__)
|
3
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
3
|
require 'unf_ext/version'
|
@@ -24,19 +23,12 @@ Gem::Specification.new do |gem|
|
|
24
23
|
"README.md"
|
25
24
|
]
|
26
25
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
# shoulda-matchers to satisfy bundler.
|
32
|
-
gem.add_development_dependency("activesupport", ["< 4.0"])
|
33
|
-
gem.add_development_dependency("test-unit", ["= 3.1.5"])
|
34
|
-
else
|
35
|
-
gem.add_development_dependency("rake", [">= 0.9.2.2"])
|
36
|
-
gem.add_development_dependency("test-unit")
|
37
|
-
end
|
26
|
+
gem.required_ruby_version = '>= 2.2'
|
27
|
+
|
28
|
+
gem.add_development_dependency("rake", [">= 0.9.2.2"])
|
29
|
+
gem.add_development_dependency("test-unit")
|
38
30
|
gem.add_development_dependency("rdoc", ["> 2.4.2"])
|
39
31
|
gem.add_development_dependency("bundler", [">= 1.2"])
|
40
|
-
gem.add_development_dependency("rake-compiler", [">=
|
41
|
-
gem.add_development_dependency("rake-compiler-dock", ["
|
32
|
+
gem.add_development_dependency("rake-compiler", [">= 1.1.1"])
|
33
|
+
gem.add_development_dependency("rake-compiler-dock", [">= 1.1.0"])
|
42
34
|
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.
|
4
|
+
version: 0.0.8
|
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:
|
12
|
+
date: 2021-09-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -73,28 +73,28 @@ dependencies:
|
|
73
73
|
requirements:
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version:
|
76
|
+
version: 1.1.1
|
77
77
|
type: :development
|
78
78
|
prerelease: false
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
81
|
- - ">="
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version:
|
83
|
+
version: 1.1.1
|
84
84
|
- !ruby/object:Gem::Dependency
|
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:
|
90
|
+
version: 1.1.0
|
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:
|
97
|
+
version: 1.1.0
|
98
98
|
description: Unicode Normalization Form support library for CRuby
|
99
99
|
email:
|
100
100
|
- knu@idaemons.org
|
@@ -105,8 +105,8 @@ extra_rdoc_files:
|
|
105
105
|
- README.md
|
106
106
|
files:
|
107
107
|
- ".document"
|
108
|
+
- ".github/workflows/unf_ext.yml"
|
108
109
|
- ".gitignore"
|
109
|
-
- ".travis.yml"
|
110
110
|
- CHANGELOG.md
|
111
111
|
- Gemfile
|
112
112
|
- LICENSE.txt
|
@@ -120,11 +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
|
-
- lib/2.2/unf_ext.so
|
126
123
|
- lib/2.3/unf_ext.so
|
127
124
|
- lib/2.4/unf_ext.so
|
125
|
+
- lib/2.5/unf_ext.so
|
126
|
+
- lib/2.6/unf_ext.so
|
127
|
+
- lib/2.7/unf_ext.so
|
128
|
+
- lib/3.0/unf_ext.so
|
128
129
|
- lib/unf_ext.rb
|
129
130
|
- lib/unf_ext/version.rb
|
130
131
|
- test/helper.rb
|
@@ -143,18 +144,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
143
144
|
requirements:
|
144
145
|
- - ">="
|
145
146
|
- !ruby/object:Gem::Version
|
146
|
-
version: '2.
|
147
|
+
version: '2.3'
|
147
148
|
- - "<"
|
148
149
|
- !ruby/object:Gem::Version
|
149
|
-
version:
|
150
|
+
version: 3.1.dev
|
150
151
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
151
152
|
requirements:
|
152
153
|
- - ">="
|
153
154
|
- !ruby/object:Gem::Version
|
154
155
|
version: '0'
|
155
156
|
requirements: []
|
156
|
-
|
157
|
-
rubygems_version: 2.6.8
|
157
|
+
rubygems_version: 3.2.3
|
158
158
|
signing_key:
|
159
159
|
specification_version: 4
|
160
160
|
summary: Unicode Normalization Form support library for CRuby
|
data/.travis.yml
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
sudo: false
|
3
|
-
rvm:
|
4
|
-
- 1.8.7
|
5
|
-
- ree
|
6
|
-
- 1.9.3
|
7
|
-
- 2.0
|
8
|
-
- 2.1
|
9
|
-
- 2.2
|
10
|
-
- 2.3.0
|
11
|
-
- ruby-head
|
12
|
-
- rbx-18mode
|
13
|
-
- rbx-19mode
|
14
|
-
matrix:
|
15
|
-
allow_failures:
|
16
|
-
- rvm: ruby-head
|
17
|
-
- rvm: rbx-18mode
|
18
|
-
- rvm: rbx-19mode
|
19
|
-
before_install:
|
20
|
-
- gem install bundler
|
21
|
-
before_script:
|
22
|
-
- rake compile
|
data/lib/2.0/unf_ext.so
DELETED
Binary file
|
data/lib/2.1/unf_ext.so
DELETED
Binary file
|
data/lib/2.2/unf_ext.so
DELETED
Binary file
|