diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2019-04-18 17:59:14 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-04-23 23:30:20 +0100 |
| commit | 1bba6502c1b07dbfb1c802f19a47f6e0f83d893e (patch) | |
| tree | 27b46c308c90eb65f591eb95b65a2440f0253920 /meta/recipes-support/icu/icu_64.1.bb | |
| parent | 9fe634f79745bd9a256f4210599583c0327b7c38 (diff) | |
| download | poky-1bba6502c1b07dbfb1c802f19a47f6e0f83d893e.tar.gz | |
icu: update to 64.1
License-update: copyright years changed.
Drop upstreamed/backported patches.
Add a patch to fix big endian build failure.
(From OE-Core rev: 929d37831624fce84580466c4408217c766410f0)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/icu/icu_64.1.bb')
| -rw-r--r-- | meta/recipes-support/icu/icu_64.1.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-support/icu/icu_64.1.bb b/meta/recipes-support/icu/icu_64.1.bb new file mode 100644 index 0000000000..9a5f8a3b09 --- /dev/null +++ b/meta/recipes-support/icu/icu_64.1.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | require icu.inc | ||
| 2 | |||
| 3 | LIC_FILES_CHKSUM = "file://../LICENSE;md5=8bc5d32052a96f214cbdd1e53dfc935d" | ||
| 4 | |||
| 5 | def icu_download_version(d): | ||
| 6 | pvsplit = d.getVar('PV').split('.') | ||
| 7 | return pvsplit[0] + "_" + pvsplit[1] | ||
| 8 | |||
| 9 | ICU_PV = "${@icu_download_version(d)}" | ||
| 10 | |||
| 11 | # http://errors.yoctoproject.org/Errors/Details/20486/ | ||
| 12 | ARM_INSTRUCTION_SET_armv4 = "arm" | ||
| 13 | ARM_INSTRUCTION_SET_armv5 = "arm" | ||
| 14 | |||
| 15 | BASE_SRC_URI = "http://download.icu-project.org/files/icu4c/${PV}/icu4c-${ICU_PV}-src.tgz" | ||
| 16 | SRC_URI = "${BASE_SRC_URI} \ | ||
| 17 | file://icu-pkgdata-large-cmd.patch \ | ||
| 18 | file://fix-install-manx.patch \ | ||
| 19 | file://0001-Fix-big-endian-build.patch \ | ||
| 20 | " | ||
| 21 | |||
| 22 | SRC_URI_append_class-target = "\ | ||
| 23 | file://0001-Disable-LDFLAGSICUDT-for-Linux.patch \ | ||
| 24 | " | ||
| 25 | SRC_URI[md5sum] = "f150be2231c13bb45206d79e0242372b" | ||
| 26 | SRC_URI[sha256sum] = "92f1b7b9d51b396679c17f35a2112423361b8da3c1b9de00aa94fd768ae296e6" | ||
| 27 | |||
| 28 | UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)/" | ||
| 29 | UPSTREAM_CHECK_URI = "http://download.icu-project.org/files/icu4c/" | ||
