All of lore.kernel.org
 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; 13+ 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] 13+ 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; 13+ 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] 13+ 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; 13+ 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] 13+ 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; 13+ 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] 13+ 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; 13+ 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] 13+ 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; 13+ 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] 13+ 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; 13+ 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] 13+ 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; 13+ 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] 13+ 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; 13+ 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] 13+ messages in thread

* [PATCH 0/8] Package Upgrades
@ 2015-04-20  8:09 Robert Yang
  0 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-04-20  8:09 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 97d56a5b8e4f15eb32095f242eb2fd62fc5d85f2:

  gmp: remove referencing paths from the build host (2015-04-19 13:34:06 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib rbt/PUs
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/PUs

Robert Yang (8):
  cracklib: 2.9.2 -> 2.9.3
  directfb: 1.7.6 -> 1.7.7
  ccache: 3.1.9 -> 3.1.11
  dbus-glib: 0.102 -> 0.104
  cryptodev: 1.6 -> 1.7
  liberror-perl: 0.17022 -> 0.17023
  pax-utils: 0.9.2 -> 1.0.3
  lz4: r127 -> r128

 meta/recipes-core/dbus/dbus-glib_0.102.bb          |    5 --
 meta/recipes-core/dbus/dbus-glib_0.104.bb          |    4 +
 .../ccache/{ccache_3.1.9.bb => ccache_3.1.11.bb}   |    4 +-
 .../{pax-utils_0.9.2.bb => pax-utils_1.0.3.bb}     |    4 +-
 ...or-perl_0.17022.bb => liberror-perl_0.17023.bb} |    5 +-
 .../{cracklib_2.9.2.bb => cracklib_2.9.3.bb}       |    6 +-
 meta/recipes-graphics/directfb/directfb_1.7.6.bb   |    8 --
 meta/recipes-graphics/directfb/directfb_1.7.7.bb   |    8 ++
 ...yptodev-linux_1.6.bb => cryptodev-linux_1.7.bb} |    4 +-
 ...todev-module_1.6.bb => cryptodev-module_1.7.bb} |    1 -
 ...yptodev-tests_1.6.bb => cryptodev-tests_1.7.bb} |    0
 .../{cryptodev_1.6.inc => cryptodev_1.7.inc}       |    4 +-
 ...pile-and-install-rules-for-cryptodev-test.patch |   23 +++---
 ...-rc1-Linux-kernel-the-INIT_COMPLETION-mac.patch |   86 --------------------
 .../recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} |   12 +--
 15 files changed, 40 insertions(+), 134 deletions(-)
 delete mode 100644 meta/recipes-core/dbus/dbus-glib_0.102.bb
 create mode 100644 meta/recipes-core/dbus/dbus-glib_0.104.bb
 rename meta/recipes-devtools/ccache/{ccache_3.1.9.bb => ccache_3.1.11.bb} (45%)
 rename meta/recipes-devtools/pax-utils/{pax-utils_0.9.2.bb => pax-utils_1.0.3.bb} (83%)
 rename meta/recipes-devtools/perl/{liberror-perl_0.17022.bb => liberror-perl_0.17023.bb} (83%)
 rename meta/recipes-extended/cracklib/{cracklib_2.9.2.bb => cracklib_2.9.3.bb} (90%)
 delete mode 100644 meta/recipes-graphics/directfb/directfb_1.7.6.bb
 create mode 100644 meta/recipes-graphics/directfb/directfb_1.7.7.bb
 rename meta/recipes-kernel/cryptodev/{cryptodev-linux_1.6.bb => cryptodev-linux_1.7.bb} (92%)
 rename meta/recipes-kernel/cryptodev/{cryptodev-module_1.6.bb => cryptodev-module_1.7.bb} (85%)
 rename meta/recipes-kernel/cryptodev/{cryptodev-tests_1.6.bb => cryptodev-tests_1.7.bb} (100%)
 rename meta/recipes-kernel/cryptodev/{cryptodev_1.6.inc => cryptodev_1.7.inc} (66%)
 delete mode 100644 meta/recipes-kernel/cryptodev/files/0002-In-the-3.13-rc1-Linux-kernel-the-INIT_COMPLETION-mac.patch
 rename meta/recipes-support/lz4/{lz4_svn.bb => lz4_git.bb} (66%)

-- 
1.7.9.5



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

* [PATCH 0/8] Package upgrades
@ 2013-05-10 15:04 Laurentiu Palcu
  0 siblings, 0 replies; 13+ messages in thread
From: Laurentiu Palcu @ 2013-05-10 15:04 UTC (permalink / raw)
  To: openembedded-core

Hi all,

This patchset contains some X related package upgrades. Basic functional tests
were done with a qemux86 core-image-sato image and on a lenovo ideapad
s10-3t netbook.

Also, all packages were build tested for all architectures (with the exception
of xf86-video-intel and xf86-video-vmware).

Thanks,
Laurentiu

The following changes since commit 88a7b041fbf2583472aa9408a33dd8881223a0c1:

  bitbake: pysh: Say what kind of token isn't implemented (2013-05-10 13:35:10 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib lpalcu/upgrades
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=lpalcu/upgrades

Laurentiu Palcu (8):
  xf86-video-vmware: upgrade to 13.0.1
  xf86-video-intel: upgrade to 2.21.6
  xf86-input-keyboard: upgrade to 1.7.0
  xf86-input-mouse: upgrade to 1.9.0
  xf86-input-synaptics: upgrade to 1.7.0
  xf86-input-evdev: upgrade to 2.8.0
  xproto: upgrade to 7.0.24
  libdrm: upgrade to 2.4.44

 meta/recipes-graphics/drm/libdrm.inc               |    1 +
 .../recipes-graphics/drm/libdrm/installtests.patch |   26 --------
 .../drm/{libdrm_2.4.42.bb => libdrm_2.4.44.bb}     |    6 +-
 ...ut-evdev_2.7.3.bb => xf86-input-evdev_2.8.0.bb} |    6 +-
 ...board_1.6.2.bb => xf86-input-keyboard_1.7.0.bb} |    6 +-
 ...ut-mouse_1.8.1.bb => xf86-input-mouse_1.9.0.bb} |    6 +-
 ...tics_1.6.3.bb => xf86-input-synaptics_1.7.0.bb} |    8 +--
 ...-intel_2.21.3.bb => xf86-video-intel_2.21.6.bb} |    6 +-
 .../xf86-video-vmware/Kill-mibstore.patch          |   63 --------------------
 ...mware_13.0.0.bb => xf86-video-vmware_13.0.1.bb} |    8 +--
 .../{xproto_7.0.23.bb => xproto_7.0.24.bb}         |    5 +-
 11 files changed, 18 insertions(+), 123 deletions(-)
 rename meta/recipes-graphics/drm/{libdrm_2.4.42.bb => libdrm_2.4.44.bb} (43%)
 rename meta/recipes-graphics/xorg-driver/{xf86-input-evdev_2.7.3.bb => xf86-input-evdev_2.8.0.bb} (81%)
 rename meta/recipes-graphics/xorg-driver/{xf86-input-keyboard_1.6.2.bb => xf86-input-keyboard_1.7.0.bb} (70%)
 rename meta/recipes-graphics/xorg-driver/{xf86-input-mouse_1.8.1.bb => xf86-input-mouse_1.9.0.bb} (73%)
 rename meta/recipes-graphics/xorg-driver/{xf86-input-synaptics_1.6.3.bb => xf86-input-synaptics_1.7.0.bb} (70%)
 rename meta/recipes-graphics/xorg-driver/{xf86-video-intel_2.21.3.bb => xf86-video-intel_2.21.6.bb} (84%)
 delete mode 100644 meta/recipes-graphics/xorg-driver/xf86-video-vmware/Kill-mibstore.patch
 rename meta/recipes-graphics/xorg-driver/{xf86-video-vmware_13.0.0.bb => xf86-video-vmware_13.0.1.bb} (65%)
 rename meta/recipes-graphics/xorg-proto/{xproto_7.0.23.bb => xproto_7.0.24.bb} (72%)

-- 
1.7.9.5




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

* Re: [PATCH 0/8] package upgrades
  2012-07-04 18:17 [PATCH 0/8] package upgrades Laurentiu Palcu
@ 2012-07-09 17:32 ` Saul Wold
  0 siblings, 0 replies; 13+ messages in thread
From: Saul Wold @ 2012-07-09 17:32 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 07/04/2012 11:17 AM, Laurentiu Palcu wrote:
> Hi all.
>
> This is another set of package upgrades. All packages were compiled successfully
> for all architectures. Basic sanity tests for DirectFB were performed using
> core-image-gtk-directfb on qemux86. The rest of the packages were tested with
> core-image-sato on qemux86.
>
> Thanks,
> Laurentiu
>
> The following changes since commit ee89e38d478b5f9e13dd87c9333f9c4d56d51e3e:
>
>    prexport.bbclass: Fix typo in warning: "AUROPR" -> "AUTOPR". (2012-07-04 17:40:38 +0100)
>
> are available in the git repository at:
>
>    git://git.yoctoproject.org/poky-contrib lpalcu/upgrades
>    http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=lpalcu/upgrades
>
> Laurentiu Palcu (8):
>    directfb: upgrade to 1.6.1
>    directfb-examples: upgrade to 1.6.0
>    libx11: upgrade to 1.5.0
>    libx11-trim: upgrade to 1.5.0
>    libx11-diet: upgrade to 1.5.0
>    libxi: upgrade to 1.6.1
>    xinput: upgrade to 1.6.0
>    pixman: upgrade to 0.26.2
>
>   ...xamples_1.5.3.bb => directfb-examples_1.6.0.bb} |    4 +-
>   meta/recipes-graphics/directfb/directfb.inc        |    4 +-
>   .../directfb/fix-compilation-with-zlib.patch       |   29 +++++
>   ...se-ARM-assembler-for-atomic-operations-on.patch |   27 ----
>   ...ibdirect-remove-include-of-linux-config.h.patch |   29 -----
>   meta/recipes-graphics/directfb/directfb_1.5.3.bb   |   23 ----
>   meta/recipes-graphics/directfb/directfb_1.6.1.bb   |   23 ++++
>   meta/recipes-graphics/xorg-app/xinput_1.5.3.bb     |   14 --
>   meta/recipes-graphics/xorg-app/xinput_1.6.0.bb     |   15 +++
>   ...quest-as-substitute-for-GetReq-GetReqExtr.patch |  137 --------------------
>   .../keysymdef_include.patch                        |    0
>   .../makekeys_crosscompile.patch                    |    0
>   .../x11_disable_makekeys.patch                     |   13 +-
>   .../X18NCMSstubs.diff                              |    2 +-
>   .../fix-disable-xlocale.diff                       |    0
>   .../fix-utf8-wrong-define.patch                    |    0
>   .../keysymdef_include.patch                        |    0
>   .../x11_disable_makekeys.patch                     |   13 +-
>   .../{libx11-diet_1.4.4.bb => libx11-diet_1.5.0.bb} |    4 +-
>   .../keysymdef_include.patch                        |    0
>   .../makekeys_crosscompile.patch                    |    0
>   .../x11_disable_makekeys.patch                     |   20 +--
>   .../{libx11-trim_1.4.4.bb => libx11-trim_1.5.0.bb} |    6 +-
>   .../xorg-lib/{libx11_1.4.4.bb => libx11_1.5.0.bb}  |    7 +-
>   .../xorg-lib/{libxi_1.4.5.bb => libxi_1.6.1.bb}    |    4 +-
>   .../{pixman_0.25.2.bb => pixman_0.26.2.bb}         |    9 +-
>   26 files changed, 114 insertions(+), 269 deletions(-)
>   rename meta/recipes-graphics/directfb/{directfb-examples_1.5.3.bb => directfb-examples_1.6.0.bb} (77%)
>   create mode 100644 meta/recipes-graphics/directfb/directfb/fix-compilation-with-zlib.patch
>   delete mode 100644 meta/recipes-graphics/directfb/directfb/libdirect-Use-ARM-assembler-for-atomic-operations-on.patch
>   delete mode 100644 meta/recipes-graphics/directfb/directfb/libdirect-remove-include-of-linux-config.h.patch
>   delete mode 100644 meta/recipes-graphics/directfb/directfb_1.5.3.bb
>   create mode 100644 meta/recipes-graphics/directfb/directfb_1.6.1.bb
>   delete mode 100644 meta/recipes-graphics/xorg-app/xinput_1.5.3.bb
>   create mode 100644 meta/recipes-graphics/xorg-app/xinput_1.6.0.bb
>   delete mode 100644 meta/recipes-graphics/xorg-lib/libx11-1.4.4/0001-Add-_XGetRequest-as-substitute-for-GetReq-GetReqExtr.patch
>   rename meta/recipes-graphics/xorg-lib/{libx11-1.4.4 => libx11-1.5.0}/keysymdef_include.patch (100%)
>   rename meta/recipes-graphics/xorg-lib/{libx11-1.4.4 => libx11-1.5.0}/makekeys_crosscompile.patch (100%)
>   rename meta/recipes-graphics/xorg-lib/{libx11-1.4.4 => libx11-1.5.0}/x11_disable_makekeys.patch (74%)
>   rename meta/recipes-graphics/xorg-lib/{libx11-diet-1.4.4 => libx11-diet-1.5.0}/X18NCMSstubs.diff (99%)
>   rename meta/recipes-graphics/xorg-lib/{libx11-diet-1.4.4 => libx11-diet-1.5.0}/fix-disable-xlocale.diff (100%)
>   rename meta/recipes-graphics/xorg-lib/{libx11-diet-1.4.4 => libx11-diet-1.5.0}/fix-utf8-wrong-define.patch (100%)
>   rename meta/recipes-graphics/xorg-lib/{libx11-diet-1.4.4 => libx11-diet-1.5.0}/keysymdef_include.patch (100%)
>   rename meta/recipes-graphics/xorg-lib/{libx11-trim-1.4.4 => libx11-diet-1.5.0}/x11_disable_makekeys.patch (74%)
>   rename meta/recipes-graphics/xorg-lib/{libx11-diet_1.4.4.bb => libx11-diet_1.5.0.bb} (86%)
>   rename meta/recipes-graphics/xorg-lib/{libx11-trim-1.4.4 => libx11-trim-1.5.0}/keysymdef_include.patch (100%)
>   rename meta/recipes-graphics/xorg-lib/{libx11-trim-1.4.4 => libx11-trim-1.5.0}/makekeys_crosscompile.patch (100%)
>   rename meta/recipes-graphics/xorg-lib/{libx11-diet-1.4.4 => libx11-trim-1.5.0}/x11_disable_makekeys.patch (62%)
>   rename meta/recipes-graphics/xorg-lib/{libx11-trim_1.4.4.bb => libx11-trim_1.5.0.bb} (79%)
>   rename meta/recipes-graphics/xorg-lib/{libx11_1.4.4.bb => libx11_1.5.0.bb} (67%)
>   rename meta/recipes-graphics/xorg-lib/{libxi_1.4.5.bb => libxi_1.6.1.bb} (82%)
>   rename meta/recipes-graphics/xorg-lib/{pixman_0.25.2.bb => pixman_0.26.2.bb} (75%)
>

Merged into OE-Core

Thanks
	Sau!




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

* [PATCH 0/8] package upgrades
@ 2012-07-04 18:17 Laurentiu Palcu
  2012-07-09 17:32 ` Saul Wold
  0 siblings, 1 reply; 13+ messages in thread
From: Laurentiu Palcu @ 2012-07-04 18:17 UTC (permalink / raw)
  To: openembedded-core

Hi all.

This is another set of package upgrades. All packages were compiled successfully
for all architectures. Basic sanity tests for DirectFB were performed using
core-image-gtk-directfb on qemux86. The rest of the packages were tested with
core-image-sato on qemux86.

Thanks,
Laurentiu

The following changes since commit ee89e38d478b5f9e13dd87c9333f9c4d56d51e3e:

  prexport.bbclass: Fix typo in warning: "AUROPR" -> "AUTOPR". (2012-07-04 17:40:38 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib lpalcu/upgrades
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=lpalcu/upgrades

Laurentiu Palcu (8):
  directfb: upgrade to 1.6.1
  directfb-examples: upgrade to 1.6.0
  libx11: upgrade to 1.5.0
  libx11-trim: upgrade to 1.5.0
  libx11-diet: upgrade to 1.5.0
  libxi: upgrade to 1.6.1
  xinput: upgrade to 1.6.0
  pixman: upgrade to 0.26.2

 ...xamples_1.5.3.bb => directfb-examples_1.6.0.bb} |    4 +-
 meta/recipes-graphics/directfb/directfb.inc        |    4 +-
 .../directfb/fix-compilation-with-zlib.patch       |   29 +++++
 ...se-ARM-assembler-for-atomic-operations-on.patch |   27 ----
 ...ibdirect-remove-include-of-linux-config.h.patch |   29 -----
 meta/recipes-graphics/directfb/directfb_1.5.3.bb   |   23 ----
 meta/recipes-graphics/directfb/directfb_1.6.1.bb   |   23 ++++
 meta/recipes-graphics/xorg-app/xinput_1.5.3.bb     |   14 --
 meta/recipes-graphics/xorg-app/xinput_1.6.0.bb     |   15 +++
 ...quest-as-substitute-for-GetReq-GetReqExtr.patch |  137 --------------------
 .../keysymdef_include.patch                        |    0
 .../makekeys_crosscompile.patch                    |    0
 .../x11_disable_makekeys.patch                     |   13 +-
 .../X18NCMSstubs.diff                              |    2 +-
 .../fix-disable-xlocale.diff                       |    0
 .../fix-utf8-wrong-define.patch                    |    0
 .../keysymdef_include.patch                        |    0
 .../x11_disable_makekeys.patch                     |   13 +-
 .../{libx11-diet_1.4.4.bb => libx11-diet_1.5.0.bb} |    4 +-
 .../keysymdef_include.patch                        |    0
 .../makekeys_crosscompile.patch                    |    0
 .../x11_disable_makekeys.patch                     |   20 +--
 .../{libx11-trim_1.4.4.bb => libx11-trim_1.5.0.bb} |    6 +-
 .../xorg-lib/{libx11_1.4.4.bb => libx11_1.5.0.bb}  |    7 +-
 .../xorg-lib/{libxi_1.4.5.bb => libxi_1.6.1.bb}    |    4 +-
 .../{pixman_0.25.2.bb => pixman_0.26.2.bb}         |    9 +-
 26 files changed, 114 insertions(+), 269 deletions(-)
 rename meta/recipes-graphics/directfb/{directfb-examples_1.5.3.bb => directfb-examples_1.6.0.bb} (77%)
 create mode 100644 meta/recipes-graphics/directfb/directfb/fix-compilation-with-zlib.patch
 delete mode 100644 meta/recipes-graphics/directfb/directfb/libdirect-Use-ARM-assembler-for-atomic-operations-on.patch
 delete mode 100644 meta/recipes-graphics/directfb/directfb/libdirect-remove-include-of-linux-config.h.patch
 delete mode 100644 meta/recipes-graphics/directfb/directfb_1.5.3.bb
 create mode 100644 meta/recipes-graphics/directfb/directfb_1.6.1.bb
 delete mode 100644 meta/recipes-graphics/xorg-app/xinput_1.5.3.bb
 create mode 100644 meta/recipes-graphics/xorg-app/xinput_1.6.0.bb
 delete mode 100644 meta/recipes-graphics/xorg-lib/libx11-1.4.4/0001-Add-_XGetRequest-as-substitute-for-GetReq-GetReqExtr.patch
 rename meta/recipes-graphics/xorg-lib/{libx11-1.4.4 => libx11-1.5.0}/keysymdef_include.patch (100%)
 rename meta/recipes-graphics/xorg-lib/{libx11-1.4.4 => libx11-1.5.0}/makekeys_crosscompile.patch (100%)
 rename meta/recipes-graphics/xorg-lib/{libx11-1.4.4 => libx11-1.5.0}/x11_disable_makekeys.patch (74%)
 rename meta/recipes-graphics/xorg-lib/{libx11-diet-1.4.4 => libx11-diet-1.5.0}/X18NCMSstubs.diff (99%)
 rename meta/recipes-graphics/xorg-lib/{libx11-diet-1.4.4 => libx11-diet-1.5.0}/fix-disable-xlocale.diff (100%)
 rename meta/recipes-graphics/xorg-lib/{libx11-diet-1.4.4 => libx11-diet-1.5.0}/fix-utf8-wrong-define.patch (100%)
 rename meta/recipes-graphics/xorg-lib/{libx11-diet-1.4.4 => libx11-diet-1.5.0}/keysymdef_include.patch (100%)
 rename meta/recipes-graphics/xorg-lib/{libx11-trim-1.4.4 => libx11-diet-1.5.0}/x11_disable_makekeys.patch (74%)
 rename meta/recipes-graphics/xorg-lib/{libx11-diet_1.4.4.bb => libx11-diet_1.5.0.bb} (86%)
 rename meta/recipes-graphics/xorg-lib/{libx11-trim-1.4.4 => libx11-trim-1.5.0}/keysymdef_include.patch (100%)
 rename meta/recipes-graphics/xorg-lib/{libx11-trim-1.4.4 => libx11-trim-1.5.0}/makekeys_crosscompile.patch (100%)
 rename meta/recipes-graphics/xorg-lib/{libx11-diet-1.4.4 => libx11-trim-1.5.0}/x11_disable_makekeys.patch (62%)
 rename meta/recipes-graphics/xorg-lib/{libx11-trim_1.4.4.bb => libx11-trim_1.5.0.bb} (79%)
 rename meta/recipes-graphics/xorg-lib/{libx11_1.4.4.bb => libx11_1.5.0.bb} (67%)
 rename meta/recipes-graphics/xorg-lib/{libxi_1.4.5.bb => libxi_1.6.1.bb} (82%)
 rename meta/recipes-graphics/xorg-lib/{pixman_0.25.2.bb => pixman_0.26.2.bb} (75%)

-- 
1.7.9.5




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

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

Thread overview: 13+ 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
  -- strict thread matches above, loose matches on Subject: below --
2015-04-20  8:09 [PATCH 0/8] Package Upgrades Robert Yang
2013-05-10 15:04 [PATCH 0/8] Package upgrades Laurentiu Palcu
2012-07-04 18:17 [PATCH 0/8] package upgrades Laurentiu Palcu
2012-07-09 17:32 ` Saul Wold

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.