Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/8] package upgrades
@ 2018-04-09 11:55 Maxin B. John
  2018-04-09 11:55 ` [PATCH 1/8] libatomic-ops: upgrade to version 7.6.4 Maxin B. John
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Maxin B. John @ 2018-04-09 11:55 UTC (permalink / raw)
  To: openembedded-core

Package upgrades

Maxin B. John (8):
  libatomic-ops: upgrade to version 7.6.4
  bluez5: upgrade to version 5.49
  libsolv: upgrade to version 0.6.34
  ruby: upgrade to version 2.5.1
  gtk+3: upgrade to version 3.22.29
  gsettings-desktop-schemas: upgrade to version 3.28.0
  puzzles: upgrade to latest commit
  gtk-icon-utils-native: upgrade to version 3.22.29

 meta/recipes-connectivity/bluez5/bluez5.inc                          | 1 +
 meta/recipes-connectivity/bluez5/{bluez5_5.48.bb => bluez5_5.49.bb}  | 5 +++--
 meta/recipes-devtools/ruby/ruby.inc                                  | 2 +-
 meta/recipes-devtools/ruby/{ruby_2.5.0.bb => ruby_2.5.1.bb}          | 4 ++--
 .../libsolv/{libsolv_0.6.33.bb => libsolv_0.6.34.bb}                 | 2 +-
 ...desktop-schemas_3.24.1.bb => gsettings-desktop-schemas_3.28.0.bb} | 4 ++--
 meta/recipes-gnome/gtk+/{gtk+3_3.22.28.bb => gtk+3_3.22.29.bb}       | 4 ++--
 ...icon-utils-native_3.22.28.bb => gtk-icon-utils-native_3.22.29.bb} | 4 ++--
 meta/recipes-sato/puzzles/puzzles_git.bb                             | 2 +-
 .../libatomic-ops/{libatomic-ops_7.6.2.bb => libatomic-ops_7.6.4.bb} | 2 +-
 10 files changed, 16 insertions(+), 14 deletions(-)
 rename meta/recipes-connectivity/bluez5/{bluez5_5.48.bb => bluez5_5.49.bb} (87%)
 rename meta/recipes-devtools/ruby/{ruby_2.5.0.bb => ruby_2.5.1.bb} (90%)
 rename meta/recipes-extended/libsolv/{libsolv_0.6.33.bb => libsolv_0.6.34.bb} (94%)
 rename meta/recipes-gnome/gsettings-desktop-schemas/{gsettings-desktop-schemas_3.24.1.bb => gsettings-desktop-schemas_3.28.0.bb} (70%)
 rename meta/recipes-gnome/gtk+/{gtk+3_3.22.28.bb => gtk+3_3.22.29.bb} (83%)
 rename meta/recipes-gnome/gtk+/{gtk-icon-utils-native_3.22.28.bb => gtk-icon-utils-native_3.22.29.bb} (94%)
 rename meta/recipes-support/libatomic-ops/{libatomic-ops_7.6.2.bb => libatomic-ops_7.6.4.bb} (91%)

-- 
2.4.0



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

* [PATCH 1/8] libatomic-ops: upgrade to version 7.6.4
  2018-04-09 11:55 [PATCH 0/8] package upgrades Maxin B. John
@ 2018-04-09 11:55 ` Maxin B. John
  2018-04-09 11:55 ` [PATCH 2/8] bluez5: upgrade to version 5.49 Maxin B. John
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Maxin B. John @ 2018-04-09 11:55 UTC (permalink / raw)
  To: openembedded-core

* Add RISC-V support
* Convert atomic_ops_malloc.c and tests to valid C++ code
* Eliminate 'function is never used' cppcheck warning for
* load_before_cas
* Eliminate 'using argument that points at uninitialized var' cppcheck
* error
* Fix 'AO_pt_lock undefined' error if cross-compiling manually (MinGW)
* Fix public headers inclusion from clients C++ code
* Remove gcc/nios2.h file (include gcc/generic.h directly for nios2)
* Support MIPS rel6

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 .../libatomic-ops/{libatomic-ops_7.6.2.bb => libatomic-ops_7.6.4.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/libatomic-ops/{libatomic-ops_7.6.2.bb => libatomic-ops_7.6.4.bb} (91%)

diff --git a/meta/recipes-support/libatomic-ops/libatomic-ops_7.6.2.bb b/meta/recipes-support/libatomic-ops/libatomic-ops_7.6.4.bb
similarity index 91%
rename from meta/recipes-support/libatomic-ops/libatomic-ops_7.6.2.bb
rename to meta/recipes-support/libatomic-ops/libatomic-ops_7.6.4.bb
index f7b4163..271721e 100644
--- a/meta/recipes-support/libatomic-ops/libatomic-ops_7.6.2.bb
+++ b/meta/recipes-support/libatomic-ops/libatomic-ops_7.6.4.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
 PV .= "+git${SRCPV}"
 SRCBRANCH ?= "release-7_6"
 
-SRCREV = "5ae4b4aeea2baf13752d07e3038c47f70f06dcac"
+SRCREV = "8d98e2811c2f6df99cc65e5cc6964047d8554ace"
 SRC_URI = "git://github.com/ivmai/libatomic_ops;branch=${SRCBRANCH}"
 
 S = "${WORKDIR}/git"
-- 
2.4.0



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

* [PATCH 2/8] bluez5: upgrade to version 5.49
  2018-04-09 11:55 [PATCH 0/8] package upgrades Maxin B. John
  2018-04-09 11:55 ` [PATCH 1/8] libatomic-ops: upgrade to version 7.6.4 Maxin B. John
