diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-06-03 12:14:55 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-03 16:53:35 +0100 |
commit | 91d230dfbfd8acaea16978ee75c7a75549ffde86 (patch) | |
tree | 2207a189f121c036719ee42e3047faec1d97e4e9 /meta/recipes-support/icu/icu_57.1.bb | |
parent | 9689cd9a006e0ac3528be3718d0a1bb0950ad5e4 (diff) | |
download | openembedded-core-91d230dfbfd8acaea16978ee75c7a75549ffde86.tar.gz openembedded-core-91d230dfbfd8acaea16978ee75c7a75549ffde86.tar.bz2 openembedded-core-91d230dfbfd8acaea16978ee75c7a75549ffde86.zip |
icu: update to 57.1
Point to the actual license file in the recipe.
Drop icu-release-56-1-flagparser-fix.patch, merged upstream.
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/icu/icu_57.1.bb')
-rw-r--r-- | meta/recipes-support/icu/icu_57.1.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-support/icu/icu_57.1.bb b/meta/recipes-support/icu/icu_57.1.bb new file mode 100644 index 0000000000..90c2b82752 --- /dev/null +++ b/meta/recipes-support/icu/icu_57.1.bb @@ -0,0 +1,28 @@ +require icu.inc + +LIC_FILES_CHKSUM = "file://../LICENSE;md5=787d3b37867445c1cdd6f6167bd0e347" + +def icu_download_version(d): + pvsplit = d.getVar('PV', True).split('.') + return pvsplit[0] + "_" + pvsplit[1] + +ICU_PV = "${@icu_download_version(d)}" + +# http://errors.yoctoproject.org/Errors/Details/20486/ +ARM_INSTRUCTION_SET_armv4 = "arm" +ARM_INSTRUCTION_SET_armv5 = "arm" + +BASE_SRC_URI = "http://download.icu-project.org/files/icu4c/${PV}/icu4c-${ICU_PV}-src.tgz" +SRC_URI = "${BASE_SRC_URI} \ + file://icu-pkgdata-large-cmd.patch \ + file://fix-install-manx.patch \ + " + +SRC_URI_append_class-target = "\ + file://0001-Disable-LDFLAGSICUDT-for-Linux.patch \ + " +SRC_URI[md5sum] = "976734806026a4ef8bdd17937c8898b9" +SRC_URI[sha256sum] = "ff8c67cb65949b1e7808f2359f2b80f722697048e90e7cfc382ec1fe229e9581" + +UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)/" +UPSTREAM_CHECK_URI = "http://download.icu-project.org/files/icu4c/" |