Accepting request 642586 from home:namtrac:branches:X11:common:Factory
- Update to new upstream release 63.1 * CLDR 34 + Segmentation rules and emoji sort order adjusted for Unicode 11 + Somali and Javanese data now up to moderate level (document content) + Tongan, Konkani, Maori, Dzongkha, Tatar, Kurdish (ku), and Xhosa data now up to basic level + Many data additions and corrections in many other languages + The following languages have been added to ICU: Sindhi, Maori, Turkmen, Javanese, Interlingua, Kurdish (ku), Xhosa * New currency: Venezuela's Bolívar Soberano (VES) * New Japanese calendar era from 2019: CLDR and ICU include data for testing that can be enabled. (ICU #12973, CLDR #10750) * To enable CLDR new Japanese era placeholder name, set environment variable (and Java system property for ICU4J) ICU_ENABLE_TENTATIVE_ERA=true. * New API for number and currency range formatting (class NumberRangeFormatter, #11276) * Support for additional Unicode properties: Indic_Positional_Category & Indic_Syllabic_Category (#8966) and Vertical_Orientation (#12850) * New API for code point maps and tries, mapping Unicode code points (U+0000..U+10FFFF) to integer values. (#13530) * Java classes CodePointMap, CodePointTrie, MutableCodePointTrie * C types UCPMap, UCPTrie, UMutableCPTrie * New API for getting a UnicodeSet per binary property and a code point map per enumerated/int-value property. (#20086) OBS-URL: https://build.opensuse.org/request/show/642586 OBS-URL: https://build.opensuse.org/package/show/X11:common:Factory/icu?expand=0&rev=96
This commit is contained in:
parent
7c06f078d1
commit
6975b4cad1
@ -1,4 +1,4 @@
|
||||
libicu-suse62_1
|
||||
libicu-suse63_1
|
||||
libicu-devel
|
||||
requires -libicu-<targettype>
|
||||
requires "libicu-suse62_1-<targettype> = <version>"
|
||||
requires "libicu-suse63_1-<targettype> = <version>"
|
||||
|
@ -78,8 +78,8 @@ Index: icu/source/common/unicode/uvernum.h
|
||||
@@ -59,6 +59,7 @@
|
||||
* @stable ICU 2.4
|
||||
*/
|
||||
#define U_ICU_VERSION_MAJOR_NUM 62
|
||||
+#define U_ICU_VERSION_MAJOR_STR "62"
|
||||
#define U_ICU_VERSION_MAJOR_NUM 63
|
||||
+#define U_ICU_VERSION_MAJOR_STR "63"
|
||||
|
||||
/** The current ICU minor version as an integer.
|
||||
* This value will change in the subsequent releases of ICU
|
||||
@ -87,7 +87,7 @@ Index: icu/source/common/unicode/uvernum.h
|
||||
* This value will change in the subsequent releases of ICU
|
||||
* @stable ICU 2.6
|
||||
*/
|
||||
-#define U_ICU_VERSION_SUFFIX _62
|
||||
-#define U_ICU_VERSION_SUFFIX _63
|
||||
+#define ___icu_version_expand(major, minor) _ ## major ## _ ## minor
|
||||
+#define ___icu_version_glue(major, minor) ___icu_version_expand(major, minor)
|
||||
+#define U_ICU_VERSION_SUFFIX ___icu_version_glue(U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM)
|
||||
@ -98,8 +98,8 @@ Index: icu/source/common/unicode/uvernum.h
|
||||
*
|
||||
* @stable ICU 2.6
|
||||
*/
|
||||
-#define U_ICU_VERSION_SHORT "62"
|
||||
+#define U_ICU_VERSION_SHORT "62_1"
|
||||
-#define U_ICU_VERSION_SHORT "63"
|
||||
+#define U_ICU_VERSION_SHORT "63_1"
|
||||
|
||||
#ifndef U_HIDE_INTERNAL_API
|
||||
/** Data version in ICU4C.
|
||||
|
43
icu.changes
43
icu.changes
@ -1,3 +1,46 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 17 09:39:24 UTC 2018 - Ismail Dönmez <idonmez@suse.com>
|
||||
|
||||
- Update to new upstream release 63.1
|
||||
* CLDR 34
|
||||
+ Segmentation rules and emoji sort order adjusted for
|
||||
Unicode 11
|
||||
+ Somali and Javanese data now up to moderate level
|
||||
(document content)
|
||||
+ Tongan, Konkani, Maori, Dzongkha, Tatar, Kurdish (ku),
|
||||
and Xhosa data now up to basic level
|
||||
+ Many data additions and corrections in many other
|
||||
languages
|
||||
+ The following languages have been added to ICU: Sindhi,
|
||||
Maori, Turkmen, Javanese, Interlingua, Kurdish (ku), Xhosa
|
||||
* New currency: Venezuela's Bolívar Soberano (VES)
|
||||
* New Japanese calendar era from 2019: CLDR and ICU include
|
||||
data for testing that can be enabled.
|
||||
(ICU #12973, CLDR #10750)
|
||||
* To enable CLDR new Japanese era placeholder name, set
|
||||
environment variable (and Java system property for ICU4J)
|
||||
ICU_ENABLE_TENTATIVE_ERA=true.
|
||||
* New API for number and currency range formatting
|
||||
(class NumberRangeFormatter, #11276)
|
||||
* Support for additional Unicode properties:
|
||||
Indic_Positional_Category & Indic_Syllabic_Category (#8966)
|
||||
and Vertical_Orientation (#12850)
|
||||
* New API for code point maps and tries, mapping Unicode
|
||||
code points (U+0000..U+10FFFF) to integer values. (#13530)
|
||||
* Java classes CodePointMap, CodePointTrie, MutableCodePointTrie
|
||||
* C types UCPMap, UCPTrie, UMutableCPTrie
|
||||
* New API for getting a UnicodeSet per binary property and a code
|
||||
point map per enumerated/int-value property. (#20086)
|
||||
* Full conformance with UAX #14 Line Breaking
|
||||
(required BreakIterator feature work). (#7270)
|
||||
* C++ Locale class
|
||||
+ Additional functions forLanguageTag()/toLanguageTag(),
|
||||
and functions that are easier and safer to use by using
|
||||
StringPiece and ByteSink rather than raw buffers. (#13417)
|
||||
+ Move semantics. (#13645)
|
||||
* Various Out-Of-Memory (OOM) issues have been fixed.
|
||||
- Refresh icu-versioning.diff
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 29 09:20:28 UTC 2018 - jengelh@inai.de
|
||||
|
||||
|
10
icu.spec
10
icu.spec
@ -12,20 +12,20 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define lname libicu-suse62_1
|
||||
%define amajor 62
|
||||
%define aversion 62_1
|
||||
%define lname libicu-suse63_1
|
||||
%define amajor 63
|
||||
%define aversion 63_1
|
||||
%ifarch %armb hppa mips mips64 ppc ppc64 %sparc s390 s390x m68k
|
||||
%define be_platform 1
|
||||
%else
|
||||
%define be_platform 0
|
||||
%endif
|
||||
Name: icu
|
||||
Version: 62.1
|
||||
Version: 63.1
|
||||
Release: 0
|
||||
Summary: International Components for Unicode
|
||||
License: ICU
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d775f17996f94b22fee948991defc35eb3c5a4ed493e8790d2568fdd2243f9a9
|
||||
size 7404744
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3dd9868d666350dda66a6e305eecde9d479fb70b30d5b55d78a1deffb97d5aa3
|
||||
size 23468750
|
3
icu4c-63_1-docs.zip
Normal file
3
icu4c-63_1-docs.zip
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:babb80ebad077c9e6105039657a7396812abe6818637637dab8ad4335562b763
|
||||
size 7444605
|
3
icu4c-63_1-src.tgz
Normal file
3
icu4c-63_1-src.tgz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:05c490b69454fce5860b7e8e2821231674af0a11d7ef2febea9a32512998cb9d
|
||||
size 23746939
|
Loading…
Reference in New Issue
Block a user