@ 2018-04-09 11:55 ` Maxin B. John
  2018-04-09 11:55 ` [PATCH 3/8] libsolv: upgrade to version 0.6.34 Maxin B. John
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Maxin B. John @ 2018-04-09 11:55 UTC (permalink / raw)
  To: openembedded-core

Add PACKAGECONFIG for btpclient (BTP client for qualification testing)

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-connectivity/bluez5/bluez5.inc                         | 1 +
 meta/recipes-connectivity/bluez5/{bluez5_5.48.bb => bluez5_5.49.bb} | 5 +++--
 2 files changed, 4 insertions(+), 2 deletions(-)
 rename meta/recipes-connectivity/bluez5/{bluez5_5.48.bb => bluez5_5.49.bb} (87%)

diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc
index ae2a833..c0b6571 100644
--- a/meta/recipes-connectivity/bluez5/bluez5.inc
+++ b/meta/recipes-connectivity/bluez5/bluez5.inc
@@ -42,6 +42,7 @@ PACKAGECONFIG[tools] = "--enable-tools,--disable-tools"
 PACKAGECONFIG[threads] = "--enable-threads,--disable-threads"
 PACKAGECONFIG[deprecated] = "--enable-deprecated,--disable-deprecated"
 PACKAGECONFIG[mesh] = "--enable-mesh,--disable-mesh, json-c"
+PACKAGECONFIG[btpclient] = "--enable-btpclient,--disable-btpclient, ell"
 
 SRC_URI = "\
     ${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \
diff --git a/meta/recipes-connectivity/bluez5/bluez5_5.48.bb b/meta/recipes-connectivity/bluez5/bluez5_5.49.bb
similarity index 87%
rename from meta/recipes-connectivity/bluez5/bluez5_5.48.bb
rename to meta/recipes-connectivity/bluez5/bluez5_5.49.bb
index 84a6cd2..b79bda2 100644
--- a/meta/recipes-connectivity/bluez5/bluez5_5.48.bb
+++ b/meta/recipes-connectivity/bluez5/bluez5_5.49.bb
@@ -2,8 +2,8 @@ require bluez5.inc
 
 REQUIRED_DISTRO_FEATURES = "bluez5"
 
