All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/30] psplash: upgrade to latest revision
@ 2021-10-27  9:07 Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 02/30] stress-ng: convert to git, website is down Alexander Kanavin
                   ` (28 more replies)
  0 siblings, 29 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-core/psplash/psplash_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/psplash/psplash_git.bb b/meta/recipes-core/psplash/psplash_git.bb
index 1be7ece79d..28f385b7ba 100644
--- a/meta/recipes-core/psplash/psplash_git.bb
+++ b/meta/recipes-core/psplash/psplash_git.bb
@@ -6,7 +6,7 @@ LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://psplash.h;beginline=1;endline=8;md5=8f232c1e95929eacab37f00900580224"
 DEPENDS = "gdk-pixbuf-native"
 
-SRCREV = "0a902f7cd875ccf018456451be369f05fa55f962"
+SRCREV = "fdbd111d6bab2fbbae62a041123fc6b644aa97aa"
 PV = "0.1+git${SRCPV}"
 PR = "r15"
 
-- 
2.20.1



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

* [PATCH 02/30] stress-ng: convert to git, website is down
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 03/30] json-c: correct upstream version check Alexander Kanavin
                   ` (27 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 ...write-the-timestamp-into-compressed-.patch | 26 +++++++++++++++++++
 .../stress-ng/stress-ng_0.13.00.bb            |  8 +++---
 2 files changed, 31 insertions(+), 3 deletions(-)
 create mode 100644 meta/recipes-extended/stress-ng/stress-ng/0001-Makefile-do-not-write-the-timestamp-into-compressed-.patch

diff --git a/meta/recipes-extended/stress-ng/stress-ng/0001-Makefile-do-not-write-the-timestamp-into-compressed-.patch b/meta/recipes-extended/stress-ng/stress-ng/0001-Makefile-do-not-write-the-timestamp-into-compressed-.patch
new file mode 100644
index 0000000000..21a410f605
--- /dev/null
+++ b/meta/recipes-extended/stress-ng/stress-ng/0001-Makefile-do-not-write-the-timestamp-into-compressed-.patch
@@ -0,0 +1,26 @@
+From 2386cd8f907b379ae5cc1ce2888abef7d30e709a Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin <alex@linutronix.de>
+Date: Sat, 23 Oct 2021 20:20:59 +0200
+Subject: [PATCH] Makefile: do not write the timestamp into compressed manpage.
+
+This helps reproducibility.
+
+Upstream-Status: Submitted [https://github.com/ColinIanKing/stress-ng/pull/156]
+Signed-off-by: Alexander Kanavin <alex@linutronix.de>
+---
+ Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index 886018f9..f4290f9c 100644
+--- a/Makefile
++++ b/Makefile
+@@ -468,7 +468,7 @@ git-commit-id.h:
+ $(OBJS): stress-ng.h Makefile
+ 
+ stress-ng.1.gz: stress-ng.1
+-	$(V)gzip -c $< > $@
++	$(V)gzip -n -c $< > $@
+ 
+ .PHONY: dist
+ dist:
diff --git a/meta/recipes-extended/stress-ng/stress-ng_0.13.00.bb b/meta/recipes-extended/stress-ng/stress-ng_0.13.00.bb
index 198f7e87c7..5889569e50 100644
--- a/meta/recipes-extended/stress-ng/stress-ng_0.13.00.bb
+++ b/meta/recipes-extended/stress-ng/stress-ng_0.13.00.bb
@@ -1,14 +1,16 @@
 SUMMARY = "System load testing utility"
 DESCRIPTION = "Deliberately simple workload generator for POSIX systems. It \
 imposes a configurable amount of CPU, memory, I/O, and disk stress on the system."
-HOMEPAGE = "https://kernel.ubuntu.com/~cking/stress-ng/"
+HOMEPAGE = "https://github.com/ColinIanKing/stress-ng#readme"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
-SRC_URI = "https://kernel.ubuntu.com/~cking/tarballs/${BPN}/${BP}.tar.xz \
+SRC_URI = "git://github.com/ColinIanKing/stress-ng.git;protocol=https \
            file://0001-Do-not-preserve-ownership-when-installing-example-jo.patch \
+           file://0001-Makefile-do-not-write-the-timestamp-into-compressed-.patch \
            "
-SRC_URI[sha256sum] = "1cefe4a3057c1522b146e62f61b80ce6e2e99da2d85ebe25bc03fc45228e58cd"
+SRCREV = "61b454b4a3a9d052e63c78a9574ccf8a650575dc"
+S = "${WORKDIR}/git"
 
 DEPENDS = "coreutils-native"
 
-- 
2.20.1



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

* [PATCH 03/30] json-c: correct upstream version check
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 02/30] stress-ng: convert to git, website is down Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 04/30] createrepo-c: upgrade 0.17.6 -> 0.17.7 Alexander Kanavin
                   ` (26 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 meta/recipes-devtools/json-c/json-c_0.15.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/json-c/json-c_0.15.bb b/meta/recipes-devtools/json-c/json-c_0.15.bb
index 863463ca51..a4673a2f0e 100644
--- a/meta/recipes-devtools/json-c/json-c_0.15.bb
+++ b/meta/recipes-devtools/json-c/json-c_0.15.bb
@@ -8,7 +8,7 @@ SRC_URI = "https://s3.amazonaws.com/json-c_releases/releases/${BP}.tar.gz"
 
 SRC_URI[sha256sum] = "b8d80a1ddb718b3ba7492916237bbf86609e9709fb007e7f7d4322f02341a4c6"
 
-UPSTREAM_CHECK_URI = "https://github.com/${BPN}/${BPN}/releases"
+UPSTREAM_CHECK_URI = "https://github.com/${BPN}/${BPN}/tags"
 UPSTREAM_CHECK_REGEX = "json-c-(?P<pver>\d+(\.\d+)+)-\d+"
 
 RPROVIDES:${PN} = "libjson"
-- 
2.20.1



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

* [PATCH 04/30] createrepo-c: upgrade 0.17.6 -> 0.17.7
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 02/30] stress-ng: convert to git, website is down Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 03/30] json-c: correct upstream version check Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 05/30] python3-numpy: upgrade 1.21.2 -> 1.21.3 Alexander Kanavin
                   ` (25 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../{createrepo-c_0.17.6.bb => createrepo-c_0.17.7.bb}          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/createrepo-c/{createrepo-c_0.17.6.bb => createrepo-c_0.17.7.bb} (96%)

diff --git a/meta/recipes-devtools/createrepo-c/createrepo-c_0.17.6.bb b/meta/recipes-devtools/createrepo-c/createrepo-c_0.17.7.bb
similarity index 96%
rename from meta/recipes-devtools/createrepo-c/createrepo-c_0.17.6.bb
rename to meta/recipes-devtools/createrepo-c/createrepo-c_0.17.7.bb
index f9fa8f52d3..739a2dcf7d 100644
--- a/meta/recipes-devtools/createrepo-c/createrepo-c_0.17.6.bb
+++ b/meta/recipes-devtools/createrepo-c/createrepo-c_0.17.7.bb
@@ -8,7 +8,7 @@ SRC_URI = "git://github.com/rpm-software-management/createrepo_c \
            file://0001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch \
            "
 
-SRCREV = "d764fe9b386aa8da1aca58b9bc3dc061f52e8f28"
+SRCREV = "c4e6808c710ec68e56bd93b0366f3b6cbeee3167"
 
 S = "${WORKDIR}/git"
 
-- 
2.20.1



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

* [PATCH 05/30] python3-numpy: upgrade 1.21.2 -> 1.21.3
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (2 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 04/30] createrepo-c: upgrade 0.17.6 -> 0.17.7 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 06/30] python3-pip: upgrade 21.3 -> 21.3.1 Alexander Kanavin
                   ` (24 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../{python3-numpy_1.21.2.bb => python3-numpy_1.21.3.bb}        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python-numpy/{python3-numpy_1.21.2.bb => python3-numpy_1.21.3.bb} (96%)

diff --git a/meta/recipes-devtools/python-numpy/python3-numpy_1.21.2.bb b/meta/recipes-devtools/python-numpy/python3-numpy_1.21.3.bb
similarity index 96%
rename from meta/recipes-devtools/python-numpy/python3-numpy_1.21.2.bb
rename to meta/recipes-devtools/python-numpy/python3-numpy_1.21.3.bb
index 8e09585712..4a289c2c7b 100644
--- a/meta/recipes-devtools/python-numpy/python3-numpy_1.21.2.bb
+++ b/meta/recipes-devtools/python-numpy/python3-numpy_1.21.3.bb
@@ -12,7 +12,7 @@ SRC_URI = "https://github.com/${SRCNAME}/${SRCNAME}/releases/download/v${PV}/${S
            file://0001-numpy-core-Define-RISCV-32-support.patch \
            file://run-ptest \
 "
-SRC_URI[sha256sum] = "76af194fbc117934ec5bbe2ff15177adbd05aeed23f18ee209ed88edcd777e05"
+SRC_URI[sha256sum] = "d0bba24083c01ae43457514d875f10d9ce4c1125d55b1e2573277b2410f2d068"
 
 UPSTREAM_CHECK_URI = "https://github.com/numpy/numpy/releases"
 UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)\.tar"
-- 
2.20.1



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

* [PATCH 06/30] python3-pip: upgrade 21.3 -> 21.3.1
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (3 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 05/30] python3-numpy: upgrade 1.21.2 -> 1.21.3 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 07/30] python3-setuptools: upgrade 58.2.0 -> 58.3.0 Alexander Kanavin
                   ` (23 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../python/{python3-pip_21.3.bb => python3-pip_21.3.1.bb}       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-pip_21.3.bb => python3-pip_21.3.1.bb} (89%)

diff --git a/meta/recipes-devtools/python/python3-pip_21.3.bb b/meta/recipes-devtools/python/python3-pip_21.3.1.bb
similarity index 89%
rename from meta/recipes-devtools/python/python3-pip_21.3.bb
rename to meta/recipes-devtools/python/python3-pip_21.3.1.bb
index 924a564f62..6ddb1d6296 100644
--- a/meta/recipes-devtools/python/python3-pip_21.3.bb
+++ b/meta/recipes-devtools/python/python3-pip_21.3.1.bb
@@ -10,7 +10,7 @@ inherit pypi distutils3
 
 SRC_URI += "file://0001-change-shebang-to-python3.patch"
 
-SRC_URI[sha256sum] = "741a61baab1dbce2d8ca415effa48a2b6a964564f81a9f4f1fce4c433346c034"
+SRC_URI[sha256sum] = "fd11ba3d0fdb4c07fbc5ecbba0b1b719809420f25038f8ee3cd913d3faa3033a"
 
 do_install:append() {
     # Install as pip3 and leave pip2 as default
-- 
2.20.1



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

* [PATCH 07/30] python3-setuptools: upgrade 58.2.0 -> 58.3.0
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (4 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 06/30] python3-pip: upgrade 21.3 -> 21.3.1 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 08/30] msmtp: upgrade 1.8.17 -> 1.8.18 Alexander Kanavin
                   ` (22 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 ...01-conditionally-do-not-fetch-code-by-easy_install.patch | 6 +++---
 ...n3-setuptools_58.2.0.bb => python3-setuptools_58.3.0.bb} | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-devtools/python/{python3-setuptools_58.2.0.bb => python3-setuptools_58.3.0.bb} (94%)

diff --git a/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch b/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch
index d1c77a971c..46546ebba6 100644
--- a/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch
+++ b/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch
@@ -1,4 +1,4 @@
-From 543f12f43e10b242802009ac1d03ded800526934 Mon Sep 17 00:00:00 2001
+From 58b614411867a31cf5f9684a45fe519b8e4f3e7b Mon Sep 17 00:00:00 2001
 From: Hongxu Jia <hongxu.jia@windriver.com>
 Date: Tue, 17 Jul 2018 10:13:38 +0800
 Subject: [PATCH] conditionally do not fetch code by easy_install
@@ -15,10 +15,10 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
  1 file changed, 5 insertions(+)
 
 diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
-index b88c3e9..dcd2898 100644
+index 1aed0e8..f491c0a 100644
 --- a/setuptools/command/easy_install.py
 +++ b/setuptools/command/easy_install.py
-@@ -636,6 +636,11 @@ class easy_install(Command):
+@@ -642,6 +642,11 @@ class easy_install(Command):
              os.path.exists(tmpdir) and rmtree(tmpdir)
  
      def easy_install(self, spec, deps=False):
diff --git a/meta/recipes-devtools/python/python3-setuptools_58.2.0.bb b/meta/recipes-devtools/python/python3-setuptools_58.3.0.bb
similarity index 94%
rename from meta/recipes-devtools/python/python3-setuptools_58.2.0.bb
rename to meta/recipes-devtools/python/python3-setuptools_58.3.0.bb
index b37c44854c..47107ba61d 100644
--- a/meta/recipes-devtools/python/python3-setuptools_58.2.0.bb
+++ b/meta/recipes-devtools/python/python3-setuptools_58.3.0.bb
@@ -13,7 +13,7 @@ SRC_URI += "\
     file://0001-_distutils-sysconfig-append-STAGING_LIBDIR-python-sy.patch \
 "
 
-SRC_URI[sha256sum] = "2c55bdb85d5bb460bd2e3b12052b677879cffcf46c0c688f2e5bf51d36001145"
+SRC_URI[sha256sum] = "b0c2461641b58fe30e11d4c3dfba316c513bdf9ec85f9fed0c871c678447205e"
 
 DEPENDS += "${PYTHON_PN}"
 
-- 
2.20.1



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

* [PATCH 08/30] msmtp: upgrade 1.8.17 -> 1.8.18
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (5 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 07/30] python3-setuptools: upgrade 58.2.0 -> 58.3.0 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 09/30] gi-docgen: upgrade 2021.7 -> 2021.8 Alexander Kanavin
                   ` (21 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../recipes-extended/msmtp/{msmtp_1.8.17.bb => msmtp_1.8.18.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/msmtp/{msmtp_1.8.17.bb => msmtp_1.8.18.bb} (91%)

diff --git a/meta/recipes-extended/msmtp/msmtp_1.8.17.bb b/meta/recipes-extended/msmtp/msmtp_1.8.18.bb
similarity index 91%
rename from meta/recipes-extended/msmtp/msmtp_1.8.17.bb
rename to meta/recipes-extended/msmtp/msmtp_1.8.18.bb
index b451ff7f28..1a6cf72392 100644
--- a/meta/recipes-extended/msmtp/msmtp_1.8.17.bb
+++ b/meta/recipes-extended/msmtp/msmtp_1.8.18.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 UPSTREAM_CHECK_URI = "https://marlam.de/msmtp/download/"
 
 SRC_URI = "https://marlam.de/${BPN}/releases/${BP}.tar.xz"
-SRC_URI[sha256sum] = "0fddbe74c1a9dcf6461b4a1b0db3e4d34266184500c403d7f107ad42db4ec4d3"
+SRC_URI[sha256sum] = "14fc62af37ebdcc5ed19a245a05eb8376efe7016118f00c9c594bc999d5560a5"
 
 inherit gettext autotools update-alternatives pkgconfig
 
-- 
2.20.1



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

* [PATCH 09/30] gi-docgen: upgrade 2021.7 -> 2021.8
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (6 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 08/30] msmtp: upgrade 1.8.17 -> 1.8.18 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 10/30] piglit: upgrade to latest revision Alexander Kanavin
                   ` (20 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-gnome/gi-docgen/gi-docgen_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-gnome/gi-docgen/gi-docgen_git.bb b/meta/recipes-gnome/gi-docgen/gi-docgen_git.bb
index f319f96b0e..bacf983810 100644
--- a/meta/recipes-gnome/gi-docgen/gi-docgen_git.bb
+++ b/meta/recipes-gnome/gi-docgen/gi-docgen_git.bb
@@ -10,8 +10,8 @@ LIC_FILES_CHKSUM = "file://gi-docgen.py;beginline=1;endline=5;md5=2dc0f1f0120247
 
 SRC_URI = "git://gitlab.gnome.org/GNOME/gi-docgen.git;protocol=https;branch=main"
 
-PV = "2021.7"
-SRCREV = "8401357079fdd2f61bff0e110d7379635b73ead8"
+PV = "2021.8"
+SRCREV = "a284455af9b3cad179900f6e1f12b59a3d40c06b"
 
 S = "${WORKDIR}/git"
 
-- 
2.20.1



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

* [PATCH 10/30] piglit: upgrade to latest revision
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (7 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 09/30] gi-docgen: upgrade 2021.7 -> 2021.8 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 11/30] libinput: upgrade 1.19.1 -> 1.19.2 Alexander Kanavin
                   ` (19 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-graphics/piglit/piglit_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb
index 4b515cc537..0a3de466c7 100644
--- a/meta/recipes-graphics/piglit/piglit_git.bb
+++ b/meta/recipes-graphics/piglit/piglit_git.bb
@@ -18,7 +18,7 @@ SRC_URI = "git://gitlab.freedesktop.org/mesa/piglit.git;protocol=https;branch=ma
            "
 UPSTREAM_CHECK_COMMITS = "1"
 
-SRCREV = "014c9d09115e15f5a074457a753bf3a43173ef7f"
+SRCREV = "83bc56abf2686e2cd9024a152e121ca4aa524985"
 # (when PV goes above 1.0 remove the trailing r)
 PV = "1.0+gitr${SRCPV}"
 
-- 
2.20.1



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

* [PATCH 11/30] libinput: upgrade 1.19.1 -> 1.19.2
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (8 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 10/30] piglit: upgrade to latest revision Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 12/30] mpg123: upgrade 1.29.0 -> 1.29.2 Alexander Kanavin
                   ` (18 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../wayland/{libinput_1.19.1.bb => libinput_1.19.2.bb}          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/wayland/{libinput_1.19.1.bb => libinput_1.19.2.bb} (95%)

diff --git a/meta/recipes-graphics/wayland/libinput_1.19.1.bb b/meta/recipes-graphics/wayland/libinput_1.19.2.bb
similarity index 95%
rename from meta/recipes-graphics/wayland/libinput_1.19.1.bb
rename to meta/recipes-graphics/wayland/libinput_1.19.2.bb
index adf63933f5..590dee42e5 100644
--- a/meta/recipes-graphics/wayland/libinput_1.19.1.bb
+++ b/meta/recipes-graphics/wayland/libinput_1.19.2.bb
@@ -16,7 +16,7 @@ SRC_URI = "http://www.freedesktop.org/software/${BPN}/${BP}.tar.xz \
            file://run-ptest \
            file://determinism.patch \
            "
-SRC_URI[sha256sum] = "0bdcf5b1783b737854b7af1ca22df67bc36a6fe7c9cfa71f01e9149f9220446d"
+SRC_URI[sha256sum] = "0fc39f0af3ee1a77c60c34bc45391a4d0879169f7c0f7bbbeb5eef590b98b883"
 
 UPSTREAM_CHECK_REGEX = "libinput-(?P<pver>\d+\.\d+\.(?!9\d+)\d+)"
 
-- 
2.20.1



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

* [PATCH 12/30] mpg123: upgrade 1.29.0 -> 1.29.2
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (9 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 11/30] libinput: upgrade 1.19.1 -> 1.19.2 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 13/30] puzzles: upgrade to latest revision Alexander Kanavin
                   ` (17 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../mpg123/{mpg123_1.29.0.bb => mpg123_1.29.2.bb}               | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-multimedia/mpg123/{mpg123_1.29.0.bb => mpg123_1.29.2.bb} (96%)

diff --git a/meta/recipes-multimedia/mpg123/mpg123_1.29.0.bb b/meta/recipes-multimedia/mpg123/mpg123_1.29.2.bb
similarity index 96%
rename from meta/recipes-multimedia/mpg123/mpg123_1.29.0.bb
rename to meta/recipes-multimedia/mpg123/mpg123_1.29.2.bb
index 0f4a36e0d3..ba09e1c619 100644
--- a/meta/recipes-multimedia/mpg123/mpg123_1.29.0.bb
+++ b/meta/recipes-multimedia/mpg123/mpg123_1.29.2.bb
@@ -10,7 +10,7 @@ LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=e7b9c15fcfb986abb4cc5e8400a24169"
 
 SRC_URI = "https://www.mpg123.de/download/${BP}.tar.bz2"
-SRC_URI[sha256sum] = "135e0172dfb6c7937a81f1188c27f9a47b0a337f7637680039ff3ee5fea3ce7d"
+SRC_URI[sha256sum] = "9071214ebdfc1b6ed0c0a85d530010bbb8ebc044cfe5ae5930e83f7e6b7937e6"
 
 UPSTREAM_CHECK_REGEX = "mpg123-(?P<pver>\d+(\.\d+)+)\.tar"
 
-- 
2.20.1



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

* [PATCH 13/30] puzzles: upgrade to latest revision
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (10 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 12/30] mpg123: upgrade 1.29.0 -> 1.29.2 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 14/30] webkitgtk: upgrade 2.34.0 -> 2.34.1 Alexander Kanavin
                   ` (16 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.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 1da9bb3676..1355630cf4 100644
--- a/meta/recipes-sato/puzzles/puzzles_git.bb
+++ b/meta/recipes-sato/puzzles/puzzles_git.bb
@@ -17,7 +17,7 @@ SRC_URI = "git://git.tartarus.org/simon/puzzles.git;branch=main \
            "
 
 UPSTREAM_CHECK_COMMITS = "1"
-SRCREV = "42cbd7688a7f05e0a5d56a603a04293307c1e1b2"
+SRCREV = "ad1c6ade2af0e681fb964a17cc3a031951047068"
 PE = "2"
 PV = "0.0+git${SRCPV}"
 
-- 
2.20.1



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

* [PATCH 14/30] webkitgtk: upgrade 2.34.0 -> 2.34.1
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (11 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 13/30] puzzles: upgrade to latest revision Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 15/30] wpebackend-fdo: upgrade 1.10.0 -> 1.12.0 Alexander Kanavin
                   ` (15 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../webkit/{webkitgtk_2.34.0.bb => webkitgtk_2.34.1.bb}         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-sato/webkit/{webkitgtk_2.34.0.bb => webkitgtk_2.34.1.bb} (98%)

diff --git a/meta/recipes-sato/webkit/webkitgtk_2.34.0.bb b/meta/recipes-sato/webkit/webkitgtk_2.34.1.bb
similarity index 98%
rename from meta/recipes-sato/webkit/webkitgtk_2.34.0.bb
rename to meta/recipes-sato/webkit/webkitgtk_2.34.1.bb
index 906683041d..dde8963d04 100644
--- a/meta/recipes-sato/webkit/webkitgtk_2.34.0.bb
+++ b/meta/recipes-sato/webkit/webkitgtk_2.34.1.bb
@@ -22,7 +22,7 @@ SRC_URI = "https://www.webkitgtk.org/releases/${BPN}-${PV}.tar.xz \
            file://0001-Fix-build-without-opengl-or-es.patch \
            "
 
-SRC_URI[sha256sum] = "880c8ee626f67019f67557ca09e59a23ecf245e60f6173215f1a8823cb09af34"
+SRC_URI[sha256sum] = "443c1316705de024741748e85fe32324d299d9ee68e6feb340b89e4a04073dee"
 
 inherit cmake pkgconfig gobject-introspection perlnative features_check upstream-version-is-even gtk-doc
 
-- 
2.20.1



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

* [PATCH 15/30] wpebackend-fdo: upgrade 1.10.0 -> 1.12.0
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (12 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 14/30] webkitgtk: upgrade 2.34.0 -> 2.34.1 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-29 18:04   ` [OE-core] " Khem Raj
  2021-10-27  9:07 ` [PATCH 16/30] diffoscope: upgrade 187 -> 188 Alexander Kanavin
                   ` (14 subsequent siblings)
  28 siblings, 1 reply; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../{wpebackend-fdo_1.10.0.bb => wpebackend-fdo_1.12.0.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-sato/webkit/{wpebackend-fdo_1.10.0.bb => wpebackend-fdo_1.12.0.bb} (89%)

diff --git a/meta/recipes-sato/webkit/wpebackend-fdo_1.10.0.bb b/meta/recipes-sato/webkit/wpebackend-fdo_1.12.0.bb
similarity index 89%
rename from meta/recipes-sato/webkit/wpebackend-fdo_1.10.0.bb
rename to meta/recipes-sato/webkit/wpebackend-fdo_1.12.0.bb
index f2d640f07a..ba6c54412a 100644
--- a/meta/recipes-sato/webkit/wpebackend-fdo_1.10.0.bb
+++ b/meta/recipes-sato/webkit/wpebackend-fdo_1.12.0.bb
@@ -13,7 +13,7 @@ inherit meson features_check pkgconfig
 REQUIRED_DISTRO_FEATURES = "opengl"
 
 SRC_URI = "https://wpewebkit.org/releases/${BPN}-${PV}.tar.xz"
-SRC_URI[sha256sum] = "b89dfd3500a4dec711132cd7bff72599e67d56a419d000730e14bb99547509cc"
+SRC_URI[sha256sum] = "6239c9c15523410798d66315de6b491712ab30009ba180f3e0dd076d9b0074ac"
 
 # This is a tweak of upstream-version-is-even needed because
 # ipstream directory contains tarballs for other components as well.
-- 
2.20.1



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

* [PATCH 16/30] diffoscope: upgrade 187 -> 188
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (13 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 15/30] wpebackend-fdo: upgrade 1.10.0 -> 1.12.0 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 17/30] libcap: upgrade 2.59 -> 2.60 Alexander Kanavin
                   ` (13 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../diffoscope/{diffoscope_187.bb => diffoscope_188.bb}         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/diffoscope/{diffoscope_187.bb => diffoscope_188.bb} (92%)

diff --git a/meta/recipes-support/diffoscope/diffoscope_187.bb b/meta/recipes-support/diffoscope/diffoscope_188.bb
similarity index 92%
rename from meta/recipes-support/diffoscope/diffoscope_187.bb
rename to meta/recipes-support/diffoscope/diffoscope_188.bb
index e10a068cbb..d4fd112e37 100644
--- a/meta/recipes-support/diffoscope/diffoscope_187.bb
+++ b/meta/recipes-support/diffoscope/diffoscope_188.bb
@@ -12,7 +12,7 @@ PYPI_PACKAGE = "diffoscope"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "e8340880eb9cce0d99498f71bcdb69c6cc4385c972b5bc12e739e71eaca29c5a"
+SRC_URI[sha256sum] = "cdbc401c78d59779ad8ebbb8e2008166f912e77c7ed3be8dc788d36948712ff5"
 
 RDEPENDS:${PN} += "binutils vim squashfs-tools python3-libarchive-c python3-magic python3-rpm"
 
-- 
2.20.1



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

* [PATCH 17/30] libcap: upgrade 2.59 -> 2.60
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (14 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 16/30] diffoscope: upgrade 187 -> 188 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 18/30] vte: upgrade 0.64.2 -> 0.66.0 Alexander Kanavin
                   ` (12 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 ...1-nativesdk-libcap-Raise-the-size-of-arrays-containing.patch | 2 +-
 meta/recipes-support/libcap/{libcap_2.59.bb => libcap_2.60.bb}  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/libcap/{libcap_2.59.bb => libcap_2.60.bb} (96%)

diff --git a/meta/recipes-support/libcap/files/0001-nativesdk-libcap-Raise-the-size-of-arrays-containing.patch b/meta/recipes-support/libcap/files/0001-nativesdk-libcap-Raise-the-size-of-arrays-containing.patch
index 6e43ba3366..89f6bcd65f 100644
--- a/meta/recipes-support/libcap/files/0001-nativesdk-libcap-Raise-the-size-of-arrays-containing.patch
+++ b/meta/recipes-support/libcap/files/0001-nativesdk-libcap-Raise-the-size-of-arrays-containing.patch
@@ -1,4 +1,4 @@
-From 75843ed8238523776683a8660621d74c06597f11 Mon Sep 17 00:00:00 2001
+From 42b3e19d4e584fb9b47fb471e02bb25de90ac641 Mon Sep 17 00:00:00 2001
 From: Hongxu Jia <hongxu.jia@windriver.com>
 Date: Thu, 14 Oct 2021 15:57:36 +0800
 Subject: [PATCH] nativesdk-libcap: Raise the size of arrays containing dl
diff --git a/meta/recipes-support/libcap/libcap_2.59.bb b/meta/recipes-support/libcap/libcap_2.60.bb
similarity index 96%
rename from meta/recipes-support/libcap/libcap_2.59.bb
rename to meta/recipes-support/libcap/libcap_2.60.bb
index 3d2592d962..030198c41b 100644
--- a/meta/recipes-support/libcap/libcap_2.59.bb
+++ b/meta/recipes-support/libcap/libcap_2.60.bb
@@ -16,7 +16,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/libs/security/linux-privs/${BPN}2/${BPN}-${
 SRC_URI:append:class-nativesdk = " \
            file://0001-nativesdk-libcap-Raise-the-size-of-arrays-containing.patch \
            "
-SRC_URI[sha256sum] = "49f64ae40b113e53cbc161e22af7094e3bb4a0611fa33ef5a4257b011779f034"
+SRC_URI[sha256sum] = "06a92076ce39a78bd28089e32085f1bde7f3bfa448fad37d895c2358f760b2eb"
 
 UPSTREAM_CHECK_URI = "https://www.kernel.org/pub/linux/libs/security/linux-privs/${BPN}2/"
 
-- 
2.20.1



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

* [PATCH 18/30] vte: upgrade 0.64.2 -> 0.66.0
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (15 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 17/30] libcap: upgrade 2.59 -> 2.60 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 19/30] ncurses: update 6.2 -> 6.3 Alexander Kanavin
                   ` (11 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

From: Alexander Kanavin <alex.kanavin@gmail.com>

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 ...rrectly-substitute-gtkdoc-qemu-wrapp.patch | 24 +++++++++++++++++++
 .../vte/{vte_0.64.2.bb => vte_0.66.0.bb}      |  5 ++--
 2 files changed, 27 insertions(+), 2 deletions(-)
 create mode 100644 meta/recipes-support/vte/vte/0001-Makefile.docs-correctly-substitute-gtkdoc-qemu-wrapp.patch
 rename meta/recipes-support/vte/{vte_0.64.2.bb => vte_0.66.0.bb} (91%)

diff --git a/meta/recipes-support/vte/vte/0001-Makefile.docs-correctly-substitute-gtkdoc-qemu-wrapp.patch b/meta/recipes-support/vte/vte/0001-Makefile.docs-correctly-substitute-gtkdoc-qemu-wrapp.patch
new file mode 100644
index 0000000000..c69a52e5d0
--- /dev/null
+++ b/meta/recipes-support/vte/vte/0001-Makefile.docs-correctly-substitute-gtkdoc-qemu-wrapp.patch
@@ -0,0 +1,24 @@
+From daa30d0039397a735d49ea535305ed0bc5f9d73b Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin <alex@linutronix.de>
+Date: Tue, 26 Oct 2021 09:38:42 +0200
+Subject: [PATCH] Makefile.docs: correctly substitute gtkdoc qemu wrapper
+
+Upstream-Status: Inappropriate [oe-core specific]
+Signed-off-by: Alexander Kanavin <alex@linutronix.de>
+---
+ doc/reference/Makefile.docs | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/doc/reference/Makefile.docs b/doc/reference/Makefile.docs
+index b18f0a4..da18440 100644
+--- a/doc/reference/Makefile.docs
++++ b/doc/reference/Makefile.docs
+@@ -233,7 +233,7 @@ INSTALL_DATA = $(INSTALL) -m 644
+ 
+ GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(CPPFLAGS) $(CFLAGS)
+ GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(CFLAGS) $(LDFLAGS)
+-GTKDOC_RUN =
++GTKDOC_RUN = $(top_builddir)/gtkdoc-qemuwrapper
+ 
+ GTKDOC_CHECK_PATH = gtkdoc-check
+ GTKDOC_REBASE = gtkdoc-rebase
diff --git a/meta/recipes-support/vte/vte_0.64.2.bb b/meta/recipes-support/vte/vte_0.66.0.bb
similarity index 91%
rename from meta/recipes-support/vte/vte_0.64.2.bb
rename to meta/recipes-support/vte/vte_0.66.0.bb
index a79f2e4451..6676b7feeb 100644
--- a/meta/recipes-support/vte/vte_0.64.2.bb
+++ b/meta/recipes-support/vte/vte_0.66.0.bb
@@ -19,8 +19,9 @@ GIR_MESON_OPTION = 'gir'
 inherit gnomebase gtk-doc features_check upstream-version-is-even gobject-introspection
 
 # vapigen.m4 is required when vala is not present (but the one from vala should be used normally)
-SRC_URI += "file://0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch"
-SRC_URI[archive.sha256sum] = "2b3c820b65a667c1d8859ba20478be626d1519cc3159dac25f703330c6d07e18"
+SRC_URI += "file://0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch \
+            file://0001-Makefile.docs-correctly-substitute-gtkdoc-qemu-wrapp.patch"
+SRC_URI[archive.sha256sum] = "d0813ac00fb1d74d88851e765f755d496c83e097097358ea1baadb38b37b7b33"
 
 ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
 
-- 
2.20.1



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

* [PATCH 19/30] ncurses: update 6.2 -> 6.3
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (16 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 18/30] vte: upgrade 0.64.2 -> 0.66.0 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 20/30] tzdata: update 2021d -> 2021e Alexander Kanavin
                   ` (10 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 .../files/0002-configure-reproducible.patch   | 26 +++++++++----------
 ...-Do-not-include-LDFLAGS-in-generated.patch |  9 ++++---
 .../{ncurses_6.2.bb => ncurses_6.3.bb}        |  2 +-
 3 files changed, 18 insertions(+), 19 deletions(-)
 rename meta/recipes-core/ncurses/{ncurses_6.2.bb => ncurses_6.3.bb} (91%)

diff --git a/meta/recipes-core/ncurses/files/0002-configure-reproducible.patch b/meta/recipes-core/ncurses/files/0002-configure-reproducible.patch
index 572195611e..66f26c06ab 100644
--- a/meta/recipes-core/ncurses/files/0002-configure-reproducible.patch
+++ b/meta/recipes-core/ncurses/files/0002-configure-reproducible.patch
@@ -1,7 +1,7 @@
-From 2a53c03ffa90f0050a949fc5920f0df3e668ff42 Mon Sep 17 00:00:00 2001
+From ec87e53066a9942e9aaba817d71268342f5e83b9 Mon Sep 17 00:00:00 2001
 From: Hongxu Jia <hongxu.jia@windriver.com>
 Date: Wed, 16 Aug 2017 14:45:27 +0800
-Subject: [PATCH 2/2] configure: reproducible
+Subject: [PATCH] configure: reproducible
 
 "configure" enforces -U for ar flags, breaking deterministic builds.
 The flag was added to fix some vaguely specified "recent POSIX binutil
@@ -13,23 +13,21 @@ Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
 Rebase to 6.1
 
 Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+
 ---
  configure | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/configure b/configure
-index adead92..fa4fdb7 100755
+index 421cf859..a1b7840d 100755
 --- a/configure
 +++ b/configure
-@@ -4503,7 +4503,7 @@ if test "${cf_cv_ar_flags+set}" = set; then
- else
- 
- 	cf_cv_ar_flags=unknown
--	for cf_ar_flags in -curvU -curv curv -crv crv -cqv cqv -rv rv
-+	for cf_ar_flags in -curv curv -crv crv -cqv cqv -rv rv
- 	do
+@@ -5072,7 +5072,7 @@ else
+ 		;;
+ 	(*)
+ 		cf_cv_ar_flags=unknown
+-		for cf_ar_flags in -curvU -curv curv -crv crv -cqv cqv -rv rv
++		for cf_ar_flags in -curv curv -crv crv -cqv cqv -rv rv
+ 		do
  
- 		# check if $ARFLAGS already contains this choice
--- 
-1.8.3.1
-
+ 			# check if $ARFLAGS already contains this choice
diff --git a/meta/recipes-core/ncurses/files/0003-gen-pkgconfig.in-Do-not-include-LDFLAGS-in-generated.patch b/meta/recipes-core/ncurses/files/0003-gen-pkgconfig.in-Do-not-include-LDFLAGS-in-generated.patch
index 1eb17767a0..a15694d4d4 100644
--- a/meta/recipes-core/ncurses/files/0003-gen-pkgconfig.in-Do-not-include-LDFLAGS-in-generated.patch
+++ b/meta/recipes-core/ncurses/files/0003-gen-pkgconfig.in-Do-not-include-LDFLAGS-in-generated.patch
@@ -1,4 +1,4 @@
-From 3b3e87934bb6d8511261d7c3d6e39b4f71849272 Mon Sep 17 00:00:00 2001
+From 10cd0c12a6e14fb4f0498c299c1dd32720b710da Mon Sep 17 00:00:00 2001
 From: Nathan Rossi <nathan@nathanrossi.com>
 Date: Mon, 14 Dec 2020 13:39:02 +1000
 Subject: [PATCH] gen-pkgconfig.in: Do not include LDFLAGS in generated pc
@@ -10,19 +10,20 @@ includes build host specific paths and options (e.g. uninative and
 
 Upstream-Status: Inappropriate [OE Specific]
 Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
+
 ---
  misc/gen-pkgconfig.in | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/misc/gen-pkgconfig.in b/misc/gen-pkgconfig.in
-index 8f00b824b9..009d215663 100644
+index a45dd54f..85273054 100644
 --- a/misc/gen-pkgconfig.in
 +++ b/misc/gen-pkgconfig.in
-@@ -80,7 +80,7 @@ if [ "$includedir" != "/usr/include" ]; then
+@@ -83,7 +83,7 @@ if [ "$includedir" != "/usr/include" ]; then
  fi
  
  lib_flags=
--for opt in -L$libdir @LDFLAGS@ @EXTRA_LDFLAGS@ @LIBS@
+-for opt in -L$libdir @EXTRA_PKG_LDFLAGS@ @LIBS@
 +for opt in -L$libdir @LIBS@
  do
  	case $opt in
diff --git a/meta/recipes-core/ncurses/ncurses_6.2.bb b/meta/recipes-core/ncurses/ncurses_6.3.bb
similarity index 91%
rename from meta/recipes-core/ncurses/ncurses_6.2.bb
rename to meta/recipes-core/ncurses/ncurses_6.3.bb
index e7d7396a20..f0256dad22 100644
--- a/meta/recipes-core/ncurses/ncurses_6.2.bb
+++ b/meta/recipes-core/ncurses/ncurses_6.3.bb
@@ -5,7 +5,7 @@ SRC_URI += "file://0001-tic-hang.patch \
            file://0003-gen-pkgconfig.in-Do-not-include-LDFLAGS-in-generated.patch \
            "
 # commit id corresponds to the revision in package version
-SRCREV = "a669013cd5e9d6434e5301348ea51baf306c93c4"
+SRCREV = "51d0fd9cc3edb975f04224f29f777f8f448e8ced"
 S = "${WORKDIR}/git"
 EXTRA_OECONF += "--with-abi-version=5"
 UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)$"
-- 
2.20.1



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

* [PATCH 20/30] tzdata: update 2021d -> 2021e
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (17 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 19/30] ncurses: update 6.2 -> 6.3 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 21/30] asciidoc: update 9.1.1 -> 10.0.0 Alexander Kanavin
                   ` (9 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 meta/recipes-extended/timezone/timezone.inc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-extended/timezone/timezone.inc b/meta/recipes-extended/timezone/timezone.inc
index 6221ff9c60..43d14d7f12 100644
--- a/meta/recipes-extended/timezone/timezone.inc
+++ b/meta/recipes-extended/timezone/timezone.inc
@@ -6,7 +6,7 @@ SECTION = "base"
 LICENSE = "PD & BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c679c9d6b02bc2757b3eaf8f53c43fba"
 
-PV = "2021d"
+PV = "2021e"
 
 SRC_URI =" http://www.iana.org/time-zones/repository/releases/tzcode${PV}.tar.gz;name=tzcode \
            http://www.iana.org/time-zones/repository/releases/tzdata${PV}.tar.gz;name=tzdata \
@@ -14,6 +14,6 @@ SRC_URI =" http://www.iana.org/time-zones/repository/releases/tzcode${PV}.tar.gz
 
 UPSTREAM_CHECK_URI = "http://www.iana.org/time-zones"
 
-SRC_URI[tzcode.sha256sum] = "ed0d02be79b54f4449ba1f239aeaf9315da490bf32f401d302dcbba4921f591d"
-SRC_URI[tzdata.sha256sum] = "d7c188a2b33d4a3c25ee4a9fdc68c1ff462bfdb302cf41343d84ca5942dbddf6"
+SRC_URI[tzcode.sha256sum] = "584666393a5424d13d27ec01183da17703273664742e049d4f62f62dab631775"
+SRC_URI[tzdata.sha256sum] = "07ec42b737d0d3c6be9c337f8abb5f00554a0f9cc4fcf01a703d69403b6bb2b1"
 
-- 
2.20.1



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

* [PATCH 21/30] asciidoc: update 9.1.1 -> 10.0.0
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (18 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 20/30] tzdata: update 2021d -> 2021e Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 22/30] waffle: update 1.6.1 -> 1.7.0 Alexander Kanavin
                   ` (8 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Convert from autotools to setuptools.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 .../{asciidoc_9.1.1.bb => asciidoc_10.0.0.bb}         | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)
 rename meta/recipes-extended/asciidoc/{asciidoc_9.1.1.bb => asciidoc_10.0.0.bb} (77%)

diff --git a/meta/recipes-extended/asciidoc/asciidoc_9.1.1.bb b/meta/recipes-extended/asciidoc/asciidoc_10.0.0.bb
similarity index 77%
rename from meta/recipes-extended/asciidoc/asciidoc_9.1.1.bb
rename to meta/recipes-extended/asciidoc/asciidoc_10.0.0.bb
index f295b80733..f7fa66851d 100644
--- a/meta/recipes-extended/asciidoc/asciidoc_9.1.1.bb
+++ b/meta/recipes-extended/asciidoc/asciidoc_10.0.0.bb
@@ -8,8 +8,8 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=4e5d1baf6f20559e3bec172226a47e4e \
                     file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263 "
 
-SRC_URI = "git://github.com/asciidoc/asciidoc-py3;protocol=https;branch=9.x"
-SRCREV = "08b430eb317c584aa6f02a3c4372035a4d8b92c4"
+SRC_URI = "git://github.com/asciidoc/asciidoc-py3;protocol=https;branch=main"
+SRCREV = "4667219e473a24e8e645eb9b9fb0a7ddba322f44"
 
 DEPENDS = "libxml2-native libxslt-native docbook-xml-dtd4-native docbook-xsl-stylesheets-native"
 
@@ -19,14 +19,9 @@ S = "${WORKDIR}/git"
 # opens /etc/xml/catalog on the host. Depends on auto-catalogs.patch
 export SGML_CATALOG_FILES="file://${STAGING_ETCDIR_NATIVE}/xml/catalog"
 
-# Not using automake
-inherit autotools-brokensep
+inherit setuptools3
 CLEANBROKEN = "1"
 
-# target and nativesdk needs python3, but for native we can use the host.
-RDEPENDS:${PN} += "python3"
-RDEPENDS:remove:class-native = "python3"
-
 BBCLASSEXTEND = "native nativesdk"
 
 UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))$"
-- 
2.20.1



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

* [PATCH 22/30] waffle: update 1.6.1 -> 1.7.0
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (19 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 21/30] asciidoc: update 9.1.1 -> 10.0.0 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 23/30] virgl: skip headless test on specific older distros and fail otherwise Alexander Kanavin
                   ` (7 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 ...-make-core-protocol-into-the-library.patch | 56 +++++++++++++++++++
 .../{waffle_1.6.1.bb => waffle_1.7.0.bb}      | 14 +++--
 2 files changed, 66 insertions(+), 4 deletions(-)
 create mode 100644 meta/recipes-graphics/waffle/waffle/0001-waffle-do-not-make-core-protocol-into-the-library.patch
 rename meta/recipes-graphics/waffle/{waffle_1.6.1.bb => waffle_1.7.0.bb} (82%)

diff --git a/meta/recipes-graphics/waffle/waffle/0001-waffle-do-not-make-core-protocol-into-the-library.patch b/meta/recipes-graphics/waffle/waffle/0001-waffle-do-not-make-core-protocol-into-the-library.patch
new file mode 100644
index 0000000000..24b2de5d9c
--- /dev/null
+++ b/meta/recipes-graphics/waffle/waffle/0001-waffle-do-not-make-core-protocol-into-the-library.patch
@@ -0,0 +1,56 @@
+From 7610ec4b572d3a54d30fca6798f0c406f3fd8a46 Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin <alex@linutronix.de>
+Date: Tue, 26 Oct 2021 08:52:17 +0200
+Subject: [PATCH] waffle: do not make core protocol into the library
+
+None of the consumers (which is just piglit) use it, and
+this avoids host contamination from pkg-config suggesting
+wayland.xml from the host.
+
+Upstream-Status: Inappropriate [oe-core specific]
+Signed-off-by: Alexander Kanavin <alex@linutronix.de>
+---
+ meson.build            | 4 ----
+ src/waffle/meson.build | 7 -------
+ 2 files changed, 11 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index ffc02ff..0bb6128 100644
+--- a/meson.build
++++ b/meson.build
+@@ -104,10 +104,6 @@ else
+   dep_wayland_client = dependency(
+     'wayland-client', version : '>= 1.10', required : get_option('wayland'),
+   )
+-  if dep_wayland_client.found()
+-    wayland_core_xml = join_paths(dep_wayland_client.get_pkgconfig_variable('pkgdatadir'),
+-    'wayland.xml')
+-  endif
+   dep_wayland_egl = dependency(
+     'wayland-egl', version : '>= 9.1', required : get_option('wayland'),
+   )
+diff --git a/src/waffle/meson.build b/src/waffle/meson.build
+index 01898c8..6245868 100644
+--- a/src/waffle/meson.build
++++ b/src/waffle/meson.build
+@@ -88,12 +88,6 @@ if build_surfaceless
+ endif
+ 
+ if build_wayland
+-  wl_core_proto_c = custom_target(
+-    'wl-core-proto.c',
+-    input: wayland_core_xml,
+-    output: 'wl-core-proto.c',
+-    command: [prog_wayland_scanner, 'private-code', '@INPUT@', '@OUTPUT@'],
+-  )
+   wl_xdg_shell_proto_c = custom_target(
+     'wl-xdg-shell-proto.c',
+     input: wayland_xdg_shell_xml,
+@@ -114,7 +108,6 @@ if build_wayland
+     'wayland/wayland_wrapper.c',
+   )
+   files_libwaffle += [
+-    wl_core_proto_c,
+     wl_xdg_shell_proto_c,
+     wl_xdg_shell_proto_h,
+   ]
diff --git a/meta/recipes-graphics/waffle/waffle_1.6.1.bb b/meta/recipes-graphics/waffle/waffle_1.7.0.bb
similarity index 82%
rename from meta/recipes-graphics/waffle/waffle_1.6.1.bb
rename to meta/recipes-graphics/waffle/waffle_1.7.0.bb
index 161bbb0d26..846cd0d818 100644
--- a/meta/recipes-graphics/waffle/waffle_1.6.1.bb
+++ b/meta/recipes-graphics/waffle/waffle_1.7.0.bb
@@ -7,10 +7,12 @@ HOMEPAGE = "https://gitlab.freedesktop.org/mesa/waffle"
 BUGTRACKER = "https://gitlab.freedesktop.org/mesa/waffle"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4c5154407c2490750dd461c50ad94797 \
-                    file://include/waffle/waffle.h;endline=24;md5=61dbf8697f61c78645e75a93c585b1bf"
+                    file://include/waffle-1/waffle.h;endline=24;md5=61dbf8697f61c78645e75a93c585b1bf"
 
-SRC_URI = "git://gitlab.freedesktop.org/mesa/waffle.git;protocol=https;branch=maint-1.6"
-SRCREV = "d7e8c4759704b3c571fa3697c716279c26fd05eb"
+SRC_URI = "git://gitlab.freedesktop.org/mesa/waffle.git;protocol=https \
+           file://0001-waffle-do-not-make-core-protocol-into-the-library.patch \
+           "
+SRCREV = "905c6c10f2483adf0cbfa024e2d3c2ed541fb300"
 S = "${WORKDIR}/git"
 
 inherit meson features_check lib_package bash-completion pkgconfig
@@ -31,7 +33,7 @@ PACKAGECONFIG[glx] = "-Dglx=enabled,-Dglx=disabled,virtual/${MLPREFIX}libgl libx
 
 # I say virtual/libgl, actually wants wayland-egl.pc, egl.pc, and the wayland
 # DISTRO_FEATURE.
-PACKAGECONFIG[wayland] = "-Dwayland=enabled,-Dwayland=disabled,virtual/${MLPREFIX}libgl wayland"
+PACKAGECONFIG[wayland] = "-Dwayland=enabled,-Dwayland=disabled,virtual/${MLPREFIX}libgl wayland wayland-native"
 
 # I say virtual/libgl, actually wants gbm.pc egl.pc
 PACKAGECONFIG[gbm] = "-Dgbm=enabled,-Dgbm=disabled,virtual/${MLPREFIX}libgl udev"
@@ -41,3 +43,7 @@ PACKAGECONFIG[x11-egl] = "-Dx11_egl=enabled,-Dx11_egl=disabled,virtual/${MLPREFI
 PACKAGECONFIG[surfaceless-egl] = "-Dsurfaceless_egl=enabled,-Dsurfaceless_egl=disabled,virtual/${MLPREFIX}libgl"
 
 # TODO: optionally build manpages and examples
+
+do_install:append() {
+    sed -i -e "s,${WORKDIR},,g" ${D}/${libdir}/cmake/Waffle/WaffleConfig.cmake
+}
-- 
2.20.1



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

* [PATCH 23/30] virgl: skip headless test on specific older distros and fail otherwise
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (20 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 22/30] waffle: update 1.6.1 -> 1.7.0 Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 24/30] gptfdisk: address ncurses 6.3 compatibility Alexander Kanavin
                   ` (6 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

This allows catching failures on new build hosts, instead of quietly skipping
the test due to incomplete host setup.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 meta/lib/oeqa/selftest/cases/runtime_test.py | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py
index 129503de63..a90f62bfe1 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -213,17 +213,21 @@ class TestImage(OESelftestTestCase):
         """
         import subprocess, os
 
+        distro = oe.lsb.distro_identifier()
+        if distro and distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04']:
+            self.skipTest('virgl headless cannot be tested with %s' %(distro))
+
         render_hint = """If /dev/dri/renderD* is absent due to lack of suitable GPU, 'modprobe vgem' will create one sutable for mesa llvmpipe sofware renderer."""
         try:
             content = os.listdir("/dev/dri")
             if len([i for i in content if i.startswith('render')]) == 0:
-                self.skipTest("No render nodes found in /dev/dri: %s. %s" %(content, render_hint))
+                self.fail("No render nodes found in /dev/dri: %s. %s" %(content, render_hint))
         except FileNotFoundError:
-            self.skipTest("/dev/dri directory does not exist; no render nodes available on this machine. %s" %(render_hint))
+            self.fail("/dev/dri directory does not exist; no render nodes available on this machine. %s" %(render_hint))
         try:
             dripath = subprocess.check_output("pkg-config --variable=dridriverdir dri", shell=True)
         except subprocess.CalledProcessError as e:
-            self.skipTest("Could not determine the path to dri drivers on the host via pkg-config.\nPlease install Mesa development files (particularly, dri.pc) on the host machine.")
+            self.fail("Could not determine the path to dri drivers on the host via pkg-config.\nPlease install Mesa development files (particularly, dri.pc) on the host machine.")
         qemu_distrofeatures = get_bb_var('DISTRO_FEATURES', 'qemu-system-native')
         features = 'INHERIT += "testimage"\n'
         if 'opengl' not in qemu_distrofeatures:
-- 
2.20.1



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

* [PATCH 24/30] gptfdisk: address ncurses 6.3 compatibility
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (21 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 23/30] virgl: skip headless test on specific older distros and fail otherwise Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 25/30] powertop: " Alexander Kanavin
                   ` (5 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 ...gptcurses-correct-ncurses-6.3-errors.patch | 99 +++++++++++++++++++
 meta/recipes-devtools/fdisk/gptfdisk_1.0.8.bb |  1 +
 2 files changed, 100 insertions(+)
 create mode 100644 meta/recipes-devtools/fdisk/gptfdisk/0001-gptcurses-correct-ncurses-6.3-errors.patch

diff --git a/meta/recipes-devtools/fdisk/gptfdisk/0001-gptcurses-correct-ncurses-6.3-errors.patch b/meta/recipes-devtools/fdisk/gptfdisk/0001-gptcurses-correct-ncurses-6.3-errors.patch
new file mode 100644
index 0000000000..9d0443e524
--- /dev/null
+++ b/meta/recipes-devtools/fdisk/gptfdisk/0001-gptcurses-correct-ncurses-6.3-errors.patch
@@ -0,0 +1,99 @@
+From e301f7dd650c9e56f954a7c49661d938079e1a9b Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin <alex@linutronix.de>
+Date: Mon, 25 Oct 2021 17:27:51 +0200
+Subject: [PATCH] gptcurses: correct ncurses 6.3 errors
+
+Upstream-Status: Pending
+Signed-off-by: Alexander Kanavin <alex@linutronix.de>
+---
+ gptcurses.cc | 28 ++++++++++++++--------------
+ 1 file changed, 14 insertions(+), 14 deletions(-)
+
+diff --git a/gptcurses.cc b/gptcurses.cc
+index d0de024..70be999 100644
+--- a/gptcurses.cc
++++ b/gptcurses.cc
+@@ -235,22 +235,22 @@ Space* GPTDataCurses::ShowSpace(int spaceNum, int lineNum) {
+       ClearLine(lineNum);
+       if (space->partNum == -1) { // space is empty
+          move(lineNum, 12);
+-         printw(BytesToIeee((space->lastLBA - space->firstLBA + 1), blockSize).c_str());
++         printw("%s",BytesToIeee((space->lastLBA - space->firstLBA + 1), blockSize).c_str());
+          move(lineNum, 24);
+-         printw("free space");
++         printw("%s","free space");
+       } else { // space holds a partition
+          move(lineNum, 3);
+          printw("%d", space->partNum + 1);
+          move(lineNum, 12);
+-         printw(BytesToIeee((space->lastLBA - space->firstLBA + 1), blockSize).c_str());
++         printw("%s",BytesToIeee((space->lastLBA - space->firstLBA + 1), blockSize).c_str());
+          move(lineNum, 24);
+-         printw(space->origPart->GetTypeName().c_str());
++         printw("%s",space->origPart->GetTypeName().c_str());
+          move(lineNum, 50);
+          #ifdef USE_UTF16
+          space->origPart->GetDescription().extract(0, 39, temp, 39);
+-         printw(temp);
++         printw("%s",temp);
+          #else
+-         printw(space->origPart->GetDescription().c_str());
++         printw("%s",space->origPart->GetDescription().c_str());
+          #endif
+       } // if/else
+    } // if
+@@ -267,10 +267,10 @@ int GPTDataCurses::DisplayParts(int selected) {
+ 
+    move(lineNum++, 0);
+    theLine = "Part. #     Size        Partition Type            Partition Name";
+-   printw(theLine.c_str());
++   printw("%s",theLine.c_str());
+    move(lineNum++, 0);
+    theLine = "----------------------------------------------------------------";
+-   printw(theLine.c_str());
++   printw("%s",theLine.c_str());
+    numToShow = LINES - RESERVED_TOP - RESERVED_BOTTOM;
+    pageNum = selected / numToShow;
+    for (i = pageNum * numToShow; i <= (pageNum + 1) * numToShow - 1; i++) {
+@@ -284,7 +284,7 @@ int GPTDataCurses::DisplayParts(int selected) {
+             } else {
+                currentSpace = ShowSpace(i, lineNum);
+                move(lineNum++, 0);
+-               printw(">");
++               printw("%s",">");
+             }
+             DisplayOptions(i);
+             retval = selected;
+@@ -632,7 +632,7 @@ void GPTDataCurses::DisplayOptions(char selectedKey) {
+          } // if/else
+       } // for
+       move(LINES - 1, (COLS - optionDesc.length()) / 2);
+-      printw(optionDesc.c_str());
++      printw("%s",optionDesc.c_str());
+       currentKey = selectedKey;
+    } // if
+ } // GPTDataCurses::DisplayOptions()
+@@ -744,11 +744,11 @@ void GPTDataCurses::DrawMenu(void) {
+ 
+    clear();
+    move(0, (COLS - title.length()) / 2);
+-   printw(title.c_str());
++   printw("%s",title.c_str());
+    move(2, (COLS - drive.length()) / 2);
+-   printw(drive.c_str());
++   printw("%s",drive.c_str());
+    move(3, (COLS - size.str().length()) / 2);
+-   printw(size.str().c_str());
++   printw("%s",size.str().c_str());
+    DisplayParts(currentSpaceNum);
+ } // DrawMenu
+ 
+@@ -798,7 +798,7 @@ void PromptToContinue(void) {
+ void Report(string theText) {
+    clear();
+    move(0, 0);
+-   printw(theText.c_str());
++   printw("%s", theText.c_str());
+    move(LINES - 2, (COLS - 29) / 2);
+    printw("Press any key to continue....");
+    cbreak();
diff --git a/meta/recipes-devtools/fdisk/gptfdisk_1.0.8.bb b/meta/recipes-devtools/fdisk/gptfdisk_1.0.8.bb
index 16fe540968..c5a153ab0c 100644
--- a/meta/recipes-devtools/fdisk/gptfdisk_1.0.8.bb
+++ b/meta/recipes-devtools/fdisk/gptfdisk_1.0.8.bb
@@ -9,6 +9,7 @@ DEPENDS = "util-linux"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${PV}/${BP}.tar.gz \
            file://0001-gptcurses-correctly-include-curses.h.patch \
+           file://0001-gptcurses-correct-ncurses-6.3-errors.patch \
            "
 SRC_URI[sha256sum] = "95d19856f004dabc4b8c342b2612e8d0a9eebdd52004297188369f152e9dc6df"
 
-- 
2.20.1



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

* [PATCH 25/30] powertop: address ncurses 6.3 compatibility
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (22 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 24/30] gptfdisk: address ncurses 6.3 compatibility Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 26/30] systemtap: " Alexander Kanavin
                   ` (4 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 ...c-fix-compatibility-with-ncurses-6.3.patch | 52 +++++++++++++++++++
 meta/recipes-kernel/powertop/powertop_2.14.bb |  5 +-
 2 files changed, 55 insertions(+), 2 deletions(-)
 create mode 100644 meta/recipes-kernel/powertop/powertop/0001-src-fix-compatibility-with-ncurses-6.3.patch

diff --git a/meta/recipes-kernel/powertop/powertop/0001-src-fix-compatibility-with-ncurses-6.3.patch b/meta/recipes-kernel/powertop/powertop/0001-src-fix-compatibility-with-ncurses-6.3.patch
new file mode 100644
index 0000000000..84b05ac971
--- /dev/null
+++ b/meta/recipes-kernel/powertop/powertop/0001-src-fix-compatibility-with-ncurses-6.3.patch
@@ -0,0 +1,52 @@
+From 76d3f0851520bc8488e432f423941f1e72cc7405 Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin <alex@linutronix.de>
+Date: Mon, 25 Oct 2021 17:47:23 +0200
+Subject: [PATCH] src: fix compatibility with ncurses 6.3
+
+Upstream-Status: Submitted [https://github.com/fenrus75/powertop/pull/92]
+Signed-off-by: Alexander Kanavin <alex@linutronix.de>
+---
+ src/devices/devfreq.cpp | 2 +-
+ src/display.cpp         | 2 +-
+ src/lib.cpp             | 2 +-
+ 3 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/src/devices/devfreq.cpp b/src/devices/devfreq.cpp
+index 0509d0f..b194ac4 100644
+--- a/src/devices/devfreq.cpp
++++ b/src/devices/devfreq.cpp
+@@ -297,7 +297,7 @@ void display_devfreq_devices(void)
+ 			df->fill_freq_utilization(j, buf);
+ 			strcat(fline, buf);
+ 			strcat(fline, "\n");
+-			wprintw(win, fline);
++			wprintw(win, "%s", fline);
+ 		}
+ 		wprintw(win, "\n");
+ 	}
+diff --git a/src/display.cpp b/src/display.cpp
+index 7131144..cc03919 100644
+--- a/src/display.cpp
++++ b/src/display.cpp
+@@ -125,7 +125,7 @@ void show_tab(unsigned int tab)
+ 
+ 	c = bottom_lines[tab_names[tab]].c_str();
+ 	if (c && strlen(c) > 0)
+-		mvwprintw(bottom_line, 0,0, c);
++		mvwprintw(bottom_line, 0,0, "%s", c);
+ 	else
+ 		mvwprintw(bottom_line, 0, 0,
+ 			"<ESC> %s | <TAB> / <Shift + TAB> %s | ", _("Exit"),
+diff --git a/src/lib.cpp b/src/lib.cpp
+index 5e48f37..5cd1c4a 100644
+--- a/src/lib.cpp
++++ b/src/lib.cpp
+@@ -583,7 +583,7 @@ void ui_notify_user_ncurses(const char *frmt, ...)
+ 	 * buffer */
+ 	vsnprintf(notify, UI_NOTIFY_BUFF_SZ - 1, frmt, list);
+ 	va_end(list);
+-	mvprintw(1, 0, notify);
++	mvprintw(1, 0, "%s", notify);
+ 	attroff(COLOR_PAIR(1));
+ }
+ 
diff --git a/meta/recipes-kernel/powertop/powertop_2.14.bb b/meta/recipes-kernel/powertop/powertop_2.14.bb
index c176cba388..3a7c3ba31e 100644
--- a/meta/recipes-kernel/powertop/powertop_2.14.bb
+++ b/meta/recipes-kernel/powertop/powertop_2.14.bb
@@ -7,8 +7,9 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
 
 SRC_URI = "git://github.com/fenrus75/powertop;protocol=https \
-    file://0001-wakeup_xxx.h-include-limits.h.patch \
-"
+           file://0001-wakeup_xxx.h-include-limits.h.patch \
+           file://0001-src-fix-compatibility-with-ncurses-6.3.patch \
+           "
 SRCREV = "52f022f9bbe6e060fba11701d657a8d9762702ba"
 
 S = "${WORKDIR}/git"
-- 
2.20.1



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

* [PATCH 26/30] systemtap: address ncurses 6.3 compatibility
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (23 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 25/30] powertop: " Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 27/30] igt-gpu-tools: address meson 0.60 compatibility Alexander Kanavin
                   ` (3 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 ...staprun-address-ncurses-6.3-failures.patch | 61 +++++++++++++++++++
 .../recipes-kernel/systemtap/systemtap_git.bb |  4 +-
 2 files changed, 64 insertions(+), 1 deletion(-)
 create mode 100644 meta/recipes-kernel/systemtap/systemtap/0001-staprun-address-ncurses-6.3-failures.patch

diff --git a/meta/recipes-kernel/systemtap/systemtap/0001-staprun-address-ncurses-6.3-failures.patch b/meta/recipes-kernel/systemtap/systemtap/0001-staprun-address-ncurses-6.3-failures.patch
new file mode 100644
index 0000000000..b53e107d84
--- /dev/null
+++ b/meta/recipes-kernel/systemtap/systemtap/0001-staprun-address-ncurses-6.3-failures.patch
@@ -0,0 +1,61 @@
+From 191f528da19193d713d94ee252e2485efd9af4d3 Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin <alex@linutronix.de>
+Date: Mon, 25 Oct 2021 17:59:24 +0200
+Subject: [PATCH] staprun: address ncurses 6.3 failures
+
+Upstream-Status: Pending
+Signed-off-by: Alexander Kanavin <alex@linutronix.de>
+---
+ staprun/monitor.c | 24 ++++++++++++------------
+ 1 file changed, 12 insertions(+), 12 deletions(-)
+
+diff --git a/staprun/monitor.c b/staprun/monitor.c
+index 478634c09..f4fbfd686 100644
+--- a/staprun/monitor.c
++++ b/staprun/monitor.c
+@@ -448,12 +448,12 @@ void monitor_render(void)
+       if (active_window == 0)
+         wattron(status, A_BOLD);
+       wprintw(status, "\n%*s\t%*s\t%*s\t%*s\t%*s\t%*s\t%s\n",
+-              width[p_index], HIGHLIGHT("index", p_index, comp_fn_index),
+-              width[p_state], HIGHLIGHT("state", p_state, comp_fn_index),
+-              width[p_hits], HIGHLIGHT("hits", p_hits, comp_fn_index),
+-              width[p_min], HIGHLIGHT("min", p_min, comp_fn_index),
+-              width[p_avg], HIGHLIGHT("avg", p_avg, comp_fn_index),
+-              width[p_max], HIGHLIGHT("max", p_max, comp_fn_index),
++              (int)width[p_index], HIGHLIGHT("index", p_index, comp_fn_index),
++              (int)width[p_state], HIGHLIGHT("state", p_state, comp_fn_index),
++              (int)width[p_hits], HIGHLIGHT("hits", p_hits, comp_fn_index),
++              (int)width[p_min], HIGHLIGHT("min", p_min, comp_fn_index),
++              (int)width[p_avg], HIGHLIGHT("avg", p_avg, comp_fn_index),
++              (int)width[p_max], HIGHLIGHT("max", p_max, comp_fn_index),
+               HIGHLIGHT("name", p_name, comp_fn_index));
+       if (active_window == 0)
+         wattroff(status, A_BOLD);
+@@ -466,17 +466,17 @@ void monitor_render(void)
+           json_object *probe, *field;
+           probe = json_object_array_get_idx(jso_probe_list, i);
+           json_object_object_get_ex(probe, "index", &field);
+-          wprintw(status, "%*s\t", width[p_index], json_object_get_string(field));
++          wprintw(status, "%*s\t", (int)width[p_index], json_object_get_string(field));
+           json_object_object_get_ex(probe, "state", &field);
+-          wprintw(status, "%*s\t", width[p_state], json_object_get_string(field));
++          wprintw(status, "%*s\t", (int)width[p_state], json_object_get_string(field));
+           json_object_object_get_ex(probe, "hits", &field);
+-          wprintw(status, "%*s\t", width[p_hits], json_object_get_string(field));
++          wprintw(status, "%*s\t", (int)width[p_hits], json_object_get_string(field));
+           json_object_object_get_ex(probe, "min", &field);
+-          wprintw(status, "%*s\t", width[p_min], json_object_get_string(field));
++          wprintw(status, "%*s\t", (int)width[p_min], json_object_get_string(field));
+           json_object_object_get_ex(probe, "avg", &field);
+-          wprintw(status, "%*s\t", width[p_avg], json_object_get_string(field));
++          wprintw(status, "%*s\t", (int)width[p_avg], json_object_get_string(field));
+           json_object_object_get_ex(probe, "max", &field);
+-          wprintw(status, "%*s\t", width[p_max], json_object_get_string(field));
++          wprintw(status, "%*s\t", (int)width[p_max], json_object_get_string(field));
+           getyx(status, discard, cur_x);
+           json_object_object_get_ex(probe, "name", &field);
+           wprintw(status, "%.*s", max_cols-cur_x-1, json_object_get_string(field));
+-- 
+2.20.1
+
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb
index 8f0de5f0f0..d11d9b93a2 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap_git.bb
@@ -6,7 +6,9 @@ HOMEPAGE = "https://sourceware.org/systemtap/"
 
 require systemtap_git.inc
 
-SRC_URI += "file://0001-improve-reproducibility-for-c-compiling.patch"
+SRC_URI += "file://0001-improve-reproducibility-for-c-compiling.patch \
+           file://0001-staprun-address-ncurses-6.3-failures.patch \
+           "
 
 DEPENDS = "elfutils"
 
-- 
2.20.1



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

* [PATCH 27/30] igt-gpu-tools: address meson 0.60 compatibility
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (24 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 26/30] systemtap: " Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 28/30] python3-pygobject: do not supply unknown g-i options Alexander Kanavin
                   ` (2 subsequent siblings)
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 ...n.build-fix-meson-0.60-compatibility.patch | 24 +++++++++++++++++++
 .../igt-gpu-tools/igt-gpu-tools_git.bb        |  4 +++-
 2 files changed, 27 insertions(+), 1 deletion(-)
 create mode 100644 meta/recipes-graphics/igt-gpu-tools/igt-gpu-tools/0001-lib-meson.build-fix-meson-0.60-compatibility.patch

diff --git a/meta/recipes-graphics/igt-gpu-tools/igt-gpu-tools/0001-lib-meson.build-fix-meson-0.60-compatibility.patch b/meta/recipes-graphics/igt-gpu-tools/igt-gpu-tools/0001-lib-meson.build-fix-meson-0.60-compatibility.patch
new file mode 100644
index 0000000000..159425a643
--- /dev/null
+++ b/meta/recipes-graphics/igt-gpu-tools/igt-gpu-tools/0001-lib-meson.build-fix-meson-0.60-compatibility.patch
@@ -0,0 +1,24 @@
+From b9a19aa4bdb21751c04c0e3ba8a9e2e35a10c953 Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin <alex@linutronix.de>
+Date: Mon, 25 Oct 2021 18:18:15 +0200
+Subject: [PATCH] lib/meson.build: fix meson 0.60 compatibility
+
+Upstream-Status: Pending
+Signed-off-by: Alexander Kanavin <alex@linutronix.de>
+---
+ lib/meson.build | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/lib/meson.build b/lib/meson.build
+index 9929520e..1a525587 100644
+--- a/lib/meson.build
++++ b/lib/meson.build
+@@ -152,7 +152,7 @@ lib_version = vcs_tag(input : 'version.h.in', output : 'version.h',
+ 
+ lib_intermediates = []
+ foreach f: lib_sources
+-    name = f.underscorify(f)
++    name = f.underscorify()
+     lib = static_library('igt-' + name,
+ 	[ f, lib_version ],
+ 	include_directories: inc,
diff --git a/meta/recipes-graphics/igt-gpu-tools/igt-gpu-tools_git.bb b/meta/recipes-graphics/igt-gpu-tools/igt-gpu-tools_git.bb
index 1a00eca7d3..7d912e4e4c 100644
--- a/meta/recipes-graphics/igt-gpu-tools/igt-gpu-tools_git.bb
+++ b/meta/recipes-graphics/igt-gpu-tools/igt-gpu-tools_git.bb
@@ -12,7 +12,9 @@ inherit meson pkgconfig
 SRCREV = "203def046b466fb2da67f9f15552d84e1c0b41f2"
 PV = "1.26"
 
-SRC_URI = "git://gitlab.freedesktop.org/drm/igt-gpu-tools.git;protocol=https"
+SRC_URI = "git://gitlab.freedesktop.org/drm/igt-gpu-tools.git;protocol=https \
+           file://0001-lib-meson.build-fix-meson-0.60-compatibility.patch \
+           "
 
 S = "${WORKDIR}/git"
 
-- 
2.20.1



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

* [PATCH 28/30] python3-pygobject: do not supply unknown g-i options
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (25 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 27/30] igt-gpu-tools: address meson 0.60 compatibility Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 29/30] gstreamer1.0-python: " Alexander Kanavin
  2021-10-27  9:07 ` [PATCH 30/30] webkitgtk: drop unnecessary SSE disabling patch Alexander Kanavin
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

meson 0.60 turns unknown options into them hard errors, so instead of relying on g-i class
(where the options are mandatory) add g-i dependencies explicitly.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 .../python/python3-pygobject_3.42.0.bb              | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-devtools/python/python3-pygobject_3.42.0.bb b/meta/recipes-devtools/python/python3-pygobject_3.42.0.bb
index 461ddcfe31..7ff7c5b4dd 100644
--- a/meta/recipes-devtools/python/python3-pygobject_3.42.0.bb
+++ b/meta/recipes-devtools/python/python3-pygobject_3.42.0.bb
@@ -6,10 +6,19 @@ LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"
 
 GNOMEBASEBUILDCLASS = "meson"
-inherit gnomebase distutils3-base gobject-introspection upstream-version-is-even
+inherit gnomebase distutils3-base upstream-version-is-even
 
 DEPENDS += "python3 glib-2.0"
 
+# Generating introspection data depends on a combination of native and target
+# introspection tools, and qemu to run the target tools.
+DEPENDS:append:class-target = " gobject-introspection gobject-introspection-native qemu-native prelink-native"
+
+# Even though introspection is disabled on -native, gobject-introspection package is still
+# needed for m4 macros.
+DEPENDS:append:class-native = " gobject-introspection-native"
+DEPENDS:append:class-nativesdk = " gobject-introspection-native"
+
 SRCNAME="pygobject"
 
 SRC_URI = " \
@@ -18,8 +27,6 @@ SRC_URI = " \
 "
 SRC_URI[sha256sum] = "9b12616e32cfc792f9dc841d9c472a41a35b85ba67d3a6eb427e307a6fe4367b"
 
-UNKNOWN_CONFIGURE_WHITELIST = "introspection"
-
 S = "${WORKDIR}/${SRCNAME}-${PV}"
 
 PACKAGECONFIG ??= "${@bb.utils.contains_any('DISTRO_FEATURES', [ 'directfb', 'wayland', 'x11' ], 'cairo', '', d)}"
-- 
2.20.1



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

* [PATCH 29/30] gstreamer1.0-python: do not supply unknown g-i options
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (26 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 28/30] python3-pygobject: do not supply unknown g-i options Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  2021-11-12  1:35   ` [OE-core] " Khem Raj
  2021-10-27  9:07 ` [PATCH 30/30] webkitgtk: drop unnecessary SSE disabling patch Alexander Kanavin
  28 siblings, 1 reply; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

meson 0.60 turns unknown options into them hard errors, so instead of relying on g-i class
(where the options are mandatory) add g-i dependencies explicitly.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 .../gstreamer/gstreamer1.0-python_1.18.5.bb          | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.18.5.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.18.5.bb
index 74dd15b3eb..a32805d129 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.18.5.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.18.5.bb
@@ -21,6 +21,14 @@ EXTRA_OEMESON += "-Dlibpython-dir=${libdir}"
 
 # gobject-introspection is mandatory and cannot be configured
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
-UNKNOWN_CONFIGURE_WHITELIST:append = " introspection"
 
-inherit meson pkgconfig distutils3-base upstream-version-is-even gobject-introspection features_check
+inherit meson pkgconfig distutils3-base upstream-version-is-even features_check
+
+# Generating introspection data depends on a combination of native and target
+# introspection tools, and qemu to run the target tools.
+DEPENDS:append:class-target = " gobject-introspection gobject-introspection-native qemu-native prelink-native"
+
+# Even though introspection is disabled on -native, gobject-introspection package is still
+# needed for m4 macros.
+DEPENDS:append:class-native = " gobject-introspection-native"
+DEPENDS:append:class-nativesdk = " gobject-introspection-native"
-- 
2.20.1



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

* [PATCH 30/30] webkitgtk: drop unnecessary SSE disabling patch
  2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
                   ` (27 preceding siblings ...)
  2021-10-27  9:07 ` [PATCH 29/30] gstreamer1.0-python: " Alexander Kanavin
@ 2021-10-27  9:07 ` Alexander Kanavin
  28 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-27  9:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 .../0001-ANGLE-do-not-enable-SSE-on-x86.patch | 26 -------------------
 meta/recipes-sato/webkit/webkitgtk_2.34.1.bb  |  1 -
 2 files changed, 27 deletions(-)
 delete mode 100644 meta/recipes-sato/webkit/webkitgtk/0001-ANGLE-do-not-enable-SSE-on-x86.patch

diff --git a/meta/recipes-sato/webkit/webkitgtk/0001-ANGLE-do-not-enable-SSE-on-x86.patch b/meta/recipes-sato/webkit/webkitgtk/0001-ANGLE-do-not-enable-SSE-on-x86.patch
deleted file mode 100644
index 1c6ba97037..0000000000
--- a/meta/recipes-sato/webkit/webkitgtk/0001-ANGLE-do-not-enable-SSE-on-x86.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From c71a4e18afb4869a0fbb0efd59c4860b72f493f7 Mon Sep 17 00:00:00 2001
-From: Alexander Kanavin <alex@linutronix.de>
-Date: Tue, 5 Oct 2021 13:32:28 +0200
-Subject: [PATCH] ANGLE: do not enable SSE on x86
-
-The code does not actually build there.
-
-Upstream-Status: Pending
-Signed-off-by: Alexander Kanavin <alex@linutronix.de>
----
- Source/ThirdParty/ANGLE/src/common/platform.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Source/ThirdParty/ANGLE/src/common/platform.h b/Source/ThirdParty/ANGLE/src/common/platform.h
-index 41f3cf4f..cab85a82 100644
---- a/Source/ThirdParty/ANGLE/src/common/platform.h
-+++ b/Source/ThirdParty/ANGLE/src/common/platform.h
-@@ -89,7 +89,7 @@
- #if defined(_MSC_VER) && !defined(_M_ARM) && !defined(_M_ARM64)
- #    include <intrin.h>
- #    define ANGLE_USE_SSE
--#elif defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__))
-+#elif defined(__GNUC__) && (defined(__x86_64__))
- #    include <x86intrin.h>
- #    define ANGLE_USE_SSE
- #endif
diff --git a/meta/recipes-sato/webkit/webkitgtk_2.34.1.bb b/meta/recipes-sato/webkit/webkitgtk_2.34.1.bb
index dde8963d04..4e2562df14 100644
--- a/meta/recipes-sato/webkit/webkitgtk_2.34.1.bb
+++ b/meta/recipes-sato/webkit/webkitgtk_2.34.1.bb
@@ -18,7 +18,6 @@ SRC_URI = "https://www.webkitgtk.org/releases/${BPN}-${PV}.tar.xz \
            file://include_xutil.patch \
            file://reduce-memory-overheads.patch \
            file://musl-lower-stack-usage.patch \
-           file://0001-ANGLE-do-not-enable-SSE-on-x86.patch \
            file://0001-Fix-build-without-opengl-or-es.patch \
            "
 
-- 
2.20.1



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

* Re: [OE-core] [PATCH 15/30] wpebackend-fdo: upgrade 1.10.0 -> 1.12.0
  2021-10-27  9:07 ` [PATCH 15/30] wpebackend-fdo: upgrade 1.10.0 -> 1.12.0 Alexander Kanavin
@ 2021-10-29 18:04   ` Khem Raj
  2021-10-29 18:20     ` Alexander Kanavin
  0 siblings, 1 reply; 35+ messages in thread
From: Khem Raj @ 2021-10-29 18:04 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: Patches and discussions about the oe-core layer

seeing https://errors.yoctoproject.org/Errors/Details/615439/

On Wed, Oct 27, 2021 at 2:08 AM Alexander Kanavin
<alex.kanavin@gmail.com> wrote:
>
> From: Alexander Kanavin <alex.kanavin@gmail.com>
>
> Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> ---
>  .../{wpebackend-fdo_1.10.0.bb => wpebackend-fdo_1.12.0.bb}      | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>  rename meta/recipes-sato/webkit/{wpebackend-fdo_1.10.0.bb => wpebackend-fdo_1.12.0.bb} (89%)
>
> diff --git a/meta/recipes-sato/webkit/wpebackend-fdo_1.10.0.bb b/meta/recipes-sato/webkit/wpebackend-fdo_1.12.0.bb
> similarity index 89%
> rename from meta/recipes-sato/webkit/wpebackend-fdo_1.10.0.bb
> rename to meta/recipes-sato/webkit/wpebackend-fdo_1.12.0.bb
> index f2d640f07a..ba6c54412a 100644
> --- a/meta/recipes-sato/webkit/wpebackend-fdo_1.10.0.bb
> +++ b/meta/recipes-sato/webkit/wpebackend-fdo_1.12.0.bb
> @@ -13,7 +13,7 @@ inherit meson features_check pkgconfig
>  REQUIRED_DISTRO_FEATURES = "opengl"
>
>  SRC_URI = "https://wpewebkit.org/releases/${BPN}-${PV}.tar.xz"
> -SRC_URI[sha256sum] = "b89dfd3500a4dec711132cd7bff72599e67d56a419d000730e14bb99547509cc"
> +SRC_URI[sha256sum] = "6239c9c15523410798d66315de6b491712ab30009ba180f3e0dd076d9b0074ac"
>
>  # This is a tweak of upstream-version-is-even needed because
>  # ipstream directory contains tarballs for other components as well.
> --
> 2.20.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#157491): https://lists.openembedded.org/g/openembedded-core/message/157491
> Mute This Topic: https://lists.openembedded.org/mt/86623392/1997914
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [OE-core] [PATCH 15/30] wpebackend-fdo: upgrade 1.10.0 -> 1.12.0
  2021-10-29 18:04   ` [OE-core] " Khem Raj
@ 2021-10-29 18:20     ` Alexander Kanavin
  2021-10-29 19:28       ` Khem Raj
  0 siblings, 1 reply; 35+ messages in thread
From: Alexander Kanavin @ 2021-10-29 18:20 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 2036 bytes --]

LLVM-specific probably?

Alex

On Fri 29. Oct 2021 at 20.04, Khem Raj <raj.khem@gmail.com> wrote:

> seeing https://errors.yoctoproject.org/Errors/Details/615439/
>
> On Wed, Oct 27, 2021 at 2:08 AM Alexander Kanavin
> <alex.kanavin@gmail.com> wrote:
> >
> > From: Alexander Kanavin <alex.kanavin@gmail.com>
> >
> > Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> > ---
> >  .../{wpebackend-fdo_1.10.0.bb => wpebackend-fdo_1.12.0.bb}      | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >  rename meta/recipes-sato/webkit/{wpebackend-fdo_1.10.0.bb =>
> wpebackend-fdo_1.12.0.bb} (89%)
> >
> > diff --git a/meta/recipes-sato/webkit/wpebackend-fdo_1.10.0.bb
> b/meta/recipes-sato/webkit/wpebackend-fdo_1.12.0.bb
> > similarity index 89%
> > rename from meta/recipes-sato/webkit/wpebackend-fdo_1.10.0.bb
> > rename to meta/recipes-sato/webkit/wpebackend-fdo_1.12.0.bb
> > index f2d640f07a..ba6c54412a 100644
> > --- a/meta/recipes-sato/webkit/wpebackend-fdo_1.10.0.bb
> > +++ b/meta/recipes-sato/webkit/wpebackend-fdo_1.12.0.bb
> > @@ -13,7 +13,7 @@ inherit meson features_check pkgconfig
> >  REQUIRED_DISTRO_FEATURES = "opengl"
> >
> >  SRC_URI = "https://wpewebkit.org/releases/${BPN}-${PV}.tar.xz"
> > -SRC_URI[sha256sum] =
> "b89dfd3500a4dec711132cd7bff72599e67d56a419d000730e14bb99547509cc"
> > +SRC_URI[sha256sum] =
> "6239c9c15523410798d66315de6b491712ab30009ba180f3e0dd076d9b0074ac"
> >
> >  # This is a tweak of upstream-version-is-even needed because
> >  # ipstream directory contains tarballs for other components as well.
> > --
> > 2.20.1
> >
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#157491):
> https://lists.openembedded.org/g/openembedded-core/message/157491
> > Mute This Topic: https://lists.openembedded.org/mt/86623392/1997914
> > Group Owner: openembedded-core+owner@lists.openembedded.org
> > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [
> raj.khem@gmail.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >
>

[-- Attachment #2: Type: text/html, Size: 4343 bytes --]

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

* Re: [OE-core] [PATCH 15/30] wpebackend-fdo: upgrade 1.10.0 -> 1.12.0
  2021-10-29 18:20     ` Alexander Kanavin
@ 2021-10-29 19:28       ` Khem Raj
  0 siblings, 0 replies; 35+ messages in thread
From: Khem Raj @ 2021-10-29 19:28 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 2235 bytes --]

On Fri, Oct 29, 2021 at 11:20 AM Alexander Kanavin <alex.kanavin@gmail.com>
wrote:

> LLVM-specific probably?
>

Most likely found with LLVM I have to check details

>
> Alex
>
> On Fri 29. Oct 2021 at 20.04, Khem Raj <raj.khem@gmail.com> wrote:
>
>> seeing https://errors.yoctoproject.org/Errors/Details/615439/
>>
>> On Wed, Oct 27, 2021 at 2:08 AM Alexander Kanavin
>> <alex.kanavin@gmail.com> wrote:
>> >
>> > From: Alexander Kanavin <alex.kanavin@gmail.com>
>> >
>> > Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
>> > ---
>> >  .../{wpebackend-fdo_1.10.0.bb => wpebackend-fdo_1.12.0.bb}      | 2 +-
>> >  1 file changed, 1 insertion(+), 1 deletion(-)
>> >  rename meta/recipes-sato/webkit/{wpebackend-fdo_1.10.0.bb =>
>> wpebackend-fdo_1.12.0.bb} (89%)
>> >
>> > diff --git a/meta/recipes-sato/webkit/wpebackend-fdo_1.10.0.bb
>> b/meta/recipes-sato/webkit/wpebackend-fdo_1.12.0.bb
>> > similarity index 89%
>> > rename from meta/recipes-sato/webkit/wpebackend-fdo_1.10.0.bb
>> > rename to meta/recipes-sato/webkit/wpebackend-fdo_1.12.0.bb
>> > index f2d640f07a..ba6c54412a 100644
>> > --- a/meta/recipes-sato/webkit/wpebackend-fdo_1.10.0.bb
>> > +++ b/meta/recipes-sato/webkit/wpebackend-fdo_1.12.0.bb
>> > @@ -13,7 +13,7 @@ inherit meson features_check pkgconfig
>> >  REQUIRED_DISTRO_FEATURES = "opengl"
>> >
>> >  SRC_URI = "https://wpewebkit.org/releases/${BPN}-${PV}.tar.xz"
>> > -SRC_URI[sha256sum] =
>> "b89dfd3500a4dec711132cd7bff72599e67d56a419d000730e14bb99547509cc"
>> > +SRC_URI[sha256sum] =
>> "6239c9c15523410798d66315de6b491712ab30009ba180f3e0dd076d9b0074ac"
>> >
>> >  # This is a tweak of upstream-version-is-even needed because
>> >  # ipstream directory contains tarballs for other components as well.
>> > --
>> > 2.20.1
>> >
>> >
>> > -=-=-=-=-=-=-=-=-=-=-=-
>> > Links: You receive all messages sent to this group.
>> > View/Reply Online (#157491):
>> https://lists.openembedded.org/g/openembedded-core/message/157491
>> > Mute This Topic: https://lists.openembedded.org/mt/86623392/1997914
>> > Group Owner: openembedded-core+owner@lists.openembedded.org
>> > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [
>> raj.khem@gmail.com]
>> > -=-=-=-=-=-=-=-=-=-=-=-
>> >
>>
>

[-- Attachment #2: Type: text/html, Size: 4951 bytes --]

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

* Re: [OE-core] [PATCH 29/30] gstreamer1.0-python: do not supply unknown g-i options
  2021-10-27  9:07 ` [PATCH 29/30] gstreamer1.0-python: " Alexander Kanavin
@ 2021-11-12  1:35   ` Khem Raj
  2021-11-12  6:46     ` Alexander Kanavin
  0 siblings, 1 reply; 35+ messages in thread
From: Khem Raj @ 2021-11-12  1:35 UTC (permalink / raw)
  To: Alexander Kanavin
  Cc: Patches and discussions about the oe-core layer, Alexander Kanavin

On Wed, Oct 27, 2021 at 2:08 AM Alexander Kanavin
<alex.kanavin@gmail.com> wrote:
>
> meson 0.60 turns unknown options into them hard errors, so instead of relying on g-i class
> (where the options are mandatory) add g-i dependencies explicitly.
>

This patch is not needed after merging

https://lists.openembedded.org/g/openembedded-core/topic/patch/86997027?p=,,,20,0,0,0::recentpostdate/sticky,,,20,2,0,86997027,previd=1636678766912195299,nextid=1636633780004461498&previd=1636678766912195299&nextid=1636633780004461498

all we will need is

GIR_MESON_OPTION = ""

> Signed-off-by: Alexander Kanavin <alex@linutronix.de>
> ---
>  .../gstreamer/gstreamer1.0-python_1.18.5.bb          | 12 ++++++++++--
>  1 file changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.18.5.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.18.5.bb
> index 74dd15b3eb..a32805d129 100644
> --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.18.5.bb
> +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.18.5.bb
> @@ -21,6 +21,14 @@ EXTRA_OEMESON += "-Dlibpython-dir=${libdir}"
>
>  # gobject-introspection is mandatory and cannot be configured
>  REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
> -UNKNOWN_CONFIGURE_WHITELIST:append = " introspection"
>
> -inherit meson pkgconfig distutils3-base upstream-version-is-even gobject-introspection features_check
> +inherit meson pkgconfig distutils3-base upstream-version-is-even features_check
> +
> +# Generating introspection data depends on a combination of native and target
> +# introspection tools, and qemu to run the target tools.
> +DEPENDS:append:class-target = " gobject-introspection gobject-introspection-native qemu-native prelink-native"
> +
> +# Even though introspection is disabled on -native, gobject-introspection package is still
> +# needed for m4 macros.
> +DEPENDS:append:class-native = " gobject-introspection-native"
> +DEPENDS:append:class-nativesdk = " gobject-introspection-native"
> --
> 2.20.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#157505): https://lists.openembedded.org/g/openembedded-core/message/157505
> Mute This Topic: https://lists.openembedded.org/mt/86623409/1997914
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

* Re: [OE-core] [PATCH 29/30] gstreamer1.0-python: do not supply unknown g-i options
  2021-11-12  1:35   ` [OE-core] " Khem Raj
@ 2021-11-12  6:46     ` Alexander Kanavin
  0 siblings, 0 replies; 35+ messages in thread
From: Alexander Kanavin @ 2021-11-12  6:46 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 2739 bytes --]

Thanks, can you send a patch to correct this?

Alex

On Fri, 12 Nov 2021 at 02:35, Khem Raj <raj.khem@gmail.com> wrote:

> On Wed, Oct 27, 2021 at 2:08 AM Alexander Kanavin
> <alex.kanavin@gmail.com> wrote:
> >
> > meson 0.60 turns unknown options into them hard errors, so instead of
> relying on g-i class
> > (where the options are mandatory) add g-i dependencies explicitly.
> >
>
> This patch is not needed after merging
>
>
> https://lists.openembedded.org/g/openembedded-core/topic/patch/86997027?p=,,,20,0,0,0::recentpostdate/sticky,,,20,2,0,86997027,previd=1636678766912195299,nextid=1636633780004461498&previd=1636678766912195299&nextid=1636633780004461498
>
> all we will need is
>
> GIR_MESON_OPTION = ""
>
> > Signed-off-by: Alexander Kanavin <alex@linutronix.de>
> > ---
> >  .../gstreamer/gstreamer1.0-python_1.18.5.bb          | 12 ++++++++++--
> >  1 file changed, 10 insertions(+), 2 deletions(-)
> >
> > diff --git a/meta/recipes-multimedia/gstreamer/
> gstreamer1.0-python_1.18.5.bb b/meta/recipes-multimedia/gstreamer/
> gstreamer1.0-python_1.18.5.bb
> > index 74dd15b3eb..a32805d129 100644
> > --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.18.5.bb
> > +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.18.5.bb
> > @@ -21,6 +21,14 @@ EXTRA_OEMESON += "-Dlibpython-dir=${libdir}"
> >
> >  # gobject-introspection is mandatory and cannot be configured
> >  REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
> > -UNKNOWN_CONFIGURE_WHITELIST:append = " introspection"
> >
> > -inherit meson pkgconfig distutils3-base upstream-version-is-even
> gobject-introspection features_check
> > +inherit meson pkgconfig distutils3-base upstream-version-is-even
> features_check
> > +
> > +# Generating introspection data depends on a combination of native and
> target
> > +# introspection tools, and qemu to run the target tools.
> > +DEPENDS:append:class-target = " gobject-introspection
> gobject-introspection-native qemu-native prelink-native"
> > +
> > +# Even though introspection is disabled on -native,
> gobject-introspection package is still
> > +# needed for m4 macros.
> > +DEPENDS:append:class-native = " gobject-introspection-native"
> > +DEPENDS:append:class-nativesdk = " gobject-introspection-native"
> > --
> > 2.20.1
> >
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#157505):
> https://lists.openembedded.org/g/openembedded-core/message/157505
> > Mute This Topic: https://lists.openembedded.org/mt/86623409/1997914
> > Group Owner: openembedded-core+owner@lists.openembedded.org
> > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [
> raj.khem@gmail.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >
>

[-- Attachment #2: Type: text/html, Size: 4701 bytes --]

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

end of thread, other threads:[~2021-11-12  6:46 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-27  9:07 [PATCH 01/30] psplash: upgrade to latest revision Alexander Kanavin
2021-10-27  9:07 ` [PATCH 02/30] stress-ng: convert to git, website is down Alexander Kanavin
2021-10-27  9:07 ` [PATCH 03/30] json-c: correct upstream version check Alexander Kanavin
2021-10-27  9:07 ` [PATCH 04/30] createrepo-c: upgrade 0.17.6 -> 0.17.7 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 05/30] python3-numpy: upgrade 1.21.2 -> 1.21.3 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 06/30] python3-pip: upgrade 21.3 -> 21.3.1 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 07/30] python3-setuptools: upgrade 58.2.0 -> 58.3.0 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 08/30] msmtp: upgrade 1.8.17 -> 1.8.18 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 09/30] gi-docgen: upgrade 2021.7 -> 2021.8 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 10/30] piglit: upgrade to latest revision Alexander Kanavin
2021-10-27  9:07 ` [PATCH 11/30] libinput: upgrade 1.19.1 -> 1.19.2 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 12/30] mpg123: upgrade 1.29.0 -> 1.29.2 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 13/30] puzzles: upgrade to latest revision Alexander Kanavin
2021-10-27  9:07 ` [PATCH 14/30] webkitgtk: upgrade 2.34.0 -> 2.34.1 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 15/30] wpebackend-fdo: upgrade 1.10.0 -> 1.12.0 Alexander Kanavin
2021-10-29 18:04   ` [OE-core] " Khem Raj
2021-10-29 18:20     ` Alexander Kanavin
2021-10-29 19:28       ` Khem Raj
2021-10-27  9:07 ` [PATCH 16/30] diffoscope: upgrade 187 -> 188 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 17/30] libcap: upgrade 2.59 -> 2.60 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 18/30] vte: upgrade 0.64.2 -> 0.66.0 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 19/30] ncurses: update 6.2 -> 6.3 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 20/30] tzdata: update 2021d -> 2021e Alexander Kanavin
2021-10-27  9:07 ` [PATCH 21/30] asciidoc: update 9.1.1 -> 10.0.0 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 22/30] waffle: update 1.6.1 -> 1.7.0 Alexander Kanavin
2021-10-27  9:07 ` [PATCH 23/30] virgl: skip headless test on specific older distros and fail otherwise Alexander Kanavin
2021-10-27  9:07 ` [PATCH 24/30] gptfdisk: address ncurses 6.3 compatibility Alexander Kanavin
2021-10-27  9:07 ` [PATCH 25/30] powertop: " Alexander Kanavin
2021-10-27  9:07 ` [PATCH 26/30] systemtap: " Alexander Kanavin
2021-10-27  9:07 ` [PATCH 27/30] igt-gpu-tools: address meson 0.60 compatibility Alexander Kanavin
2021-10-27  9:07 ` [PATCH 28/30] python3-pygobject: do not supply unknown g-i options Alexander Kanavin
2021-10-27  9:07 ` [PATCH 29/30] gstreamer1.0-python: " Alexander Kanavin
2021-11-12  1:35   ` [OE-core] " Khem Raj
2021-11-12  6:46     ` Alexander Kanavin
2021-10-27  9:07 ` [PATCH 30/30] webkitgtk: drop unnecessary SSE disabling patch Alexander Kanavin

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.