Skip to content

Commit 15030f2

Browse files
srl295joaocgreis
authored andcommitted
build: Intl: bump ICU4C from 54 to 55 (backport)
node was using ICU4C 54 ( released 2014-oct-06 ) * Bump to ICU4C 55 ( released 2015-apr-08) * Timezone fixes, translation fixes, bug/performance fixes. * Speed improvements in date formatting * ICU4C 55 changelog: http://site.icu-project.org/download/55 * CLDR 27 changelog: http://cldr.unicode.org/index/downloads/cldr-27 * Retarget the file exclusions from ICU4C 54 to ICU4C 55 * (improves on-disk footprint on some platforms) Fixes: nodejs/node-v0.x-archive#25855 Backport from nodejs/node: > Originally-Fixes: #2292 > Original-PR-URL: #2293 PR-URL: nodejs/node-v0.x-archive#25856 Reviewed-By: João Reis <reis@janeasystems.com> Reviewed-By: James Snell <jasnell@gmail.com>
1 parent 9a6f1ce commit 15030f2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

configure

+3-3
Original file line numberDiff line numberDiff line change
@@ -748,9 +748,9 @@ def glob_to_var(dir_base, dir_sub):
748748
def configure_intl(o):
749749
icus = [
750750
{
751-
'url': 'http://download.icu-project.org/files/icu4c/54.1/icu4c-54_1-src.zip',
752-
# from https://ssl.icu-project.org/files/icu4c/54.1/icu4c-src-54_1.md5:
753-
'md5': '6b89d60e2f0e140898ae4d7f72323bca',
751+
'url': 'http://download.icu-project.org/files/icu4c/55.1/icu4c-55_1-src.zip',
752+
# from https://ssl.icu-project.org/files/icu4c/55.1/icu4c-src-55_1.md5:
753+
'md5': '4cddf1e1d47622fdd9de2cd7bb5001fd',
754754
},
755755
]
756756
def icu_download(path):

tools/icu/icu-generic.gyp

+4-4
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@
111111
'<@(icu_src_i18n)'
112112
],
113113
'conditions': [
114-
[ 'icu_ver_major == 54', { 'sources!': [
115-
## Strip out the following for ICU 54 only.
114+
[ 'icu_ver_major == 55', { 'sources!': [
115+
## Strip out the following for ICU 55 only.
116116
## add more conditions in the future?
117117
## if your compiler can dead-strip, this will
118118
## make ZERO difference to binary size.
@@ -369,8 +369,8 @@
369369
'<@(icu_src_common)',
370370
],
371371
'conditions': [
372-
[ 'icu_ver_major == 54', { 'sources!': [
373-
## Strip out the following for ICU 54 only.
372+
[ 'icu_ver_major == 55', { 'sources!': [
373+
## Strip out the following for ICU 55 only.
374374
## add more conditions in the future?
375375
## if your compiler can dead-strip, this will
376376
## make ZERO difference to binary size.

0 commit comments

Comments
 (0)