Openembedded Core Discussions
 help / color / mirror / Atom feed
* [2.2][PATCH 0/7] misc recipe updates
@ 2016-04-15 23:59 Andre McCurdy
  2016-04-15 23:59 ` [2.2][PATCH 1/7] sqlite3: update 3.11.0 -> 3.11.1 Andre McCurdy
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Andre McCurdy @ 2016-04-15 23:59 UTC (permalink / raw)
  To: openembedded-core

In anticipation of master being opened up for recipe updates...

Although sqlite 3.11.1 is no longer the latest version, it contains a
small set of minor fixes for 3.11.0, so may be useful for people who
want to cherry-pick into OE 2.1.

Andre McCurdy (7):
  sqlite3: update 3.11.0 -> 3.11.1
  pixman: update 0.32.8 -> 0.34.0
  gnutls: update 3.4.9 -> 3.4.10
  gnutls: update 3.4.10 -> 3.4.11
  harfbuzz: update 1.2.3 -> 1.2.4
  harfbuzz: update 1.2.4 -> 1.2.5
  harfbuzz: update 1.2.5 -> 1.2.6

 .../{harfbuzz_1.2.3.bb => harfbuzz_1.2.6.bb}       |   4 +-
 ...lated-workarounds-in-cpu-features-detecti.patch | 144 ---------------------
 ...0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch |  65 ----------
 .../xorg-lib/pixman/mips-export-revert.patch       |  22 ----
 .../{pixman_0.32.8.bb => pixman_0.34.0.bb}         |   7 +-
 .../gnutls/{gnutls_3.4.9.bb => gnutls_3.4.11.bb}   |   4 +-
 .../{sqlite3_3.11.0.bb => sqlite3_3.11.1.bb}       |   4 +-
 7 files changed, 8 insertions(+), 242 deletions(-)
 rename meta/recipes-graphics/harfbuzz/{harfbuzz_1.2.3.bb => harfbuzz_1.2.6.bb} (88%)
 delete mode 100644 meta/recipes-graphics/xorg-lib/pixman/0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch
 delete mode 100644 meta/recipes-graphics/xorg-lib/pixman/0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch
 delete mode 100644 meta/recipes-graphics/xorg-lib/pixman/mips-export-revert.patch
 rename meta/recipes-graphics/xorg-lib/{pixman_0.32.8.bb => pixman_0.34.0.bb} (80%)
 rename meta/recipes-support/gnutls/{gnutls_3.4.9.bb => gnutls_3.4.11.bb} (60%)
 rename meta/recipes-support/sqlite/{sqlite3_3.11.0.bb => sqlite3_3.11.1.bb} (64%)

-- 
1.9.1



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [2.2][PATCH 1/7] sqlite3: update 3.11.0 -> 3.11.1
  2016-04-15 23:59 [2.2][PATCH 0/7] misc recipe updates Andre McCurdy
@ 2016-04-15 23:59 ` Andre McCurdy
  2016-04-15 23:59 ` [2.2][PATCH 2/7] pixman: update 0.32.8 -> 0.34.0 Andre McCurdy
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Andre McCurdy @ 2016-04-15 23:59 UTC (permalink / raw)
  To: openembedded-core

SQLite Release 3.11.1 On 2016-03-03

 - Improvements to the Makefiles and build scripts used by VisualStudio.
 - Fix an FTS5 issue in which the 'optimize' command could cause index corruption.
 - Fix a buffer overread that might occur if FTS5 is used to query a corrupt database file.
 - Increase the maximum "scope" value for the spellfix1 extension from 6 to 30.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-support/sqlite/{sqlite3_3.11.0.bb => sqlite3_3.11.1.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/sqlite/{sqlite3_3.11.0.bb => sqlite3_3.11.1.bb} (64%)

diff --git a/meta/recipes-support/sqlite/sqlite3_3.11.0.bb b/meta/recipes-support/sqlite/sqlite3_3.11.1.bb
similarity index 64%
rename from meta/recipes-support/sqlite/sqlite3_3.11.0.bb
rename to meta/recipes-support/sqlite/sqlite3_3.11.1.bb
index 992d20c..06f54aa 100644
--- a/meta/recipes-support/sqlite/sqlite3_3.11.0.bb
+++ b/meta/recipes-support/sqlite/sqlite3_3.11.1.bb
@@ -7,5 +7,5 @@ SRC_URI = "http://www.sqlite.org/2016/sqlite-autoconf-${SQLITE_PV}.tar.gz \
            file://fix-disable-static-shell.patch \
 "
 
-SRC_URI[md5sum] = "a6cdc3e0a6e5087d620037ae0c48720d"
-SRC_URI[sha256sum] = "508d4dcbcf7a7181e95c717a1dc4ae3c0880b3d593be0c4b40abb6c3a0e201fb"
+SRC_URI[md5sum] = "c66b4e9d5ca6cfd15471b5b03fc44537"
+SRC_URI[sha256sum] = "533ff1d0271c2e666f01591271cef01a31648563affa0c95e80ef735077d4377"
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [2.2][PATCH 2/7] pixman: update 0.32.8 -> 0.34.0
  2016-04-15 23:59 [2.2][PATCH 0/7] misc recipe updates Andre McCurdy
  2016-04-15 23:59 ` [2.2][PATCH 1/7] sqlite3: update 3.11.0 -> 3.11.1 Andre McCurdy
