All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Kanavin <alexander.kanavin@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 01/18] icu: update to 58.1
Date: Mon, 28 Nov 2016 15:34:12 +0200	[thread overview]
Message-ID: <c5f189e17c96e6413d3e96a29f39c3440a410af2.1480333940.git.alexander.kanavin@linux.intel.com> (raw)
In-Reply-To: <cover.1480333940.git.alexander.kanavin@linux.intel.com>
In-Reply-To: <cover.1480333940.git.alexander.kanavin@linux.intel.com>

The copyright for the software has been transferred to Unicode Inc from IBM,
but the terms are same.

libiculx and libicule are no longer produced as they depend on an external
package icu-le-hb (previous versions had an option of using an internal
implementation which now has been dropped). I have verified that icu
dependencies in oe-core and meta-oe still build.

Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
---
 meta/recipes-support/icu/icu.inc                      | 12 +++++++++---
 meta/recipes-support/icu/{icu_57.1.bb => icu_58.1.bb} |  6 +++---
 2 files changed, 12 insertions(+), 6 deletions(-)
 rename meta/recipes-support/icu/{icu_57.1.bb => icu_58.1.bb} (77%)

diff --git a/meta/recipes-support/icu/icu.inc b/meta/recipes-support/icu/icu.inc
index cc6f222..f3dc1e0 100644
--- a/meta/recipes-support/icu/icu.inc
+++ b/meta/recipes-support/icu/icu.inc
@@ -26,6 +26,14 @@ EXTRA_OECONF = "--with-cross-build=${STAGING_ICU_DIR_NATIVE}"
 EXTRA_OECONF_class-native = ""
 EXTRA_OECONF_class-nativesdk = "--with-cross-build=${STAGING_ICU_DIR_NATIVE}"
 
+
+# strtod_l() is not supported by musl; also xlocale.h is missing
+# It is not possible to disable its use via configure switches or env vars
+# so monkey patching is needed.
+do_configure_prepend_libc-musl () {
+    sed -i -e 's,DU_HAVE_STRTOD_L=1,DU_HAVE_STRTOD_L=0,' ${S}/configure.ac
+}
+
 PREPROCESS_RELOCATE_DIRS = "${datadir}/${BPN}/${PV}"
 do_install_append_class-native() {
 	mkdir -p ${D}/${STAGING_ICU_DIR_NATIVE}/config
@@ -36,15 +44,13 @@ do_install_append_class-native() {
 	cp -r ${B}/tools ${D}/${STAGING_ICU_DIR_NATIVE}
 }
 
-PACKAGES =+ "libicudata libicuuc libicui18n libicule libiculx libicutu libicuio"
+PACKAGES =+ "libicudata libicuuc libicui18n libicutu libicuio"
 
 FILES_${PN}-dev += "${libdir}/${BPN}/"
 
 FILES_libicudata = "${libdir}/libicudata.so.*"
 FILES_libicuuc = "${libdir}/libicuuc.so.*"
 FILES_libicui18n = "${libdir}/libicui18n.so.*"
-FILES_libicule = "${libdir}/libicule.so.*"
-FILES_libiculx = "${libdir}/libiculx.so.*"
 FILES_libicutu = "${libdir}/libicutu.so.*"
 FILES_libicuio = "${libdir}/libicuio.so.*"
 
diff --git a/meta/recipes-support/icu/icu_57.1.bb b/meta/recipes-support/icu/icu_58.1.bb
similarity index 77%
rename from meta/recipes-support/icu/icu_57.1.bb
rename to meta/recipes-support/icu/icu_58.1.bb
index 90c2b82..cc7c947 100644
--- a/meta/recipes-support/icu/icu_57.1.bb
+++ b/meta/recipes-support/icu/icu_58.1.bb
@@ -1,6 +1,6 @@
 require icu.inc
 
-LIC_FILES_CHKSUM = "file://../LICENSE;md5=787d3b37867445c1cdd6f6167bd0e347"
+LIC_FILES_CHKSUM = "file://../LICENSE;md5=1b3b75c1777cd49ad5c6a24cd338cfc9"
 
 def icu_download_version(d):
     pvsplit = d.getVar('PV', True).split('.')
@@ -21,8 +21,8 @@ SRC_URI = "${BASE_SRC_URI} \
 SRC_URI_append_class-target = "\
            file://0001-Disable-LDFLAGSICUDT-for-Linux.patch \
           "
-SRC_URI[md5sum] = "976734806026a4ef8bdd17937c8898b9"
-SRC_URI[sha256sum] = "ff8c67cb65949b1e7808f2359f2b80f722697048e90e7cfc382ec1fe229e9581"
+SRC_URI[md5sum] = "1901302aaff1c1633ef81862663d2917"
+SRC_URI[sha256sum] = "0eb46ba3746a9c2092c8ad347a29b1a1b4941144772d13a88667a7b11ea30309"
 
 UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)/"
 UPSTREAM_CHECK_URI = "http://download.icu-project.org/files/icu4c/"
-- 
2.10.2



  reply	other threads:[~2016-11-28 13:37 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-28 13:34 [PATCH 00/18] Recipe version updates Alexander Kanavin
2016-11-28 13:34 ` Alexander Kanavin [this message]
2016-11-28 13:34 ` [PATCH 02/18] sysprof: update to 3.22.2 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 03/18] btrfs-tools: update to 4.8.4 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 04/18] ca-certificates: upgrade to 20161102 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 05/18] lighttpd: upgrade to 1.4.43 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 06/18] cmake: update to 3.7.0 Alexander Kanavin
2016-11-28 23:24   ` Khem Raj
2016-11-29 14:01     ` Alexander Kanavin
2016-11-29 17:20       ` Khem Raj
2016-11-28 13:34 ` [PATCH 07/18] gnome-desktop3: update to 3.22.2 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 08/18] upstream-version-is-even.bbclass: ensure that the full version is matched Alexander Kanavin
2016-11-28 13:34 ` [PATCH 09/18] gnutls: update to 3.5.6 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 10/18] gobject-introspection: update to 1.50.0 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 11/18] iso-codes: update to 3.71 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 12/18] msmtp: update to 1.6.6 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 13/18] npth: update to 1.3 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 14/18] vala: update to 0.34.3 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 15/18] rng-tools: use SOURCEFORGE_MIRROR in SRC_URI Alexander Kanavin
2016-11-28 13:34 ` [PATCH 16/18] webkitgtk: update to 2.14.2 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 17/18] epiphany: update to 3.22.3 Alexander Kanavin
2016-11-28 13:34 ` [PATCH 18/18] ffmpeg: update to 3.2.1 Alexander Kanavin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c5f189e17c96e6413d3e96a29f39c3440a410af2.1480333940.git.alexander.kanavin@linux.intel.com \
    --to=alexander.kanavin@linux.intel.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.