-SRC_URI[md5sum] = "c9c853f3c90564cabec75ab35106c355"
-SRC_URI[sha256sum] = "b9a8723072ef66bae7ec301c774902ebcb444c9c5b149b5a199e60a1ba970e90"
+SRC_URI[md5sum] = "f210e84db707d66af3b889084a6f8bef"
+SRC_URI[sha256sum] = "33301d7a514c73d535ee1f91c2aed1af1f2e53efe11d3ac06bcf0d7abed2ce95"
 
 # noinst programs in Makefile.tools that are conditional on READLINE
 # support
@@ -66,4 +66,5 @@ NOINST_TOOLS_BT ?= " \
     tools/check-selftest \
     tools/gatt-service \
     profiles/iap/iapd \
+    ${@bb.utils.contains('PACKAGECONFIG', 'btpclient', 'tools/btpclient', '', d)} \
 "
-- 
2.4.0



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

* [PATCH 3/8] libsolv: upgrade to version 0.6.34
  2018-04-09 11:55 [PATCH 0/8] package upgrades Maxin B. John
  2018-04-09 11:55 ` [PATCH 1/8] libatomic-ops: upgrade to version 7.6.4 Maxin B. John
  2018-04-09 11:55 ` [PATCH 2/8] bluez5: upgrade to version 5.49 Maxin B. John
@ 2018-04-09 11:55 ` Maxin B. John
  2018-04-09 11:55 ` [PATCH 4/8] ruby: upgrade to version 2.5.1 Maxin B. John
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Maxin B. John @ 2018-04-09 11:55 UTC (permalink / raw)
  To: openembedded-core