@ 2016-04-15 23:59 ` Andre McCurdy
  2016-04-15 23:59 ` [2.2][PATCH 3/7] gnutls: update 3.4.9 -> 3.4.10 Andre McCurdy
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Andre McCurdy @ 2016-04-15 23:59 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 ...lated-workarounds-in-cpu-features-detecti.patch | 144 ---------------------
 ...0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch |  65 ----------
 .../xorg-lib/pixman/mips-export-revert.patch       |  22 ----
 .../{pixman_0.32.8.bb => pixman_0.34.0.bb}         |   7 +-
 4 files changed, 2 insertions(+), 236 deletions(-)
 delete mode 100644 meta/recipes-graphics/xorg-lib/pixman/0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch
 delete mode 100644 meta/recipes-graphics/xorg-lib/pixman/0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch
 delete mode 100644 meta/recipes-graphics/xorg-lib/pixman/mips-export-revert.patch
 rename meta/recipes-graphics/xorg-lib/{pixman_0.32.8.bb => pixman_0.34.0.bb} (80%)

diff --git a/meta/recipes-graphics/xorg-lib/pixman/0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch b/meta/recipes-graphics/xorg-lib/pixman/0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch
deleted file mode 100644
index 4569dca..0000000
--- a/meta/recipes-graphics/xorg-lib/pixman/0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch
+++ /dev/null
@@ -1,144 +0,0 @@
-From a0f53e1dbb3851bb0f0efcfdbd565b05e4be9cac Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
-Date: Thu, 23 Aug 2012 18:10:57 +0200
-Subject: [PATCH 1/2] ARM: qemu related workarounds in cpu features detection
- code
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-This was ported from meta-oe's patch [1]. The original pixman patch is found
-at [2].
-
-[1] http://cgit.openembedded.org/meta-openembedded/tree/meta-oe/recipes-graphics/xorg-lib/pixman-0.26.2/0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch
-[2] http://lists.freedesktop.org/archives/pixman/2011-January/000906.html
-
-Upstream-Status: Inappropriate [other] qemu fix
-
-Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
----
- pixman/pixman-arm.c |   82 ++++++++++++++++++++++++++++++++++++++++----------
- 1 files changed, 65 insertions(+), 17 deletions(-)
-
-diff --git a/pixman/pixman-arm.c b/pixman/pixman-arm.c
-index 23374e4..d98bda6 100644
---- a/pixman/pixman-arm.c
-+++ b/pixman/pixman-arm.c
-@@ -129,16 +129,35 @@ detect_cpu_features (void)
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <sys/mman.h>
-+#include <sys/utsname.h>
- #include <fcntl.h>
- #include <string.h>
- #include <elf.h>
- 
-+/*
-+ * The whole CPU capabilities detection is a bit ugly: when running in
-+ * userspace qemu, we see /proc/self/auxv from the host system. To make
-+ * everything even worse, the size of each value is 64-bit when running
-+ * on a 64-bit host system. So the data is totally bogus because we expect
-+ * 32-bit values. As AT_PLATFORM value is used as a pointer, it may cause
-+ * segfault (null pointer dereference on x86-64 host). So in order to be
-+ * on a safe side, we require that AT_PLATFORM value is found only once,
-+ * and it has non-zero value (this is still not totally reliable for a big
-+ * endian 64-bit host system running qemu and may theoretically fail).
-+ */
-+#define ARM_HWCAP_VFP 64
-+#define ARM_HWCAP_IWMMXT 512
-+#define ARM_HWCAP_NEON 4096
-+
- static arm_cpu_features_t
- detect_cpu_features (void)
- {
-     arm_cpu_features_t features = 0;
-     Elf32_auxv_t aux;
-     int fd;
-+    uint32_t hwcap = 0;
-+    const char *plat = NULL;
-+    int plat_cnt = 0;
- 
-     fd = open ("/proc/self/auxv", O_RDONLY);
-     if (fd >= 0)
-@@ -147,32 +166,61 @@ detect_cpu_features (void)
- 	{
- 	    if (aux.a_type == AT_HWCAP)
- 	    {
--		uint32_t hwcap = aux.a_un.a_val;
--
--		/* hardcode these values to avoid depending on specific
--		 * versions of the hwcap header, e.g. HWCAP_NEON
--		 */
--		if ((hwcap & 64) != 0)
--		    features |= ARM_VFP;
--		if ((hwcap & 512) != 0)
--		    features |= ARM_IWMMXT;
--		/* this flag is only present on kernel 2.6.29 */
--		if ((hwcap & 4096) != 0)
--		    features |= ARM_NEON;
-+		hwcap = aux.a_un.a_val;
- 	    }
- 	    else if (aux.a_type == AT_PLATFORM)
- 	    {
--		const char *plat = (const char*) aux.a_un.a_val;
--
--		if (strncmp (plat, "v7l", 3) == 0)
-+		plat = (const char*) aux.a_un.a_val;
-+		plat_cnt++;
-+	    }
-+	}
-+	close (fd);
-+	if (plat == NULL || plat_cnt != 1 || *plat != 'v')
-+	{
-+	    /*
-+	     * Something seems to be really wrong, most likely we are
-+	     * running under qemu. Let's use machine type from "uname" for
-+	     * CPU capabilities detection:
-+	     * http://www.mail-archive.com/qemu-devel at nongnu.org/msg22212.html
-+	     */
-+	    struct utsname u;
-+	    hwcap = 0; /* clear hwcap, because it is bogus */
-+	    if (uname (&u) == 0)
-+	    {
-+		if (strcmp (u.machine, "armv7l") == 0)
-+		{
- 		    features |= (ARM_V7 | ARM_V6);
--		else if (strncmp (plat, "v6l", 3) == 0)
-+		    hwcap |= ARM_HWCAP_VFP;  /* qemu is supposed to emulate vfp */
-+		    hwcap |= ARM_HWCAP_NEON; /* qemu is supposed to emulate neon */
-+		}
-+		else if (strcmp (u.machine, "armv6l") == 0)
-+		{
- 		    features |= ARM_V6;
-+		    hwcap |= ARM_HWCAP_VFP;  /* qemu is supposed to emulate vfp */
-+		}
- 	    }
- 	}
--	close (fd);
-+	else if (strncmp (plat, "v7l", 3) == 0)
-+	{
-+	    features |= (ARM_V7 | ARM_V6);
-+	}
-+	else if (strncmp (plat, "v6l", 3) == 0)
-+	{
-+	    features |= ARM_V6;
-+	}
-     }
- 
-+    /* hardcode these values to avoid depending on specific
-+     * versions of the hwcap header, e.g. HWCAP_NEON
-+     */
-+    if ((hwcap & ARM_HWCAP_VFP) != 0)
-+        features |= ARM_VFP;
-+    if ((hwcap & ARM_HWCAP_IWMMXT) != 0)
-+        features |= ARM_IWMMXT;
-+    /* this flag is only present on kernel 2.6.29 */
-+    if ((hwcap & ARM_HWCAP_NEON) != 0)
-+        features |= ARM_NEON;
-+
-     return features;
- }
- 
--- 
-1.7.6.5
-
diff --git a/meta/recipes-graphics/xorg-lib/pixman/0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch b/meta/recipes-graphics/xorg-lib/pixman/0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch
deleted file mode 100644
index 6b7c1e6..0000000
--- a/meta/recipes-graphics/xorg-lib/pixman/0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch
+++ /dev/null
@@ -1,65 +0,0 @@
-From fcd5eb9bd0e8674a6f4987a8fce7dc1ba8f9320c Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Date: Thu, 17 Sep 2015 03:08:36 +0200
-Subject: [PATCH] [v3] test: add a check for FE_DIVBYZERO
-
-Some architectures, such as Microblaze and Nios2, currently do not
-implement FE_DIVBYZERO, even though they have <fenv.h> and
-feenableexcept(). This commit adds a configure.ac check to verify
-whether FE_DIVBYZERO is defined or not, and if not, disables the
-problematic code in test/utils.c.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Signed-off-by: Marek Vasut <marex@denx.de>
-Upstream-Status: Backport [commit 4297e9058]
----
-Changes v1 -> v2:
-
- * Use the ac_cv_have_decl_FE_DIVBYZERO variable, which is
-   automatically set by AC_CHECK_DECL, to decide whether or not
-   HAVE_FEDIVBYZERO should be defined.
-
-Changes v2 -> v3:
-
- * Use action-if-yes of AC_CHECK_DECL as suggested in
-   http://lists.freedesktop.org/archives/pixman/2014-February/003176.html
----
- configure.ac | 5 +++++
- test/utils.c | 2 ++
- 2 files changed, 7 insertions(+)
-
-diff --git a/configure.ac b/configure.ac
-index f93cc30..424bfd3 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -891,6 +891,11 @@ if test x$have_feenableexcept = xyes; then
-    AC_DEFINE(HAVE_FEENABLEEXCEPT, 1, [Whether we have feenableexcept()])
- fi
- 
-+AC_CHECK_DECL([FE_DIVBYZERO],
-+	[AC_DEFINE(HAVE_FEDIVBYZERO, 1, [Whether we have FE_DIVBYZERO])],
-+	[],
-+	[[#include <fenv.h>]])
-+
- AC_CHECK_FUNC(gettimeofday, have_gettimeofday=yes, have_gettimeofday=no)
- AC_CHECK_HEADER(sys/time.h, have_sys_time_h=yes, have_sys_time_h=no)
- if test x$have_gettimeofday = xyes && test x$have_sys_time_h = xyes; then
-diff --git a/test/utils.c b/test/utils.c
-index 222d4d5..8657966 100644
---- a/test/utils.c
-+++ b/test/utils.c
-@@ -966,9 +966,11 @@ enable_divbyzero_exceptions (void)
- {
- #ifdef HAVE_FENV_H
- #ifdef HAVE_FEENABLEEXCEPT
-+#ifdef HAVE_FEDIVBYZERO
-     feenableexcept (FE_DIVBYZERO);
-+#endif
- #endif
- #endif
- }
- 
- void
--- 
-2.1.4
-
diff --git a/meta/recipes-graphics/xorg-lib/pixman/mips-export-revert.patch b/meta/recipes-graphics/xorg-lib/pixman/mips-export-revert.patch
deleted file mode 100644
index 14a5fd2..0000000
--- a/meta/recipes-graphics/xorg-lib/pixman/mips-export-revert.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Revert a commit in pixman 0.32.6 which breaks compliation on MIPS machines with
-errors such as:
-
-pixman-0.32.6/pixman/pixman-mips-dspr2-asm.S:4267:
-Error: invalid operands `mflo $14,$ac3'
-
-Upstream-Status: Pending
-Signed-off-by: Ross Burton <ross.burton@intel.com>
-
---- b/pixman/pixman-mips-dspr2-asm.h
-+++ a/pixman/pixman-mips-dspr2-asm.h
-@@ -72,10 +72,7 @@
- #define LEAF_MIPS32R2(symbol)                           \
-                 .globl  symbol;                         \
-                 .align  2;                              \
--#ifdef __ELF__
--                .hidden symbol;                         \
-                 .type   symbol, @function;              \
--#endif
-                 .ent    symbol, 0;                      \
- symbol:         .frame  sp, 0, ra;                      \
-                 .set    push;                           \
diff --git a/meta/recipes-graphics/xorg-lib/pixman_0.32.8.bb b/meta/recipes-graphics/xorg-lib/pixman_0.34.0.bb
similarity index 80%
rename from meta/recipes-graphics/xorg-lib/pixman_0.32.8.bb
rename to meta/recipes-graphics/xorg-lib/pixman_0.34.0.bb
index 553ce36..2915265 100644
--- a/meta/recipes-graphics/xorg-lib/pixman_0.32.8.bb
+++ b/meta/recipes-graphics/xorg-lib/pixman_0.34.0.bb
@@ -30,13 +30,10 @@ EXTRA_OECONF_class-native = "--disable-gtk"
 EXTRA_OECONF_class-nativesdk = "--disable-gtk"
 
 SRC_URI += "\
-            file://0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch \
-            file://mips-export-revert.patch \
 	    file://asm_include.patch \
-	    file://0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch \
 "
 
-SRC_URI[md5sum] = "18d6b62abdb7bc0f8e6b0ddf48986b2c"
-SRC_URI[sha256sum] = "5c63dbb3523fc4d86ed4186677815918a941b7cb390d5eec4f55cb5d66b59fb1"
+SRC_URI[md5sum] = "002a4fcb644ddfcb4b0e4191576a0d59"
+SRC_URI[sha256sum] = "39ba3438f3d17c464b0cb8be006dacbca0ab5aee97ebde69fec7ecdbf85794a0"
 
 REQUIRED_DISTRO_FEATURES = ""
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [2.2][PATCH 3/7] gnutls: update 3.4.9 -> 3.4.10
  2016-04-15 23:59 [2.2][PATCH 0/7] misc recipe updates Andre McCurdy
  2016-04-15 23:59 ` [2.2][PATCH 1/7] sqlite3: update 3.11.0 -> 3.11.1 Andre McCurdy
  2016-04-15 23:59 ` [2.2][PATCH 2/7] pixman: update 0.32.8 -> 0.34.0 Andre McCurdy
@ 2016-04-15 23:59 ` Andre McCurdy
  2016-04-15 23:59 ` [2.2][PATCH 4/7] gnutls: update 3.4.10 -> 3.4.11 Andre McCurdy
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Andre McCurdy @ 2016-04-15 23:59 UTC (permalink / raw)
  To: openembedded-core

* Version 3.4.10 (released 2016-03-03)

** libgnutls: Eliminated issues preventing buffers more than 2^32 bytes
   to be used with hashing functions.

** libgnutls: Corrected leaks and other issues in gnutls_x509_crt_list_import().

** libgnutls: Fixes in DSA key handling for PKCS #11. Report and patches
   by Jan Vcelak.

** libgnutls: Several fixes to prevent relying on undefined behavior of C
   (found with libubsan).

** API and ABI modifications:
No changes since last version.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-support/gnutls/{gnutls_3.4.9.bb => gnutls_3.4.10.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/gnutls/{gnutls_3.4.9.bb => gnutls_3.4.10.bb} (60%)

diff --git a/meta/recipes-support/gnutls/gnutls_3.4.9.bb b/meta/recipes-support/gnutls/gnutls_3.4.10.bb
similarity index 60%
rename from meta/recipes-support/gnutls/gnutls_3.4.9.bb
rename to meta/recipes-support/gnutls/gnutls_3.4.10.bb
index b652f6f..73f1fc0 100644
--- a/meta/recipes-support/gnutls/gnutls_3.4.9.bb
+++ b/meta/recipes-support/gnutls/gnutls_3.4.10.bb
@@ -4,5 +4,5 @@ SRC_URI += "file://correct_rpl_gettimeofday_signature.patch \
             file://0001-configure.ac-fix-sed-command.patch \
             file://use-pkg-config-to-locate-zlib.patch \
            "
-SRC_URI[md5sum] = "1b3b6d55d0e2b6d01a54f53129f1da9b"
-SRC_URI[sha256sum] = "48594fadba33d450f796ec69526cf2bce6ff9bc3dc90fbd7bf38dc3601f57c3f"
+SRC_URI[md5sum] = "fe9a0dc5adf205122f01a3e7dac5f8dd"
+SRC_URI[sha256sum] = "6a32c2b4acbd33ff7eefcbd1357009da04c94c60146ef61320b6c076b1bdf59f"
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [2.2][PATCH 4/7] gnutls: update 3.4.10 -> 3.4.11
  2016-04-15 23:59 [2.2][PATCH 0/7] misc recipe updates Andre McCurdy
                   ` (2 preceding siblings ...)
  2016-04-15 23:59 ` [2.2][PATCH 3/7] gnutls: update 3.4.9 -> 3.4.10 Andre McCurdy
@ 2016-04-15 23:59 ` Andre McCurdy
  2016-04-15 23:59 ` [2.2][PATCH 5/7] harfbuzz: update 1.2.3 -> 1.2.4 Andre McCurdy
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Andre McCurdy @ 2016-04-15 23:59 UTC (permalink / raw)
  To: openembedded-core

* Version 3.4.11 (released 2016-04-11)

** libgnutls: Fixes in gnutls_record_get/set_state() with DTLS. Reported
   by Fridolin Pokorny.

** libgnutls: Fixes in DSA key generation under PKCS #11. Report and patches
   by Jan Vcelak.

** libgnutls: Corrected behavior of ALPN extension parsing during session
   resumption. Report and patches by Yuriy M. Kaminskiy.

** libgnutls: Corrected regression (since 3.4.0) in gnutls_server_name_set()
   which caused it not to accept non-null-terminated hostnames. Reported
   by Tim Ruehsen.

** libgnutls: Corrected printing of the IP Adress name constraints.

** ocsptool: use HTTP/1.0 for requests. This avoids issue with servers
   serving chunk encoding which ocsptool doesn't support. Reported by Thomas
   Klute.

** certtool: do not require a CA for OCSP signing tag. This follows the
   recommendations in RFC6960 in 4.2.2.2 which allow a CA to delegate OCSP
   signing to another certificate without requiring it to be a CA. Reported
   by Thomas Klute.

** API and ABI modifications:
No changes since last version.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-support/gnutls/{gnutls_3.4.10.bb => gnutls_3.4.11.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/gnutls/{gnutls_3.4.10.bb => gnutls_3.4.11.bb} (60%)

diff --git a/meta/recipes-support/gnutls/gnutls_3.4.10.bb b/meta/recipes-support/gnutls/gnutls_3.4.11.bb
similarity index 60%
rename from meta/recipes-support/gnutls/gnutls_3.4.10.bb
rename to meta/recipes-support/gnutls/gnutls_3.4.11.bb
index 73f1fc0..4203548 100644
--- a/meta/recipes-support/gnutls/gnutls_3.4.10.bb
+++ b/meta/recipes-support/gnutls/gnutls_3.4.11.bb
@@ -4,5 +4,5 @@ SRC_URI += "file://correct_rpl_gettimeofday_signature.patch \
             file://0001-configure.ac-fix-sed-command.patch \
             file://use-pkg-config-to-locate-zlib.patch \
            "
-SRC_URI[md5sum] = "fe9a0dc5adf205122f01a3e7dac5f8dd"
-SRC_URI[sha256sum] = "6a32c2b4acbd33ff7eefcbd1357009da04c94c60146ef61320b6c076b1bdf59f"
+SRC_URI[md5sum] = "4da148b5a0048aaac4961e2d9ba95798"
+SRC_URI[sha256sum] = "70ef9c9f95822d363036c6e6b5479750e5b7fc34f50e750c3464a98ec65a9ab8"
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [2.2][PATCH 5/7] harfbuzz: update 1.2.3 -> 1.2.4
  2016-04-15 23:59 [2.2][PATCH 0/7] misc recipe updates Andre McCurdy
                   ` (3 preceding siblings ...)
  2016-04-15 23:59 ` [2.2][PATCH 4/7] gnutls: update 3.4.10 -> 3.4.11 Andre McCurdy
@ 2016-04-15 23:59 ` Andre McCurdy
  2016-04-15 23:59 ` [2.2][PATCH 6/7] harfbuzz: update 1.2.4 -> 1.2.5 Andre McCurdy
  2016-04-15 23:59 ` [2.2][PATCH 7/7] harfbuzz: update 1.2.5 -> 1.2.6 Andre McCurdy
  6 siblings, 0 replies; 8+ messages in thread
From: Andre McCurdy @ 2016-04-15 23:59 UTC (permalink / raw)
  To: openembedded-core

Overview of changes leading to 1.2.4
Thursday, March 17, 2016
====================================

- Synthesize GDEF glyph class for any glyph that does not have one in GDEF.
  I really hope we don't discover broken fonts that shape badly with this
  change.
- Misc build and other minor fixes.
- API changes:
  - Added HB_NDEBUG.  It's fine for production systems to define this to
    disable high-overhead debugging checks.  However, I also reduced the
    overhead of those checks, so it's a non-issue right now.  You can
    forget it.  Just not defining anything at all is fine.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 .../harfbuzz/{harfbuzz_1.2.3.bb => harfbuzz_1.2.4.bb}                 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/harfbuzz/{harfbuzz_1.2.3.bb => harfbuzz_1.2.4.bb} (88%)

diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.3.bb b/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.4.bb
similarity index 88%
rename from meta/recipes-graphics/harfbuzz/harfbuzz_1.2.3.bb
rename to meta/recipes-graphics/harfbuzz/harfbuzz_1.2.4.bb
index cfe885f..27001ec 100644
--- a/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.3.bb
+++ b/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.4.bb
@@ -12,8 +12,8 @@ DEPENDS = "glib-2.0 cairo fontconfig freetype"
 
 SRC_URI = "http://www.freedesktop.org/software/harfbuzz/release/${BP}.tar.bz2"
 
-SRC_URI[md5sum] = "da8d97e262e6ef8288e1ae76369421bd"
-SRC_URI[sha256sum] = "8216d2404aaab7fde87be0365a90d64aa6c55928e104557cfcb37b54a096cb8c"
+SRC_URI[md5sum] = "3898b890f13dce5ac7a01c5446021729"
+SRC_URI[sha256sum] = "449dbdf12a8f94aedbdefaac831d8b1bf45e7decaa9192eaa4f74104ef9de491"
 
 inherit autotools pkgconfig lib_package
 
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [2.2][PATCH 6/7] harfbuzz: update 1.2.4 -> 1.2.5
  2016-04-15 23:59 [2.2][PATCH 0/7] misc recipe updates Andre McCurdy
                   ` (4 preceding siblings ...)
  2016-04-15 23:59 ` [2.2][PATCH 5/7] harfbuzz: update 1.2.3 -> 1.2.4 Andre McCurdy
@ 2016-04-15 23:59 ` Andre McCurdy
  2016-04-15 23:59 ` [2.2][PATCH 7/7] harfbuzz: update 1.2.5 -> 1.2.6 Andre McCurdy
  6 siblings, 0 replies; 8+ messages in thread
From: Andre McCurdy @ 2016-04-15 23:59 UTC (permalink / raw)
  To: openembedded-core

Overview of changes leading to 1.2.5
Monday, April 4, 2016
====================================

- Fix GDEF mark-filtering-set, which was broken in 1.2.3.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 .../harfbuzz/{harfbuzz_1.2.4.bb => harfbuzz_1.2.5.bb}                 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/harfbuzz/{harfbuzz_1.2.4.bb => harfbuzz_1.2.5.bb} (88%)

diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.4.bb b/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.5.bb
similarity index 88%
rename from meta/recipes-graphics/harfbuzz/harfbuzz_1.2.4.bb
rename to meta/recipes-graphics/harfbuzz/harfbuzz_1.2.5.bb
index 27001ec..078b3e5 100644
--- a/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.4.bb
+++ b/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.5.bb
@@ -12,8 +12,8 @@ DEPENDS = "glib-2.0 cairo fontconfig freetype"
 
 SRC_URI = "http://www.freedesktop.org/software/harfbuzz/release/${BP}.tar.bz2"
 
-SRC_URI[md5sum] = "3898b890f13dce5ac7a01c5446021729"
-SRC_URI[sha256sum] = "449dbdf12a8f94aedbdefaac831d8b1bf45e7decaa9192eaa4f74104ef9de491"
+SRC_URI[md5sum] = "cf1eca3bdcdcfb818c7ebb4644b4cc0d"
+SRC_URI[sha256sum] = "cfca0b6ba42c36a1f7b03fffb926dc4d137be2aa2a2ad8930259072e43a347d5"
 
 inherit autotools pkgconfig lib_package
 
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [2.2][PATCH 7/7] harfbuzz: update 1.2.5 -> 1.2.6
  2016-04-15 23:59 [2.2][PATCH 0/7] misc recipe updates Andre McCurdy
                   ` (5 preceding siblings ...)
  2016-04-15 23:59 ` [2.2][PATCH 6/7] harfbuzz: update 1.2.4 -> 1.2.5 Andre McCurdy
@ 2016-04-15 23:59 ` Andre McCurdy
  6 siblings, 0 replies; 8+ messages in thread
From: Andre McCurdy @ 2016-04-15 23:59 UTC (permalink / raw)
  To: openembedded-core

Overview of changes leading to 1.2.6
Friday, April 8, 2016
====================================

- Blacklist GDEF table of another set of Times New Roman (Bold) Italic.
- DirectWrite backend improvements.  Note: DirectWrite backend is
  exclusively for our internal testing and should NOT be used in any
  production system whatsoever.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 .../harfbuzz/{harfbuzz_1.2.5.bb => harfbuzz_1.2.6.bb}                 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/harfbuzz/{harfbuzz_1.2.5.bb => harfbuzz_1.2.6.bb} (88%)

diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.5.bb b/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.6.bb
similarity index 88%
rename from meta/recipes-graphics/harfbuzz/harfbuzz_1.2.5.bb
rename to meta/recipes-graphics/harfbuzz/harfbuzz_1.2.6.bb
index 078b3e5..e80b194 100644
--- a/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.5.bb
+++ b/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.6.bb
@@ -12,8 +12,8 @@ DEPENDS = "glib-2.0 cairo fontconfig freetype"
 
 SRC_URI = "http://www.freedesktop.org/software/harfbuzz/release/${BP}.tar.bz2"
 
-SRC_URI[md5sum] = "cf1eca3bdcdcfb818c7ebb4644b4cc0d"
-SRC_URI[sha256sum] = "cfca0b6ba42c36a1f7b03fffb926dc4d137be2aa2a2ad8930259072e43a347d5"
+SRC_URI[md5sum] = "9f4b6831c86135faef011e991f59f77f"
+SRC_URI[sha256sum] = "7537bacccb3524df0cd2a4d5bc7e168bcc10e8171e0324f3cd522583868192c1"
 
 inherit autotools pkgconfig lib_package
 
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-04-16  0:00 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-15 23:59 [2.2][PATCH 0/7] misc recipe updates Andre McCurdy
2016-04-15 23:59 ` [2.2][PATCH 1/7] sqlite3: update 3.11.0 -> 3.11.1 Andre McCurdy
2016-04-15 23:59 ` [2.2][PATCH 2/7] pixman: update 0.32.8 -> 0.34.0 Andre McCurdy
2016-04-15 23:59 ` [2.2][PATCH 3/7] gnutls: update 3.4.9 -> 3.4.10 Andre McCurdy
2016-04-15 23:59 ` [2.2][PATCH 4/7] gnutls: update 3.4.10 -> 3.4.11 Andre McCurdy
2016-04-15 23:59 ` [2.2][PATCH 5/7] harfbuzz: update 1.2.3 -> 1.2.4 Andre McCurdy
2016-04-15 23:59 ` [2.2][PATCH 6/7] harfbuzz: update 1.2.4 -> 1.2.5 Andre McCurdy
2016-04-15 23:59 ` [2.2][PATCH 7/7] harfbuzz: update 1.2.5 -> 1.2.6 Andre McCurdy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox