All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/10] mc: Upgrade 4.8.17 -> 4.8.18
@ 2016-10-23 11:29 Maxin B. John
  2016-10-23 11:29 ` [PATCH 02/10] neon: Upgrade 0.30.1 -> 0.30.2 Maxin B. John
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Maxin B. John @ 2016-10-23 11:29 UTC (permalink / raw)
  To: openembedded-core

New release contains bug fixes and refactoring of widget subsystem

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-extended/mc/{mc_4.8.17.bb => mc_4.8.18.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/mc/{mc_4.8.17.bb => mc_4.8.18.bb} (93%)

diff --git a/meta/recipes-extended/mc/mc_4.8.17.bb b/meta/recipes-extended/mc/mc_4.8.18.bb
similarity index 93%
rename from meta/recipes-extended/mc/mc_4.8.17.bb
rename to meta/recipes-extended/mc/mc_4.8.18.bb
index a5c4ece..78abb27 100644
--- a/meta/recipes-extended/mc/mc_4.8.17.bb
+++ b/meta/recipes-extended/mc/mc_4.8.18.bb
@@ -8,8 +8,8 @@ RDEPENDS_${PN} = "ncurses-terminfo"
 
 SRC_URI = "http://www.midnight-commander.org/downloads/${BPN}-${PV}.tar.bz2 \
            "
-SRC_URI[md5sum] = "6e9c07066e40af06b263a13fad17a07f"
-SRC_URI[sha256sum] = "66d0cb37baaed8ef930f8ad25a634adad4f264eb61820893920ac87b9dfb783b"
+SRC_URI[md5sum] = "cc56f0c9abd63c4caa3636bba3a08bfb"
+SRC_URI[sha256sum] = "5b591e10dcbea95233434da40cdad4663d360229adf89826576c319667c103cb"
 
 inherit autotools gettext pkgconfig
 
-- 
2.4.0



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

* [PATCH 02/10] neon: Upgrade 0.30.1 -> 0.30.2
  2016-10-23 11:29 [PATCH 01/10] mc: Upgrade 4.8.17 -> 4.8.18 Maxin B. John
@ 2016-10-23 11:29 ` Maxin B. John
  2016-10-23 11:29 ` [PATCH 03/10] mmc-utils: Upgrade to latest git version Maxin B. John
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Maxin B. John @ 2016-10-23 11:29 UTC (permalink / raw)
  To: openembedded-core

Remove "gnutls_4.3_fixup.patch" since fix for PKCS#11 support under
GnuTLS 3.x is included in version 0.30.2

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 .../neon/neon/gnutls_4.3_fixup.patch               | 68 ----------------------
 .../neon/{neon_0.30.1.bb => neon_0.30.2.bb}        |  6 +-
 2 files changed, 3 insertions(+), 71 deletions(-)
 delete mode 100644 meta/recipes-support/neon/neon/gnutls_4.3_fixup.patch
 rename meta/recipes-support/neon/{neon_0.30.1.bb => neon_0.30.2.bb} (87%)

diff --git a/meta/recipes-support/neon/neon/gnutls_4.3_fixup.patch b/meta/recipes-support/neon/neon/gnutls_4.3_fixup.patch
deleted file mode 100644
index 459f5e3..0000000
--- a/meta/recipes-support/neon/neon/gnutls_4.3_fixup.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-replace deprecated GnuTLS functions with newer ones if available 
-
-Upstream-Status: Pending
-
-Signed-off-by: Armin Kuster <akuster808@gmail.com>
-
-Index: neon-0.30.1/macros/neon.m4
-===================================================================
---- neon-0.30.1.orig/macros/neon.m4
-+++ neon-0.30.1/macros/neon.m4
-@@ -987,6 +987,10 @@ gnutls)
-                   gnutls_certificate_get_x509_cas \
-                   gnutls_x509_crt_sign2])
- 
-+   # gnutls 4.3 check
-+   AC_CHECK_LIB(gnutls, gnutls_global_init)
-+   AC_CHECK_FUNCS(gnutls_certificate_set_retrieve_function,,)
-+
-    # fail if gnutls_x509_crt_sign2 is not found (it was introduced in 1.2.0, which is required)
-    if test x${ac_cv_func_gnutls_x509_crt_sign2} != xyes; then
-        AC_MSG_ERROR([GnuTLS version predates gnutls_x509_crt_sign2, newer version required (at least 1.2.0)])
-Index: neon-0.30.1/src/ne_gnutls.c
-===================================================================
---- neon-0.30.1.orig/src/ne_gnutls.c
-+++ neon-0.30.1/src/ne_gnutls.c
-@@ -553,7 +553,13 @@ dup_error:
- static int provide_client_cert(gnutls_session_t session,
-                                const gnutls_datum_t *req_ca_rdn, int nreqs,
-                                const gnutls_pk_algorithm_t *sign_algos,
--                               int sign_algos_length, gnutls_retr_st *st)
-+                               int sign_algos_length,
-+#if HAVE_GNUTLS_CERTIFICATE_SET_RETRIEVE_FUNCTION
-+    gnutls_retr2_st* st
-+#else
-+    gnutls_retr_st *st
-+#endif
-+    )
- {
-     ne_session *sess = gnutls_session_get_ptr(session);
-     
-@@ -617,8 +623,11 @@ static int provide_client_cert(gnutls_se
- #endif
-             ) {
-             NE_DEBUG(NE_DBG_SSL, "Supplying client certificate.\n");
--
-+#if HAVE_GNUTLS_CERTIFICATE_SET_RETRIEVE_FUNCTION
-+            st->cert_type = type;
-+#else
-             st->type = type;
-+#endif
-             st->ncerts = 1;
-             st->cert.x509 = &sess->client_cert->cert.subject;
-             st->key.x509 = sess->client_cert->pkey;
-@@ -649,8 +658,14 @@ ne_ssl_context *ne_ssl_context_create(in
-     ne_ssl_context *ctx = ne_calloc(sizeof *ctx);
-     gnutls_certificate_allocate_credentials(&ctx->cred);
-     if (flags == NE_SSL_CTX_CLIENT) {
-+
-+#if HAVE_GNUTLS_CERTIFICATE_SET_RETRIEVE_FUNCTION
-+        gnutls_certificate_set_retrieve_function(ctx->cred,
-+                                                       provide_client_cert);
-+#else
-         gnutls_certificate_client_set_retrieve_function(ctx->cred,
-                                                         provide_client_cert);
-+#endif
-     }
-     gnutls_certificate_set_verify_flags(ctx->cred, 
-                                         GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT);
diff --git a/meta/recipes-support/neon/neon_0.30.1.bb b/meta/recipes-support/neon/neon_0.30.2.bb
similarity index 87%
rename from meta/recipes-support/neon/neon_0.30.1.bb
rename to meta/recipes-support/neon/neon_0.30.2.bb
index b6cfd50..5792c56 100644
--- a/meta/recipes-support/neon/neon_0.30.1.bb
+++ b/meta/recipes-support/neon/neon_0.30.2.bb
@@ -7,10 +7,10 @@ LIC_FILES_CHKSUM = "file://src/COPYING.LIB;md5=f30a9716ef3762e3467a2f62bf790f0a
 
 SRC_URI = "http://www.webdav.org/${BPN}/${BPN}-${PV}.tar.gz \
            file://pkgconfig.patch \
-           file://gnutls_4.3_fixup.patch"
+          "
 
-SRC_URI[md5sum] = "231adebe5c2f78fded3e3df6e958878e"
-SRC_URI[sha256sum] = "00c626c0dc18d094ab374dbd9a354915bfe4776433289386ed489c2ec0845cdd"
+SRC_URI[md5sum] = "e28d77bf14032d7f5046b3930704ef41"
+SRC_URI[sha256sum] = "db0bd8cdec329b48f53a6f00199c92d5ba40b0f015b153718d1b15d3d967fbca"
 
 inherit autotools binconfig-disabled lib_package pkgconfig
 
-- 
2.4.0



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

* [PATCH 03/10] mmc-utils: Upgrade to latest git version
  2016-10-23 11:29 [PATCH 01/10] mc: Upgrade 4.8.17 -> 4.8.18 Maxin B. John
  2016-10-23 11:29 ` [PATCH 02/10] neon: Upgrade 0.30.1 -> 0.30.2 Maxin B. John
@ 2016-10-23 11:29 ` Maxin B. John
  2016-10-23 11:29 ` [PATCH 04/10] orc: Upgrade 0.4.25 -> 0.4.26 Maxin B. John
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Maxin B. John @ 2016-10-23 11:29 UTC (permalink / raw)
  To: openembedded-core

Upgrade to most recent commit:
2cb6695e8dec00d887bdd5309d1b57d836fcd214

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-devtools/mmc/mmc-utils_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/mmc/mmc-utils_git.bb b/meta/recipes-devtools/mmc/mmc-utils_git.bb
index 0a8da19..2cba860 100644
--- a/meta/recipes-devtools/mmc/mmc-utils_git.bb
+++ b/meta/recipes-devtools/mmc/mmc-utils_git.bb
@@ -4,7 +4,7 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://mmc.c;beginline=1;endline=20;md5=fae32792e20f4d27ade1c5a762d16b7d"
 
 SRCBRANCH ?= "master"
-SRCREV = "bb779acfc385d135b32a6998c1d1fceef0491400"
+SRCREV = "2cb6695e8dec00d887bdd5309d1b57d836fcd214"
 
 PV = "0.1"
 
-- 
2.4.0



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

* [PATCH 04/10] orc: Upgrade 0.4.25 -> 0.4.26
  2016-10-23 11:29 [PATCH 01/10] mc: Upgrade 4.8.17 -> 4.8.18 Maxin B. John
  2016-10-23 11:29 ` [PATCH 02/10] neon: Upgrade 0.30.1 -> 0.30.2 Maxin B. John
  2016-10-23 11:29 ` [PATCH 03/10] mmc-utils: Upgrade to latest git version Maxin B. John
@ 2016-10-23 11:29 ` Maxin B. John
  2016-10-23 11:29 ` [PATCH 05/10] acpid: Upgrade 2.0.27 -> 2.0.28 Maxin B. John
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Maxin B. John @ 2016-10-23 11:29 UTC (permalink / raw)
  To: openembedded-core

New upstream bugfix release

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-devtools/orc/{orc_0.4.25.bb => orc_0.4.26.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/orc/{orc_0.4.25.bb => orc_0.4.26.bb} (84%)

diff --git a/meta/recipes-devtools/orc/orc_0.4.25.bb b/meta/recipes-devtools/orc/orc_0.4.26.bb
similarity index 84%
rename from meta/recipes-devtools/orc/orc_0.4.25.bb
rename to meta/recipes-devtools/orc/orc_0.4.26.bb
index 897493a..e47342f 100644
--- a/meta/recipes-devtools/orc/orc_0.4.25.bb
+++ b/meta/recipes-devtools/orc/orc_0.4.26.bb
@@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=1400bd9d09e8af56b9ec982b3d85797e"
 
 SRC_URI = "http://gstreamer.freedesktop.org/src/orc/orc-${PV}.tar.xz"
 
-SRC_URI[md5sum] = "8582a28b15f53110c88d8043d9f55bcf"
-SRC_URI[sha256sum] = "c1b1d54a58f26d483f0b3881538984789fe5d5460ab8fab74a1cacbd3d1c53d1"
+SRC_URI[md5sum] = "8e9bef677bae289d3324d81c337a4507"
+SRC_URI[sha256sum] = "7d52fa80ef84988359c3434e1eea302d077a08987abdde6905678ebcad4fa649"
 
 inherit autotools pkgconfig gtk-doc
 
-- 
2.4.0



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

* [PATCH 05/10] acpid: Upgrade 2.0.27 -> 2.0.28
  2016-10-23 11:29 [PATCH 01/10] mc: Upgrade 4.8.17 -> 4.8.18 Maxin B. John
                   ` (2 preceding siblings ...)
  2016-10-23 11:29 ` [PATCH 04/10] orc: Upgrade 0.4.25 -> 0.4.26 Maxin B. John
@ 2016-10-23 11:29 ` Maxin B. John
  2016-10-23 11:29 ` [PATCH 06/10] bluez5: Upgrade 5.41 -> 5.42 Maxin B. John
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Maxin B. John @ 2016-10-23 11:29 UTC (permalink / raw)
  To: openembedded-core

Bug fix release

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-bsp/acpid/{acpid_2.0.27.bb => acpid_2.0.28.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-bsp/acpid/{acpid_2.0.27.bb => acpid_2.0.28.bb} (55%)

diff --git a/meta/recipes-bsp/acpid/acpid_2.0.27.bb b/meta/recipes-bsp/acpid/acpid_2.0.28.bb
similarity index 55%
rename from meta/recipes-bsp/acpid/acpid_2.0.27.bb
rename to meta/recipes-bsp/acpid/acpid_2.0.28.bb
index 509fcfe..686526f 100644
--- a/meta/recipes-bsp/acpid/acpid_2.0.27.bb
+++ b/meta/recipes-bsp/acpid/acpid_2.0.28.bb
@@ -3,5 +3,5 @@ require acpid.inc
 LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \
                     file://acpid.h;endline=24;md5=324a9cf225ae69ddaad1bf9d942115b5"
 
-SRC_URI[md5sum] = "e41bdf628e122edb4342fca432ea7db9"
-SRC_URI[sha256sum] = "820c223e53cc11d9d7229fb1ffc2c2205f1054082c80f83f5a4ec4df16d3a616"
+SRC_URI[md5sum] = "0432407b5ff75ae8e08afb43052fde2b"
+SRC_URI[sha256sum] = "980c3a54b0d3f2fd49fd845a0584c5c2abeaab9e9ac09fcbb68686bbb57a7110"
-- 
2.4.0



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

* [PATCH 06/10] bluez5: Upgrade 5.41 -> 5.42
  2016-10-23 11:29 [PATCH 01/10] mc: Upgrade 4.8.17 -> 4.8.18 Maxin B. John
                   ` (3 preceding siblings ...)
  2016-10-23 11:29 ` [PATCH 05/10] acpid: Upgrade 2.0.27 -> 2.0.28 Maxin B. John
@ 2016-10-23 11:29 ` Maxin B. John
  2016-10-23 11:29 ` [PATCH 07/10] harfbuzz: Upgrade 1.3.0 -> 1.3.2 Maxin B. John
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Maxin B. John @ 2016-10-23 11:29 UTC (permalink / raw)
  To: openembedded-core

Bug fixes, add support for new management tracing capability
and marking GATT D-Bus APIs as stable interfaces

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-connectivity/bluez5/{bluez5_5.41.bb => bluez5_5.42.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-connectivity/bluez5/{bluez5_5.41.bb => bluez5_5.42.bb} (89%)

diff --git a/meta/recipes-connectivity/bluez5/bluez5_5.41.bb b/meta/recipes-connectivity/bluez5/bluez5_5.42.bb
similarity index 89%
rename from meta/recipes-connectivity/bluez5/bluez5_5.41.bb
rename to meta/recipes-connectivity/bluez5/bluez5_5.42.bb
index 522aab7..e6ab9b6 100644
--- a/meta/recipes-connectivity/bluez5/bluez5_5.41.bb
+++ b/meta/recipes-connectivity/bluez5/bluez5_5.42.bb
@@ -2,8 +2,8 @@ require bluez5.inc
 
 REQUIRED_DISTRO_FEATURES = "bluez5"
 
-SRC_URI[md5sum] = "318341b2188698130adb73236ee69244"
-SRC_URI[sha256sum] = "df7dc4462494dad4e60a2943240d584f6e760235dca64f5f10eba46dbab7f5f0"
+SRC_URI[md5sum] = "cc8c53133d5be0d6c126e00cf2529028"
+SRC_URI[sha256sum] = "4f166fed80fc017396d6f2b3cae5185520875ab456d1c74d6b4eaa4da0e16109"
 
 # noinst programs in Makefile.tools that are conditional on READLINE
 # support
-- 
2.4.0



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

* [PATCH 07/10] harfbuzz: Upgrade 1.3.0 -> 1.3.2
  2016-10-23 11:29 [PATCH 01/10] mc: Upgrade 4.8.17 -> 4.8.18 Maxin B. John
                   ` (4 preceding siblings ...)
  2016-10-23 11:29 ` [PATCH 06/10] bluez5: Upgrade 5.41 -> 5.42 Maxin B. John
@ 2016-10-23 11:29 ` Maxin B. John
  2016-10-23 11:29 ` [PATCH 08/10] ethtool: Upgrade 4.6 -> 4.8 Maxin B. John
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Maxin B. John @ 2016-10-23 11:29 UTC (permalink / raw)
  To: openembedded-core

1.3.0 -> 1.3.2

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 .../harfbuzz/{harfbuzz_1.3.0.bb => harfbuzz_1.3.2.bb}                 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/harfbuzz/{harfbuzz_1.3.0.bb => harfbuzz_1.3.2.bb} (88%)

diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz_1.3.0.bb b/meta/recipes-graphics/harfbuzz/harfbuzz_1.3.2.bb
similarity index 88%
rename from meta/recipes-graphics/harfbuzz/harfbuzz_1.3.0.bb
rename to meta/recipes-graphics/harfbuzz/harfbuzz_1.3.2.bb
index f24c443..8d29340 100644
--- a/meta/recipes-graphics/harfbuzz/harfbuzz_1.3.0.bb
+++ b/meta/recipes-graphics/harfbuzz/harfbuzz_1.3.2.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] = "a82d49ff67197bc3c96ea34b98880c52"
-SRC_URI[sha256sum] = "b04be31633efee2cae1d62d46434587302554fa837224845a62565ec68a0334d"
+SRC_URI[md5sum] = "5986e1bfcd983d1f6caa53ef64c4abc5"
+SRC_URI[sha256sum] = "8543a6372f08c5987c632dfaa86210c7edb3f43fbacd96095c609bc3539ce027"
 
 inherit autotools pkgconfig lib_package gtk-doc
 
-- 
2.4.0



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

* [PATCH 08/10] ethtool: Upgrade 4.6 -> 4.8
  2016-10-23 11:29 [PATCH 01/10] mc: Upgrade 4.8.17 -> 4.8.18 Maxin B. John
                   ` (5 preceding siblings ...)
  2016-10-23 11:29 ` [PATCH 07/10] harfbuzz: Upgrade 1.3.0 -> 1.3.2 Maxin B. John
@ 2016-10-23 11:29 ` Maxin B. John
  2016-10-23 11:29 ` [PATCH 09/10] libjpeg-turbo: Upgrade 1.5.0 -> 1.5.1 Maxin B. John
  2016-10-23 11:29 ` [PATCH 10/10] libpng: Upgrade 1.6.24 -> 1.6.25 Maxin B. John
  8 siblings, 0 replies; 12+ messages in thread
From: Maxin B. John @ 2016-10-23 11:29 UTC (permalink / raw)
  To: openembedded-core

Various bug fixes and improvements.

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-extended/ethtool/{ethtool_4.6.bb => ethtool_4.8.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/ethtool/{ethtool_4.6.bb => ethtool_4.8.bb} (88%)

diff --git a/meta/recipes-extended/ethtool/ethtool_4.6.bb b/meta/recipes-extended/ethtool/ethtool_4.8.bb
similarity index 88%
rename from meta/recipes-extended/ethtool/ethtool_4.6.bb
rename to meta/recipes-extended/ethtool/ethtool_4.8.bb
index 788d4ea..4ca88d7 100644
--- a/meta/recipes-extended/ethtool/ethtool_4.6.bb
+++ b/meta/recipes-extended/ethtool/ethtool_4.8.bb
@@ -11,8 +11,8 @@ SRC_URI = "${KERNELORG_MIRROR}/software/network/ethtool/ethtool-${PV}.tar.gz \
            file://avoid_parallel_tests.patch \
            "
 
-SRC_URI[md5sum] = "1186dd83a0384109b92c6cd40a7bb0e5"
-SRC_URI[sha256sum] = "ad45620887f7e61312fc2f9ca3fd50d49ac7737ed874b0b02845d07e0fa3ca49"
+SRC_URI[md5sum] = "28c4a4d85c33f573c49ff6d81ec094fd"
+SRC_URI[sha256sum] = "1bd82ebe3d41de1b7b0d8f4fb18a8e8466fba934c952bc5c5002836ffa8bb606"
 
 inherit autotools ptest
 RDEPENDS_${PN}-ptest += "make"
-- 
2.4.0



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

* [PATCH 09/10] libjpeg-turbo: Upgrade 1.5.0 -> 1.5.1
  2016-10-23 11:29 [PATCH 01/10] mc: Upgrade 4.8.17 -> 4.8.18 Maxin B. John
                   ` (6 preceding siblings ...)
  2016-10-23 11:29 ` [PATCH 08/10] ethtool: Upgrade 4.6 -> 4.8 Maxin B. John
@ 2016-10-23 11:29 ` Maxin B. John
  2016-10-23 11:29 ` [PATCH 10/10] libpng: Upgrade 1.6.24 -> 1.6.25 Maxin B. John
  8 siblings, 0 replies; 12+ messages in thread
From: Maxin B. John @ 2016-10-23 11:29 UTC (permalink / raw)
  To: openembedded-core

Bug fixes and various improvements for AArch64 and PowerPC.

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 .../jpeg/{libjpeg-turbo_1.5.0.bb => libjpeg-turbo_1.5.1.bb}           | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/jpeg/{libjpeg-turbo_1.5.0.bb => libjpeg-turbo_1.5.1.bb} (93%)

diff --git a/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.0.bb b/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb
similarity index 93%
rename from meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.0.bb
rename to meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb
index c9e70d7..695928d 100644
--- a/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.0.bb
+++ b/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb
@@ -10,8 +10,8 @@ LIC_FILES_CHKSUM = "file://cdjpeg.h;endline=13;md5=05bab7c7ad899d85bfba60da1a127
 DEPENDS = "nasm-native"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz"
-SRC_URI[md5sum] = "3fc5d9b6a8bce96161659ae7a9939257"
-SRC_URI[sha256sum] = "9f397c31a67d2b00ee37597da25898b03eb282ccd87b135a50a69993b6a2035f"
+SRC_URI[md5sum] = "55deb139b0cac3c8200b75d485fc13f3"
+SRC_URI[sha256sum] = "41429d3d253017433f66e3d472b8c7d998491d2f41caa7306b8d9a6f2a2c666c"
 UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/libjpeg-turbo/files/"
 UPSTREAM_CHECK_REGEX = "/libjpeg-turbo/files/(?P<pver>(\d+[\.\-_]*)+)/"
 
-- 
2.4.0



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

* [PATCH 10/10] libpng: Upgrade 1.6.24 -> 1.6.25
  2016-10-23 11:29 [PATCH 01/10] mc: Upgrade 4.8.17 -> 4.8.18 Maxin B. John
                   ` (7 preceding siblings ...)
  2016-10-23 11:29 ` [PATCH 09/10] libjpeg-turbo: Upgrade 1.5.0 -> 1.5.1 Maxin B. John
@ 2016-10-23 11:29 ` Maxin B. John
  2016-10-23 15:59   ` Khem Raj
  8 siblings, 1 reply; 12+ messages in thread
From: Maxin B. John @ 2016-10-23 11:29 UTC (permalink / raw)
  To: openembedded-core

License file changes are due to updates in Version and Copyright date

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 .../libpng/{libpng_1.6.24.bb => libpng_1.6.26.bb}                 | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-multimedia/libpng/{libpng_1.6.24.bb => libpng_1.6.26.bb} (67%)

diff --git a/meta/recipes-multimedia/libpng/libpng_1.6.24.bb b/meta/recipes-multimedia/libpng/libpng_1.6.26.bb
similarity index 67%
rename from meta/recipes-multimedia/libpng/libpng_1.6.24.bb
rename to meta/recipes-multimedia/libpng/libpng_1.6.26.bb
index f91ab7f..8c1cb8c 100644
--- a/meta/recipes-multimedia/libpng/libpng_1.6.24.bb
+++ b/meta/recipes-multimedia/libpng/libpng_1.6.26.bb
@@ -2,14 +2,14 @@ SUMMARY = "PNG image format decoding library"
 HOMEPAGE = "http://www.libpng.org/"
 SECTION = "libs"
 LICENSE = "Libpng"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=5089214833586ba444048fd1dbbc76a4 \
-                    file://png.h;endline=149;md5=376d8ff7f69b7c4ad3a09f4672cec696"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=ce8d0bd8303802e5492f064ddddef0e7 \
+                    file://png.h;endline=149;md5=8cca27e71fd88e1fe1adad7d9e841b5f"
 DEPENDS = "zlib"
 
 SRC_URI = "${GENTOO_MIRROR}/libpng-${PV}.tar.xz \
           "
-SRC_URI[md5sum] = "ffcdbd549814787fa8010c372e35ff25"
-SRC_URI[sha256sum] = "7932dc9e5e45d55ece9d204e90196bbb5f2c82741ccb0f7e10d07d364a6fd6dd"
+SRC_URI[md5sum] = "faed9bb495d2e12dd0c9ec561ca60cd8"
+SRC_URI[sha256sum] = "266743a326986c3dbcee9d89b640595f6b16a293fd02b37d8c91348d317b73f9"
 
 BINCONFIG = "${bindir}/libpng-config ${bindir}/libpng16-config"
 
-- 
2.4.0



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

* Re: [PATCH 10/10] libpng: Upgrade 1.6.24 -> 1.6.25
  2016-10-23 11:29 ` [PATCH 10/10] libpng: Upgrade 1.6.24 -> 1.6.25 Maxin B. John
@ 2016-10-23 15:59   ` Khem Raj
  2016-10-24  7:54     ` Maxin B. John
  0 siblings, 1 reply; 12+ messages in thread
From: Khem Raj @ 2016-10-23 15:59 UTC (permalink / raw)
  To: Maxin B. John; +Cc: Patches and discussions about the oe-core layer

On Sun, Oct 23, 2016 at 4:29 AM, Maxin B. John <maxin.john@intel.com> wrote:
> License file changes are due to updates in Version and Copyright date

version of license or version of package ?

>
> Signed-off-by: Maxin B. John <maxin.john@intel.com>
> ---
>  .../libpng/{libpng_1.6.24.bb => libpng_1.6.26.bb}                 | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>  rename meta/recipes-multimedia/libpng/{libpng_1.6.24.bb => libpng_1.6.26.bb} (67%)
>
> diff --git a/meta/recipes-multimedia/libpng/libpng_1.6.24.bb b/meta/recipes-multimedia/libpng/libpng_1.6.26.bb
> similarity index 67%
> rename from meta/recipes-multimedia/libpng/libpng_1.6.24.bb
> rename to meta/recipes-multimedia/libpng/libpng_1.6.26.bb
> index f91ab7f..8c1cb8c 100644
> --- a/meta/recipes-multimedia/libpng/libpng_1.6.24.bb
> +++ b/meta/recipes-multimedia/libpng/libpng_1.6.26.bb
> @@ -2,14 +2,14 @@ SUMMARY = "PNG image format decoding library"
>  HOMEPAGE = "http://www.libpng.org/"
>  SECTION = "libs"
>  LICENSE = "Libpng"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=5089214833586ba444048fd1dbbc76a4 \
> -                    file://png.h;endline=149;md5=376d8ff7f69b7c4ad3a09f4672cec696"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=ce8d0bd8303802e5492f064ddddef0e7 \
> +                    file://png.h;endline=149;md5=8cca27e71fd88e1fe1adad7d9e841b5f"
>  DEPENDS = "zlib"
>
>  SRC_URI = "${GENTOO_MIRROR}/libpng-${PV}.tar.xz \
>            "
> -SRC_URI[md5sum] = "ffcdbd549814787fa8010c372e35ff25"
> -SRC_URI[sha256sum] = "7932dc9e5e45d55ece9d204e90196bbb5f2c82741ccb0f7e10d07d364a6fd6dd"
> +SRC_URI[md5sum] = "faed9bb495d2e12dd0c9ec561ca60cd8"
> +SRC_URI[sha256sum] = "266743a326986c3dbcee9d89b640595f6b16a293fd02b37d8c91348d317b73f9"
>
>  BINCONFIG = "${bindir}/libpng-config ${bindir}/libpng16-config"
>
> --
> 2.4.0
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH 10/10] libpng: Upgrade 1.6.24 -> 1.6.25
  2016-10-23 15:59   ` Khem Raj
@ 2016-10-24  7:54     ` Maxin B. John
  0 siblings, 0 replies; 12+ messages in thread
From: Maxin B. John @ 2016-10-24  7:54 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

Hi Khem,

On Sun, Oct 23, 2016 at 08:59:48AM -0700, Khem Raj wrote:
> On Sun, Oct 23, 2016 at 4:29 AM, Maxin B. John <maxin.john@intel.com> wrote:
> > License file changes are due to updates in Version and Copyright date
> 
> version of license or version of package ?

It was supposed to be Package version. Generally libpng upgrade modifies it's
version and Copyright dates in the License file. eg:

* libpng versions 1.0.7, July 1, 2000 through 1.6.26, October 20, 2016 are
* Copyright (c) 2000-2002, 2004, 2006-2016 Glenn Randers-Pehrson

Sorry for creating confusion here.

> >
> > Signed-off-by: Maxin B. John <maxin.john@intel.com>
> > ---
> >  .../libpng/{libpng_1.6.24.bb => libpng_1.6.26.bb}                 | 8 ++++----
> >  1 file changed, 4 insertions(+), 4 deletions(-)
> >  rename meta/recipes-multimedia/libpng/{libpng_1.6.24.bb => libpng_1.6.26.bb} (67%)
> >
> > diff --git a/meta/recipes-multimedia/libpng/libpng_1.6.24.bb b/meta/recipes-multimedia/libpng/libpng_1.6.26.bb
> > similarity index 67%
> > rename from meta/recipes-multimedia/libpng/libpng_1.6.24.bb
> > rename to meta/recipes-multimedia/libpng/libpng_1.6.26.bb
> > index f91ab7f..8c1cb8c 100644
> > --- a/meta/recipes-multimedia/libpng/libpng_1.6.24.bb
> > +++ b/meta/recipes-multimedia/libpng/libpng_1.6.26.bb
> > @@ -2,14 +2,14 @@ SUMMARY = "PNG image format decoding library"
> >  HOMEPAGE = "http://www.libpng.org/"
> >  SECTION = "libs"
> >  LICENSE = "Libpng"
> > -LIC_FILES_CHKSUM = "file://LICENSE;md5=5089214833586ba444048fd1dbbc76a4 \
> > -                    file://png.h;endline=149;md5=376d8ff7f69b7c4ad3a09f4672cec696"
> > +LIC_FILES_CHKSUM = "file://LICENSE;md5=ce8d0bd8303802e5492f064ddddef0e7 \
> > +                    file://png.h;endline=149;md5=8cca27e71fd88e1fe1adad7d9e841b5f"
> >  DEPENDS = "zlib"
> >
> >  SRC_URI = "${GENTOO_MIRROR}/libpng-${PV}.tar.xz \
> >            "
> > -SRC_URI[md5sum] = "ffcdbd549814787fa8010c372e35ff25"
> > -SRC_URI[sha256sum] = "7932dc9e5e45d55ece9d204e90196bbb5f2c82741ccb0f7e10d07d364a6fd6dd"
> > +SRC_URI[md5sum] = "faed9bb495d2e12dd0c9ec561ca60cd8"
> > +SRC_URI[sha256sum] = "266743a326986c3dbcee9d89b640595f6b16a293fd02b37d8c91348d317b73f9"
> >
> >  BINCONFIG = "${bindir}/libpng-config ${bindir}/libpng16-config"
> >
> > --

Best Regards,
Maxin


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

end of thread, other threads:[~2016-10-24  7:53 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-23 11:29 [PATCH 01/10] mc: Upgrade 4.8.17 -> 4.8.18 Maxin B. John
2016-10-23 11:29 ` [PATCH 02/10] neon: Upgrade 0.30.1 -> 0.30.2 Maxin B. John
2016-10-23 11:29 ` [PATCH 03/10] mmc-utils: Upgrade to latest git version Maxin B. John
2016-10-23 11:29 ` [PATCH 04/10] orc: Upgrade 0.4.25 -> 0.4.26 Maxin B. John
2016-10-23 11:29 ` [PATCH 05/10] acpid: Upgrade 2.0.27 -> 2.0.28 Maxin B. John
2016-10-23 11:29 ` [PATCH 06/10] bluez5: Upgrade 5.41 -> 5.42 Maxin B. John
2016-10-23 11:29 ` [PATCH 07/10] harfbuzz: Upgrade 1.3.0 -> 1.3.2 Maxin B. John
2016-10-23 11:29 ` [PATCH 08/10] ethtool: Upgrade 4.6 -> 4.8 Maxin B. John
2016-10-23 11:29 ` [PATCH 09/10] libjpeg-turbo: Upgrade 1.5.0 -> 1.5.1 Maxin B. John
2016-10-23 11:29 ` [PATCH 10/10] libpng: Upgrade 1.6.24 -> 1.6.25 Maxin B. John
2016-10-23 15:59   ` Khem Raj
2016-10-24  7:54     ` Maxin B. John

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.