mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
community/ruby-charlock_holmes: upgrade to 0.7.6
This commit is contained in:
parent
f8f8ca5bef
commit
0dab18db73
@ -2,8 +2,8 @@
|
||||
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
||||
pkgname=ruby-charlock_holmes
|
||||
_gemname=charlock_holmes
|
||||
pkgver=0.7.5
|
||||
pkgrel=1
|
||||
pkgver=0.7.6
|
||||
pkgrel=0
|
||||
pkgdesc="Character encoding detection, brought to you by ICU"
|
||||
url="https://github.com/brianmario/charlock_holmes"
|
||||
arch="all"
|
||||
@ -13,8 +13,7 @@ makedepends="icu-dev ruby ruby-dev zlib-dev"
|
||||
source="$pkgname-$pkgver.tar.gz::https://github.com/brianmario/$_gemname/archive/$pkgver.tar.gz
|
||||
gemspec.patch
|
||||
rakefile.patch
|
||||
tests-no-bundler.patch
|
||||
tests-fix-icu59.1.patch"
|
||||
tests-no-bundler.patch"
|
||||
builddir="$srcdir/$_gemname-$pkgver"
|
||||
|
||||
build() {
|
||||
@ -51,8 +50,7 @@ package() {
|
||||
rm -rf ext/ lib/$_gemname/*.so
|
||||
}
|
||||
|
||||
sha512sums="a5ee9d47d8c8386e7be9ad10e93e7bd7663713df285b33e5d8afd865570e463a9f785e568675363f9b949a8207bbcc144a7378dfb206645824e9f0abc33ec668 ruby-charlock_holmes-0.7.5.tar.gz
|
||||
sha512sums="410a210e4fc7e9905f38e3f68375ffdf0cf73cca8a8b230d7c4165ac23503e2460692168b1eb5d69ff183e70d89e5dcfbf6688dd22b736f4adf3c9f3af18575b ruby-charlock_holmes-0.7.6.tar.gz
|
||||
c30ca2b7ac859bae553f633ed1df1947ad735c804f0edacd20c50d2d38d277d4a5a883459134a8caf832230754f272ec2a55e42e1cdf24eea1954aad9ead2679 gemspec.patch
|
||||
ac59baaa1f17281f9b07c035b367e697e08943f4e0cf2b5a718e7a957c1c156bbea0c240646cdea94575e7729e60415ee6293edbaa7b86aad3285282b9385181 rakefile.patch
|
||||
6fcdc90539154a007109a4958d7fc7451b0d5a69840866af928ce7233823b32a0f5a8d7d3d9b249978807ff8dced1a1f85d14187c99b7fff1f2497e26b11a120 tests-no-bundler.patch
|
||||
231c0563a1bee92aafa0a20d3db8c28ecc9a5e85530825852ec6457edfd6db068f866b52310621c0be97e0e209835b12714f77ded47c0188e4c8180d8429cf64 tests-fix-icu59.1.patch"
|
||||
6fcdc90539154a007109a4958d7fc7451b0d5a69840866af928ce7233823b32a0f5a8d7d3d9b249978807ff8dced1a1f85d14187c99b7fff1f2497e26b11a120 tests-no-bundler.patch"
|
||||
|
@ -1,60 +0,0 @@
|
||||
See https://github.com/brianmario/charlock_holmes/issues/115
|
||||
|
||||
--- a/test/encoding_detector_test.rb
|
||||
+++ b/test/encoding_detector_test.rb
|
||||
@@ -24,7 +24,7 @@
|
||||
assert detected_list.is_a? Array
|
||||
|
||||
encoding_list = detected_list.map {|d| d[:encoding]}.sort
|
||||
- assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-8'], encoding_list
|
||||
+ assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-16BE', 'UTF-16LE', 'UTF-8'], encoding_list
|
||||
end
|
||||
|
||||
def test_class_level_detect_all_method_accepts_encoding_hint
|
||||
@@ -33,7 +33,7 @@
|
||||
assert detected_list.is_a? Array
|
||||
|
||||
encoding_list = detected_list.map {|d| d[:encoding]}.sort
|
||||
- assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-8'], encoding_list
|
||||
+ assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-16BE', 'UTF-16LE', 'UTF-8'], encoding_list
|
||||
end
|
||||
|
||||
def test_has_detect_method
|
||||
@@ -54,7 +54,7 @@
|
||||
assert detected_list.is_a? Array
|
||||
|
||||
encoding_list = detected_list.map {|d| d[:encoding]}.sort
|
||||
- assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-8'], encoding_list
|
||||
+ assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-16BE', 'UTF-16LE', 'UTF-8'], encoding_list
|
||||
end
|
||||
|
||||
def test_detect_all_accepts_encoding_hint
|
||||
@@ -63,7 +63,7 @@
|
||||
assert detected_list.is_a? Array
|
||||
|
||||
encoding_list = detected_list.map {|d| d[:encoding]}.sort
|
||||
- assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-8'], encoding_list
|
||||
+ assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-16BE', 'UTF-16LE', 'UTF-8'], encoding_list
|
||||
end
|
||||
|
||||
def test_strip_tags_flag
|
||||
--- a/test/string_methods_test.rb
|
||||
+++ b/test/string_methods_test.rb
|
||||
@@ -26,7 +26,7 @@
|
||||
assert detected_list.is_a? Array
|
||||
|
||||
encoding_list = detected_list.map {|d| d[:encoding]}.sort
|
||||
- assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-8'], encoding_list
|
||||
+ assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-16BE', 'UTF-16LE', 'UTF-8'], encoding_list
|
||||
end
|
||||
|
||||
def test_detect_encodings_accepts_encoding_hint_param
|
||||
@@ -37,7 +37,7 @@
|
||||
assert detected_list.is_a? Array
|
||||
|
||||
encoding_list = detected_list.map {|d| d[:encoding]}.sort
|
||||
- assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-8'], encoding_list
|
||||
+ assert_equal ['ISO-8859-1', 'ISO-8859-2', 'UTF-16BE', 'UTF-16LE', 'UTF-8'], encoding_list
|
||||
end
|
||||
|
||||
def test_returns_a_ruby_compatible_encoding_name
|
Loading…
Reference in New Issue
Block a user