Bug fix release

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-extended/libsolv/{libsolv_0.6.33.bb => libsolv_0.6.34.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/libsolv/{libsolv_0.6.33.bb => libsolv_0.6.34.bb} (94%)

diff --git a/meta/recipes-extended/libsolv/libsolv_0.6.33.bb b/meta/recipes-extended/libsolv/libsolv_0.6.34.bb
similarity index 94%
rename from meta/recipes-extended/libsolv/libsolv_0.6.33.bb
rename to meta/recipes-extended/libsolv/libsolv_0.6.34.bb
index 0401ced..5950194 100644
--- a/meta/recipes-extended/libsolv/libsolv_0.6.33.bb
+++ b/meta/recipes-extended/libsolv/libsolv_0.6.34.bb
@@ -13,7 +13,7 @@ SRC_URI_append_libc-musl = " file://0001-Add-fallback-fopencookie-implementation
                              file://0002-Fixes-to-internal-fopencookie-implementation.patch \
                            "
 
-SRCREV = "69f1803978ba7a46a57928fa4be6430792419e4e"
+SRCREV = "f0ef172a591d9c1ca0e13e09955054ac9c473d67"
 UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
 
 S = "${WORKDIR}/git"
-- 
2.4.0



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

* [PATCH 4/8] ruby: upgrade to version 2.5.1
  2018-04-09 11:55 [PATCH 0/8] package upgrades Maxin B. John
                   ` (2 preceding siblings ...)
  2018-04-09 11:55 ` [PATCH 3/8] libsolv: upgrade to version 0.6.34 Maxin B. John
@ 2018-04-09 11:55 ` Maxin B. John
  2018-04-09 11:55 ` [PATCH 5/8] gtk+3: upgrade to version 3.22.29 Maxin B. John
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Maxin B. John @ 2018-04-09 11:55 UTC (permalink / raw)
  To: openembedded-core

License-Update: Checksum of LEGAL file updated for changes to
upstream URL and addition of Wayback Machine url

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-devtools/ruby/ruby.inc                         | 2 +-
 meta/recipes-devtools/ruby/{ruby_2.5.0.bb => ruby_2.5.1.bb} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-devtools/ruby/{ruby_2.5.0.bb => ruby_2.5.1.bb} (90%)

diff --git a/meta/recipes-devtools/ruby/ruby.inc b/meta/recipes-devtools/ruby/ruby.inc
index fd3911b..5a5bef2 100644
--- a/meta/recipes-devtools/ruby/ruby.inc
+++ b/meta/recipes-devtools/ruby/ruby.inc
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "\
     file://COPYING;md5=340948e1882e579731841bf49cdc22c1 \
     file://BSDL;md5=19aaf65c88a40b508d17ae4be539c4b5\
     file://GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263\
-    file://LEGAL;md5=8f871f3f03732c018a5fa9b185958231 \
+    file://LEGAL;md5=23a79bb4c1a40f6cc9bcb6f4e7c39799 \
 "
 
 DEPENDS = "ruby-native zlib openssl tcl libyaml gdbm readline"
diff --git a/meta/recipes-devtools/ruby/ruby_2.5.0.bb b/meta/recipes-devtools/ruby/ruby_2.5.1.bb
similarity index 90%
rename from meta/recipes-devtools/ruby/ruby_2.5.0.bb
rename to meta/recipes-devtools/ruby/ruby_2.5.1.bb
index 1ac7f2a..9104828 100644
--- a/meta/recipes-devtools/ruby/ruby_2.5.0.bb
+++ b/meta/recipes-devtools/ruby/ruby_2.5.1.bb
@@ -5,8 +5,8 @@ SRC_URI += " \
            file://ruby-CVE-2017-9228.patch \
            "
 
-SRC_URI[md5sum] = "f4711f856fe14de222b9da3d3b8efa89"
-SRC_URI[sha256sum] = "46e6f3630f1888eb653b15fa811d77b5b1df6fd7a3af436b343cfe4f4503f2ab"
+SRC_URI[md5sum] = "23867bc8c16c55e43b14dfe0614bcfa8"
+SRC_URI[sha256sum] = "dac81822325b79c3ba9532b048c2123357d3310b2b40024202f360251d9829b1"
 
 # it's unknown to configure script, but then passed to extconf.rb
 # maybe it's not really needed as we're hardcoding the result with
-- 
2.4.0



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

* [PATCH 5/8] gtk+3: upgrade to version 3.22.29
  2018-04-09 11:55 [PATCH 0/8] package upgrades Maxin B. John
                   ` (3 preceding siblings ...)
  2018-04-09 11:55 ` [PATCH 4/8] ruby: upgrade to version 2.5.1 Maxin B. John
@ 2018-04-09 11:55 ` Maxin B. John
  2018-04-09 11:55 ` [PATCH 6/8] gsettings-desktop-schemas: upgrade to version 3.28.0 Maxin B. John
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Maxin B. John @ 2018-04-09 11:55 UTC (permalink / raw)
  To: openembedded-core

* Wayland
 - add an input method based on the text protocol

* File chooser
 - Stop activating without double-click

* Bugs fixed:
  710888 GtkInfoBar not shown after calling gtk_widget_show
  743975 Better deprecation information for GtkStatusIcon
  775546 gdkscreen-x11: Don't try to calculate a refresh rate for RandR 1.3
  794008 GtkListBoxRow signal poorly documented

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 meta/recipes-gnome/gtk+/{gtk+3_3.22.28.bb => gtk+3_3.22.29.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-gnome/gtk+/{gtk+3_3.22.28.bb => gtk+3_3.22.29.bb} (83%)

diff --git a/meta/recipes-gnome/gtk+/gtk+3_3.22.28.bb b/meta/recipes-gnome/gtk+/gtk+3_3.22.29.bb
similarity index 83%
rename from meta/recipes-gnome/gtk+/gtk+3_3.22.28.bb
rename to meta/recipes-gnome/gtk+/gtk+3_3.22.29.bb
index 864e826..c3c786b 100644
--- a/meta/recipes-gnome/gtk+/gtk+3_3.22.28.bb
+++ b/meta/recipes-gnome/gtk+/gtk+3_3.22.29.bb
@@ -7,8 +7,8 @@ SRC_URI = "http://ftp.gnome.org/pub/gnome/sources/gtk+/${MAJ_VER}/gtk+-${PV}.tar
            file://0002-Do-not-try-to-initialize-GL-without-libGL.patch \
            file://0003-Add-disable-opengl-configure-option.patch \
           "
-SRC_URI[md5sum] = "8c1f5ab987ddc7dab3e59660f89dcd9b"
-SRC_URI[sha256sum] = "d299612b018cfed7b2c689168ab52b668023708e17c335eb592260d186f15e1f"
+SRC_URI[md5sum] = "229a39f7d9ada53398baa39652630f2e"
+SRC_URI[sha256sum] = "a07d64b939fcc034a066b7723fdf9b24e92c9cfb6a8497593f3471fe56fbbbf8"
 
 S = "${WORKDIR}/gtk+-${PV}"
 
-- 
2.4.0



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

* [PATCH 6/8] gsettings-desktop-schemas: upgrade to version 3.28.0
  2018-04-09 11:55 [PATCH 0/8] package upgrades Maxin B. John
                   ` (4 preceding siblings ...)
  2018-04-09 11:55 ` [PATCH 5/8] gtk+3: upgrade to version 3.22.29 Maxin B. John
@ 2018-04-09 11:55 ` Maxin B. John
  2018-04-09 11:55 ` [PATCH 7/8] puzzles: upgrade to latest commit Maxin B. John
  2018-04-09 11:55 ` [PATCH 8/8] gtk-icon-utils-native: upgrade to version 3.22.29 Maxin B. John
  7 siblings, 0 replies; 9+ messages in thread
From: Maxin B. John @ 2018-04-09 11:55 UTC (permalink / raw)
  To: openembedded-core

3.24.1 -> 3.28.0

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 ...-desktop-schemas_3.24.1.bb => gsettings-desktop-schemas_3.28.0.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-gnome/gsettings-desktop-schemas/{gsettings-desktop-schemas_3.24.1.bb => gsettings-desktop-schemas_3.28.0.bb} (70%)

diff --git a/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_3.24.1.bb b/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_3.28.0.bb
similarity index 70%
rename from meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_3.24.1.bb
rename to meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_3.28.0.bb
index b61fd24..c2b3cd8 100644
--- a/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_3.24.1.bb
+++ b/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_3.28.0.bb
@@ -9,5 +9,5 @@ DEPENDS = "glib-2.0 intltool-native"
 
 inherit gnomebase gsettings gettext gobject-introspection upstream-version-is-even
 
-SRC_URI[archive.md5sum] = "796b6ac1eff450261edd521b72e7fe6d"
-SRC_URI[archive.sha256sum] = "76a3fa309f9de6074d66848987214f0b128124ba7184c958c15ac78a8ac7eea7"
+SRC_URI[archive.md5sum] = "370610e29b37d063ede3ef0f29c06eb9"
+SRC_URI[archive.sha256sum] = "4cb4cd7790b77e5542ec75275237613ad22f3a1f2f41903a298cf6cc996a9167"
-- 
2.4.0



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

* [PATCH 7/8] puzzles: upgrade to latest commit
  2018-04-09 11:55 [PATCH 0/8] package upgrades Maxin B. John
                   ` (5 preceding siblings ...)
  2018-04-09 11:55 ` [PATCH 6/8] gsettings-desktop-schemas: upgrade to version 3.28.0 Maxin B. John
@ 2018-04-09 11:55 ` Maxin B. John
  2018-04-09 11:55 ` [PATCH 8/8] gtk-icon-utils-native: upgrade to version 3.22.29 Maxin B. John
  7 siblings, 0 replies; 9+ messages in thread
From: Maxin B. John @ 2018-04-09 11:55 UTC (permalink / raw)
  To: openembedded-core

* Fix false-positive completion detection in X Solo.

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

diff --git a/meta/recipes-sato/puzzles/puzzles_git.bb b/meta/recipes-sato/puzzles/puzzles_git.bb
index bfd8177..3670ab8 100644
--- a/meta/recipes-sato/puzzles/puzzles_git.bb
+++ b/meta/recipes-sato/puzzles/puzzles_git.bb
@@ -16,7 +16,7 @@ SRC_URI = "git://git.tartarus.org/simon/puzzles.git \
            file://0001-Use-Wno-error-format-overflow-if-the-compiler-suppor.patch \
            "
 UPSTREAM_CHECK_COMMITS = "1"
-SRCREV = "2adf0052d66eae88c7a5e55e67fe16e13f7018b5"
+SRCREV = "c6e0161dd475415316ed66dc82794d68e52f0025"
 PE = "2"
 PV = "0.0+git${SRCPV}"
 
-- 
2.4.0



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

* [PATCH 8/8] gtk-icon-utils-native: upgrade to version 3.22.29
  2018-04-09 11:55 [PATCH 0/8] package upgrades Maxin B. John
                   ` (6 preceding siblings ...)
  2018-04-09 11:55 ` [PATCH 7/8] puzzles: upgrade to latest commit Maxin B. John
@ 2018-04-09 11:55 ` Maxin B. John
  7 siblings, 0 replies; 9+ messages in thread
From: Maxin B. John @ 2018-04-09 11:55 UTC (permalink / raw)
  To: openembedded-core

3.22.28 -> 3.22.29

Signed-off-by: Maxin B. John <maxin.john@intel.com>
---
 ...-icon-utils-native_3.22.28.bb => gtk-icon-utils-native_3.22.29.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-gnome/gtk+/{gtk-icon-utils-native_3.22.28.bb => gtk-icon-utils-native_3.22.29.bb} (94%)

diff --git a/meta/recipes-gnome/gtk+/gtk-icon-utils-native_3.22.28.bb b/meta/recipes-gnome/gtk+/gtk-icon-utils-native_3.22.29.bb
similarity index 94%
rename from meta/recipes-gnome/gtk+/gtk-icon-utils-native_3.22.28.bb
rename to meta/recipes-gnome/gtk+/gtk-icon-utils-native_3.22.29.bb
index 942c047..eb35bcc 100644
--- a/meta/recipes-gnome/gtk+/gtk-icon-utils-native_3.22.28.bb
+++ b/meta/recipes-gnome/gtk+/gtk-icon-utils-native_3.22.29.bb
@@ -10,8 +10,8 @@ MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}"
 
 SRC_URI = "http://ftp.gnome.org/pub/gnome/sources/gtk+/${MAJ_VER}/gtk+-${PV}.tar.xz \
           file://Remove-Gdk-dependency-from-gtk-encode-symbolic-svg.patch"
-SRC_URI[md5sum] = "8c1f5ab987ddc7dab3e59660f89dcd9b"
-SRC_URI[sha256sum] = "d299612b018cfed7b2c689168ab52b668023708e17c335eb592260d186f15e1f"
+SRC_URI[md5sum] = "229a39f7d9ada53398baa39652630f2e"
+SRC_URI[sha256sum] = "a07d64b939fcc034a066b7723fdf9b24e92c9cfb6a8497593f3471fe56fbbbf8"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
                     file://gtk/gtk.h;endline=25;md5=1d8dc0fccdbfa26287a271dce88af737 \
-- 
2.4.0



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

end of thread, other threads:[~2018-04-09 11:54 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-09 11:55 [PATCH 0/8] package upgrades Maxin B. John
2018-04-09 11:55 ` [PATCH 1/8] libatomic-ops: upgrade to version 7.6.4 Maxin B. John
2018-04-09 11:55 ` [PATCH 2/8] bluez5: upgrade to version 5.49 Maxin B. John
2018-04-09 11:55 ` [PATCH 3/8] libsolv: upgrade to version 0.6.34 Maxin B. John
2018-04-09 11:55 ` [PATCH 4/8] ruby: upgrade to version 2.5.1 Maxin B. John
2018-04-09 11:55 ` [PATCH 5/8] gtk+3: upgrade to version 3.22.29 Maxin B. John
2018-04-09 11:55 ` [PATCH 6/8] gsettings-desktop-schemas: upgrade to version 3.28.0 Maxin B. John
2018-04-09 11:55 ` [PATCH 7/8] puzzles: upgrade to latest commit Maxin B. John
2018-04-09 11:55 ` [PATCH 8/8] gtk-icon-utils-native: upgrade to version 3.22.29 Maxin B. John

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