public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [PATCH 1/9] enchant2: upgrade 2.6.5 -> 2.6.7
@ 2024-02-16 11:40 Anuj Mittal
  2024-02-16 11:40 ` [PATCH 2/9] minicom: upgrade 2.8 -> 2.9 Anuj Mittal
                   ` (7 more replies)
  0 siblings, 8 replies; 15+ messages in thread
From: Anuj Mittal @ 2024-02-16 11:40 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 .../enchant/{enchant2_2.6.5.bb => enchant2_2.6.7.bb}            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/enchant/{enchant2_2.6.5.bb => enchant2_2.6.7.bb} (91%)

diff --git a/meta/recipes-support/enchant/enchant2_2.6.5.bb b/meta/recipes-support/enchant/enchant2_2.6.7.bb
similarity index 91%
rename from meta/recipes-support/enchant/enchant2_2.6.5.bb
rename to meta/recipes-support/enchant/enchant2_2.6.7.bb
index 1d5c716bab9..b31bdc422be 100644
--- a/meta/recipes-support/enchant/enchant2_2.6.5.bb
+++ b/meta/recipes-support/enchant/enchant2_2.6.7.bb
@@ -12,7 +12,7 @@ DEPENDS = "glib-2.0 groff-native"
 inherit autotools pkgconfig github-releases
 
 SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/enchant-${PV}.tar.gz"
-SRC_URI[sha256sum] = "9e8fd28cb65a7b6da3545878a5c2f52a15f03c04933a5ff48db89fe86845728e"
+SRC_URI[sha256sum] = "a1c2e5b59acca000bbfb24810af4a1165733d407f2154786588e076c8cd57bfc"
 
 GITHUB_BASE_URI = "https://github.com/AbiWord/enchant/releases"
 
-- 
2.43.2



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

* [PATCH 2/9] minicom: upgrade 2.8 -> 2.9
  2024-02-16 11:40 [PATCH 1/9] enchant2: upgrade 2.6.5 -> 2.6.7 Anuj Mittal
@ 2024-02-16 11:40 ` Anuj Mittal
  2024-02-17 12:38   ` [OE-core] " Richard Purdie
  2024-02-16 11:40 ` [PATCH 3/9] libproxy: upgrade 0.5.3 -> 0.5.4 Anuj Mittal
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 15+ messages in thread
From: Anuj Mittal @ 2024-02-16 11:40 UTC (permalink / raw)
  To: openembedded-core

Drop patches that have been merged upstream and available in this
version.

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 ...ix-minicom-h-v-return-value-is-not-0.patch | 33 -------------------
 .../minicom/allow.to.disable.lockdev.patch    | 30 -----------------
 .../{minicom_2.8.bb => minicom_2.9.bb}        |  7 ++--
 3 files changed, 2 insertions(+), 68 deletions(-)
 delete mode 100644 meta/recipes-extended/minicom/minicom/0001-fix-minicom-h-v-return-value-is-not-0.patch
 delete mode 100644 meta/recipes-extended/minicom/minicom/allow.to.disable.lockdev.patch
 rename meta/recipes-extended/minicom/{minicom_2.8.bb => minicom_2.9.bb} (80%)

diff --git a/meta/recipes-extended/minicom/minicom/0001-fix-minicom-h-v-return-value-is-not-0.patch b/meta/recipes-extended/minicom/minicom/0001-fix-minicom-h-v-return-value-is-not-0.patch
deleted file mode 100644
index 9e67126f3e1..00000000000
--- a/meta/recipes-extended/minicom/minicom/0001-fix-minicom-h-v-return-value-is-not-0.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-Exit normally for help/verison options
-
-If -v or -h is used for the help/version information, it is a normal exit situation,
-not an error condition. Sometimes these are used as a simple operation test of the
-resulting binary so the exit code does matter.
-
-Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-Upstream-Status: Submitted [https://salsa.debian.org/minicom-team/minicom/-/merge_requests/14]
----
- src/minicom.c |    6 ++----
- 1 file changed, 2 insertions(+), 4 deletions(-)
-
-Index: minicom-2.8/src/minicom.c
-===================================================================
---- minicom-2.8.orig/src/minicom.c
-+++ minicom-2.8/src/minicom.c
-@@ -1257,14 +1257,14 @@ int main(int argc, char **argv)
-                  "modify it under the terms of the GNU General Public License\n"
-                  "as published by the Free Software Foundation; either version\n"
-                  "2 of the License, or (at your option) any later version.\n\n"));
--          exit(1);
-+          exit(0);
-           break;
-         case 's': /* setup mode */
-           dosetup = 1;
-           break;
-         case 'h':
-           helpthem();
--          exit(1);
-+          exit(0);
-           break;
-         case 'p': /* Pseudo terminal to use. */
-           if (strncmp(optarg, "/dev/", 5) == 0)
diff --git a/meta/recipes-extended/minicom/minicom/allow.to.disable.lockdev.patch b/meta/recipes-extended/minicom/minicom/allow.to.disable.lockdev.patch
deleted file mode 100644
index 39dc5c04925..00000000000
--- a/meta/recipes-extended/minicom/minicom/allow.to.disable.lockdev.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-configure: Allow lockdev to be disabled
-
-When the pkgconfig dependencies may be present, it is useful to be
-able to explictly disable the lockdev dependency. This adds such an
-option.
-
-Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-
-Upstream-Status: Submitted [https://salsa.debian.org/minicom-team/minicom/-/merge_requests/14]
-
-Index: minicom-2.8/configure.ac
-===================================================================
---- minicom-2.8.orig/configure.ac
-+++ minicom-2.8/configure.ac
-@@ -43,7 +43,13 @@ if test "x$enable_socket" = xyes; then
- fi
- 
- PKG_PROG_PKG_CONFIG
--if test -n "$PKG_CONFIG"; then
-+
-+AC_ARG_ENABLE([lockdev],
-+        AS_HELP_STRING([--enable-lockdev],
-+                       [Enable lockdev support (def: enabled)]),
-+        [], [enable_lockdev="yes"])
-+
-+if test -n "$PKG_CONFIG" && test "x$enable_lockdev" = xyes; then
- 	PKG_CHECK_MODULES([LOCKDEV], [lockdev], AC_DEFINE([HAVE_LOCKDEV],[1],[Define if you have lockdev]),[:])
- fi
- 
diff --git a/meta/recipes-extended/minicom/minicom_2.8.bb b/meta/recipes-extended/minicom/minicom_2.9.bb
similarity index 80%
rename from meta/recipes-extended/minicom/minicom_2.8.bb
rename to meta/recipes-extended/minicom/minicom_2.9.bb
index 2640c6b0574..907d5c79c9d 100644
--- a/meta/recipes-extended/minicom/minicom_2.8.bb
+++ b/meta/recipes-extended/minicom/minicom_2.9.bb
@@ -7,12 +7,9 @@ LICENSE = "GPL-2.0-or-later"
 LIC_FILES_CHKSUM = "file://COPYING;md5=420477abc567404debca0a2a1cb6b645 \
                     file://src/minicom.h;beginline=1;endline=12;md5=a58838cb709f0db517f4e42730c49e81"
 
-SRC_URI = "${DEBIAN_MIRROR}/main/m/${BPN}/${BPN}_${PV}.orig.tar.bz2 \
-           file://allow.to.disable.lockdev.patch \
-           file://0001-fix-minicom-h-v-return-value-is-not-0.patch \
-"
+SRC_URI = "${DEBIAN_MIRROR}/main/m/${BPN}/${BPN}_${PV}.orig.tar.bz2"
 
-SRC_URI[sha256sum] = "38cea30913a20349326ff3f1763ee1512b7b41601c24f065f365e18e9db0beba"
+SRC_URI[sha256sum] = "9efbb6458140e5a0de445613f0e76bcf12cbf7a9892b2f53e075c2e7beaba86c"
 
 PACKAGECONFIG ??= ""
 PACKAGECONFIG[lockdev] = "--enable-lockdev,--disable-lockdev,lockdev"
-- 
2.43.2



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

* [PATCH 3/9] libproxy: upgrade 0.5.3 -> 0.5.4
  2024-02-16 11:40 [PATCH 1/9] enchant2: upgrade 2.6.5 -> 2.6.7 Anuj Mittal
  2024-02-16 11:40 ` [PATCH 2/9] minicom: upgrade 2.8 -> 2.9 Anuj Mittal
@ 2024-02-16 11:40 ` Anuj Mittal
  2024-02-16 11:40 ` [PATCH 4/9] sqlite3: upgrade 3.44.2 -> 3.45.1 Anuj Mittal
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 15+ messages in thread
From: Anuj Mittal @ 2024-02-16 11:40 UTC (permalink / raw)
  To: openembedded-core

This includes a fix to include complete library version. Release notes:

https://github.com/libproxy/libproxy/releases/tag/0.5.4

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 .../libproxy/{libproxy_0.5.3.bb => libproxy_0.5.4.bb}           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/libproxy/{libproxy_0.5.3.bb => libproxy_0.5.4.bb} (95%)

diff --git a/meta/recipes-support/libproxy/libproxy_0.5.3.bb b/meta/recipes-support/libproxy/libproxy_0.5.4.bb
similarity index 95%
rename from meta/recipes-support/libproxy/libproxy_0.5.3.bb
rename to meta/recipes-support/libproxy/libproxy_0.5.4.bb
index db88af093ee..b4f4c6d2549 100644
--- a/meta/recipes-support/libproxy/libproxy_0.5.3.bb
+++ b/meta/recipes-support/libproxy/libproxy_0.5.4.bb
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \
 DEPENDS = "glib-2.0"
 
 SRC_URI = "git://github.com/libproxy/libproxy;protocol=https;branch=main"
-SRCREV = "29d51a611f28af0bdbd51a5779cc8df264c8dcff"
+SRCREV = "dff9a603d823dcc740ec966cd27960daa6b891b1"
 S = "${WORKDIR}/git"
 
 inherit meson pkgconfig gobject-introspection vala gi-docgen
-- 
2.43.2



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

* [PATCH 4/9] sqlite3: upgrade 3.44.2 -> 3.45.1
  2024-02-16 11:40 [PATCH 1/9] enchant2: upgrade 2.6.5 -> 2.6.7 Anuj Mittal
  2024-02-16 11:40 ` [PATCH 2/9] minicom: upgrade 2.8 -> 2.9 Anuj Mittal
  2024-02-16 11:40 ` [PATCH 3/9] libproxy: upgrade 0.5.3 -> 0.5.4 Anuj Mittal
@ 2024-02-16 11:40 ` Anuj Mittal
  2024-02-16 11:40 ` [PATCH 5/9] orc: upgrade 0.4.36 -> 0.4.37 Anuj Mittal
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 15+ messages in thread
From: Anuj Mittal @ 2024-02-16 11:40 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 .../sqlite/{sqlite3_3.44.2.bb => sqlite3_3.45.1.bb}           | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/sqlite/{sqlite3_3.44.2.bb => sqlite3_3.45.1.bb} (62%)

diff --git a/meta/recipes-support/sqlite/sqlite3_3.44.2.bb b/meta/recipes-support/sqlite/sqlite3_3.45.1.bb
similarity index 62%
rename from meta/recipes-support/sqlite/sqlite3_3.44.2.bb
rename to meta/recipes-support/sqlite/sqlite3_3.45.1.bb
index 459884a5581..2ca8bc5bc9a 100644
--- a/meta/recipes-support/sqlite/sqlite3_3.44.2.bb
+++ b/meta/recipes-support/sqlite/sqlite3_3.45.1.bb
@@ -3,8 +3,8 @@ require sqlite3.inc
 LICENSE = "PD"
 LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=786d3dc581eff03f4fd9e4a77ed00c66"
 
-SRC_URI = "http://www.sqlite.org/2023/sqlite-autoconf-${SQLITE_PV}.tar.gz"
-SRC_URI[sha256sum] = "1c6719a148bc41cf0f2bbbe3926d7ce3f5ca09d878f1246fcc20767b175bb407"
+SRC_URI = "http://www.sqlite.org/2024/sqlite-autoconf-${SQLITE_PV}.tar.gz"
+SRC_URI[sha256sum] = "cd9c27841b7a5932c9897651e20b86c701dd740556989b01ca596fcfa3d49a0a"
 
 CVE_STATUS[CVE-2023-36191] = "disputed: The error is a bug. It has been fixed upstream. But it is not a vulnerability"
 
-- 
2.43.2



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

* [PATCH 5/9] orc: upgrade 0.4.36 -> 0.4.37
  2024-02-16 11:40 [PATCH 1/9] enchant2: upgrade 2.6.5 -> 2.6.7 Anuj Mittal
                   ` (2 preceding siblings ...)
  2024-02-16 11:40 ` [PATCH 4/9] sqlite3: upgrade 3.44.2 -> 3.45.1 Anuj Mittal
@ 2024-02-16 11:40 ` Anuj Mittal
  2024-02-16 11:40 ` [PATCH 6/9] stress-ng: upgrade 0.17.04 -> 0.17.05 Anuj Mittal
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 15+ messages in thread
From: Anuj Mittal @ 2024-02-16 11:40 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 meta/recipes-devtools/orc/{orc_0.4.36.bb => orc_0.4.37.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/orc/{orc_0.4.36.bb => orc_0.4.37.bb} (92%)

diff --git a/meta/recipes-devtools/orc/orc_0.4.36.bb b/meta/recipes-devtools/orc/orc_0.4.37.bb
similarity index 92%
rename from meta/recipes-devtools/orc/orc_0.4.36.bb
rename to meta/recipes-devtools/orc/orc_0.4.37.bb
index b191367eafa..9985204d744 100644
--- a/meta/recipes-devtools/orc/orc_0.4.36.bb
+++ b/meta/recipes-devtools/orc/orc_0.4.37.bb
@@ -5,7 +5,7 @@ LICENSE = "BSD-2-Clause & BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=1400bd9d09e8af56b9ec982b3d85797e"
 
 SRC_URI = "http://gstreamer.freedesktop.org/src/orc/orc-${PV}.tar.xz"
-SRC_URI[sha256sum] = "83b074cb67317d58bef1e8d0cc862f7ae8a77a45bbff056a1f987c6488b2f5fd"
+SRC_URI[sha256sum] = "85638c0d447d989cd0d7e03406adbfbc380e67db2a622a4727a0ce3d440b2974"
 
 inherit meson pkgconfig gtk-doc
 
-- 
2.43.2



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

* [PATCH 6/9] stress-ng: upgrade 0.17.04 -> 0.17.05
  2024-02-16 11:40 [PATCH 1/9] enchant2: upgrade 2.6.5 -> 2.6.7 Anuj Mittal
                   ` (3 preceding siblings ...)
  2024-02-16 11:40 ` [PATCH 5/9] orc: upgrade 0.4.36 -> 0.4.37 Anuj Mittal
@ 2024-02-16 11:40 ` Anuj Mittal
  2024-02-16 11:40 ` [PATCH 7/9] swig: upgrade 4.1.1 -> 4.2.0 Anuj Mittal
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 15+ messages in thread
From: Anuj Mittal @ 2024-02-16 11:40 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 .../stress-ng/{stress-ng_0.17.04.bb => stress-ng_0.17.05.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/stress-ng/{stress-ng_0.17.04.bb => stress-ng_0.17.05.bb} (94%)

diff --git a/meta/recipes-extended/stress-ng/stress-ng_0.17.04.bb b/meta/recipes-extended/stress-ng/stress-ng_0.17.05.bb
similarity index 94%
rename from meta/recipes-extended/stress-ng/stress-ng_0.17.04.bb
rename to meta/recipes-extended/stress-ng/stress-ng_0.17.05.bb
index fde51f67ac8..d4a427f89d6 100644
--- a/meta/recipes-extended/stress-ng/stress-ng_0.17.04.bb
+++ b/meta/recipes-extended/stress-ng/stress-ng_0.17.05.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
 SRC_URI = "git://github.com/ColinIanKing/stress-ng.git;protocol=https;branch=master \
            "
-SRCREV = "2f22ad595f067aa940cfe4f64107e10872c2f7b5"
+SRCREV = "4e68895f4fe68863b360ab4a6a57e2dfcff85d60"
 S = "${WORKDIR}/git"
 
 DEPENDS = "coreutils-native libbsd"
-- 
2.43.2



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

* [PATCH 7/9] swig: upgrade 4.1.1 -> 4.2.0
  2024-02-16 11:40 [PATCH 1/9] enchant2: upgrade 2.6.5 -> 2.6.7 Anuj Mittal
                   ` (4 preceding siblings ...)
  2024-02-16 11:40 ` [PATCH 6/9] stress-ng: upgrade 0.17.04 -> 0.17.05 Anuj Mittal
@ 2024-02-16 11:40 ` Anuj Mittal
  2024-02-17  2:59   ` [OE-core] " Khem Raj
  2024-02-16 11:40 ` [PATCH 8/9] gstreamer1.0: upgrade 1.22.9 -> 1.22.10 Anuj Mittal
  2024-02-16 11:40 ` [PATCH 9/9] libcap-ng: fix build with swig 4.2.0 Anuj Mittal
  7 siblings, 1 reply; 15+ messages in thread
From: Anuj Mittal @ 2024-02-16 11:40 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 ...self-exe-for-swig-swiglib-on-non-Win32-plat.patch | 10 ++++++----
 ...configure-use-pkg-config-for-pcre-detection.patch |  6 +++---
 meta/recipes-devtools/swig/swig/determinism.patch    | 12 +++++++++++-
 .../swig/{swig_4.1.1.bb => swig_4.2.0.bb}            |  2 +-
 4 files changed, 21 insertions(+), 9 deletions(-)
 rename meta/recipes-devtools/swig/{swig_4.1.1.bb => swig_4.2.0.bb} (72%)

diff --git a/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch b/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch
index f27f80ea184..9c6ae389be2 100644
--- a/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch
+++ b/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch
@@ -1,4 +1,4 @@
-From a4a0440a644c6c5e5da096efe3cf05ba309a284f Mon Sep 17 00:00:00 2001
+From ab0ab5e685bd9077c44fdca5c1a27b0f477444d7 Mon Sep 17 00:00:00 2001
 From: "NODA, Kai" <nodakai@gmail.com>
 Date: Sun, 22 Apr 2012 17:01:02 +0900
 Subject: [PATCH] Use /proc/self/exe for "swig -swiglib" on non-Win32
@@ -10,9 +10,11 @@ Upstream-Status: Submitted
 http://sourceforge.net/mailarchive/message.php?msg_id=29179733
 
 ---
- Source/Modules/main.cxx |   24 ++++++++++++++++++++++--
+ Source/Modules/main.cxx | 24 ++++++++++++++++++++++--
  1 file changed, 22 insertions(+), 2 deletions(-)
 
+diff --git a/Source/Modules/main.cxx b/Source/Modules/main.cxx
+index 8a44921..8250dee 100644
 --- a/Source/Modules/main.cxx
 +++ b/Source/Modules/main.cxx
 @@ -25,6 +25,11 @@
@@ -27,7 +29,7 @@ http://sourceforge.net/mailarchive/message.php?msg_id=29179733
  
  // Global variables
  
-@@ -934,9 +939,9 @@ int SWIG_main(int argc, char *argv[], co
+@@ -886,9 +891,9 @@ int SWIG_main(int argc, char *argv[], const TargetLanguageModule *tlm) {
  
    // Check for SWIG_LIB environment variable
    if ((c = getenv("SWIG_LIB")) == (char *) 0) {
@@ -38,7 +40,7 @@ http://sourceforge.net/mailarchive/message.php?msg_id=29179733
      if (!(GetModuleFileName(0, buf, MAX_PATH) == 0 || (p = strrchr(buf, '\\')) == 0)) {
        *(p + 1) = '\0';
        SwigLib = NewStringf("%sLib", buf); // Native windows installation path
-@@ -946,7 +951,22 @@ int SWIG_main(int argc, char *argv[], co
+@@ -898,7 +903,22 @@ int SWIG_main(int argc, char *argv[], const TargetLanguageModule *tlm) {
      if (Len(SWIG_LIB_WIN_UNIX) > 0)
        SwigLibWinUnix = NewString(SWIG_LIB_WIN_UNIX); // Unix installation path using a drive letter (for msys/mingw)
  #else
diff --git a/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch b/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch
index cfcbd8c73ae..9e16caecca1 100644
--- a/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch
+++ b/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch
@@ -1,4 +1,4 @@
-From ffb785ed8d3cac3c28e014b1238d93e2bc1f0c01 Mon Sep 17 00:00:00 2001
+From 57a15651b46a0f1f84a4dd15d67d104fbfbe3f6e Mon Sep 17 00:00:00 2001
 From: Koen Kooi <koen.kooi@linaro.org>
 Date: Tue, 17 Jun 2014 08:18:17 +0200
 Subject: [PATCH] configure: use pkg-config for pcre detection
@@ -11,10 +11,10 @@ Upstream-Status: Pending
  1 file changed, 7 insertions(+), 32 deletions(-)
 
 diff --git a/configure.ac b/configure.ac
-index f88004a..3a2b47c 100644
+index c060028..a330266 100644
 --- a/configure.ac
 +++ b/configure.ac
-@@ -57,39 +57,14 @@ AC_MSG_RESULT([$with_pcre])
+@@ -49,39 +49,14 @@ AC_MSG_RESULT([$with_pcre])
  
  dnl To make configuring easier, check for a locally built PCRE using the Tools/pcre-build.sh script
  if test x"${with_pcre}" = xyes ; then
diff --git a/meta/recipes-devtools/swig/swig/determinism.patch b/meta/recipes-devtools/swig/swig/determinism.patch
index 84c399182a4..417f0c43178 100644
--- a/meta/recipes-devtools/swig/swig/determinism.patch
+++ b/meta/recipes-devtools/swig/swig/determinism.patch
@@ -1,13 +1,23 @@
+From 25bf9893ec1f557781eb241508ea1bec959061fe Mon Sep 17 00:00:00 2001
+From: Richard Purdie <richard.purdie@linuxfoundation.org>
+Date: Mon, 1 Mar 2021 00:11:10 +0000
+Subject: [PATCH] swig: Fix reproducibility issue
+
 Remove the compiler commandline/platform from the compiled binary as this
 breaks reproducibilty.
 
 Upstream-Status: Inappropriate [OE reproducibiity fix upstream unlikely to take]
 RP 2021/3/1
 
+---
+ Source/Modules/main.cxx | 1 -
+ 1 file changed, 1 deletion(-)
 
+diff --git a/Source/Modules/main.cxx b/Source/Modules/main.cxx
+index 8250dee..415761d 100644
 --- a/Source/Modules/main.cxx
 +++ b/Source/Modules/main.cxx
-@@ -642,7 +642,6 @@ static void getoptions(int argc, char *a
+@@ -629,7 +629,6 @@ static void getoptions(int argc, char *argv[]) {
  	}
        } else if (strcmp(argv[i], "-version") == 0) {
  	fprintf(stdout, "\nSWIG Version %s\n", Swig_package_version());
diff --git a/meta/recipes-devtools/swig/swig_4.1.1.bb b/meta/recipes-devtools/swig/swig_4.2.0.bb
similarity index 72%
rename from meta/recipes-devtools/swig/swig_4.1.1.bb
rename to meta/recipes-devtools/swig/swig_4.2.0.bb
index b9e01752993..2ab4ed006c6 100644
--- a/meta/recipes-devtools/swig/swig_4.1.1.bb
+++ b/meta/recipes-devtools/swig/swig_4.2.0.bb
@@ -4,4 +4,4 @@ SRC_URI += "file://0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.pat
             file://0001-configure-use-pkg-config-for-pcre-detection.patch \
             file://determinism.patch \
            "
-SRC_URI[sha256sum] = "2af08aced8fcd65cdb5cc62426768914bedc735b1c250325203716f78e39ac9b"
+SRC_URI[sha256sum] = "261ca2d7589e260762817b912c075831572b72ff2717942f75b3e51244829c97"
-- 
2.43.2



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

* [PATCH 8/9] gstreamer1.0: upgrade 1.22.9 -> 1.22.10
  2024-02-16 11:40 [PATCH 1/9] enchant2: upgrade 2.6.5 -> 2.6.7 Anuj Mittal
                   ` (5 preceding siblings ...)
  2024-02-16 11:40 ` [PATCH 7/9] swig: upgrade 4.1.1 -> 4.2.0 Anuj Mittal
@ 2024-02-16 11:40 ` Anuj Mittal
  2024-02-16 11:40 ` [PATCH 9/9] libcap-ng: fix build with swig 4.2.0 Anuj Mittal
  7 siblings, 0 replies; 15+ messages in thread
From: Anuj Mittal @ 2024-02-16 11:40 UTC (permalink / raw)
  To: openembedded-core

From: Upgrade Helper <auh@yoctoproject.org>

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 ...ct-has-a-different-signature-on-musl.patch |  3 +-
 ...ools_1.22.9.bb => gst-devtools_1.22.10.bb} |  2 +-
 ....22.9.bb => gstreamer1.0-libav_1.22.10.bb} |  2 +-
 ..._1.22.9.bb => gstreamer1.0-omx_1.22.10.bb} |  2 +-
 ...ialized-warnings-when-compiling-with.patch |  2 +-
 ...-avoid-including-sys-poll.h-directly.patch |  4 +-
 ...issing-opencv-data-dir-in-yocto-buil.patch |  4 +-
 ...bb => gstreamer1.0-plugins-bad_1.22.10.bb} |  2 +-
 ...et-caps-from-src-pad-when-query-caps.patch | 12 +++---
 ...parse-enhance-SSA-text-lines-parsing.patch | 20 +++++-----
 ...iv-fb-Make-sure-config.h-is-included.patch | 10 ++---
 ...b => gstreamer1.0-plugins-base_1.22.10.bb} |  2 +-
 ...t-gstqtgl.h-instead-of-gst-gl-gstglf.patch | 10 ++---
 ...ine-ioctl_req_t-for-posix-linux-case.patch |  8 ++--
 ...b => gstreamer1.0-plugins-good_1.22.10.bb} |  2 +-
 ...b => gstreamer1.0-plugins-ugly_1.22.10.bb} |  2 +-
 ...22.9.bb => gstreamer1.0-python_1.22.10.bb} |  2 +-
 ...bb => gstreamer1.0-rtsp-server_1.22.10.bb} |  2 +-
 ....22.9.bb => gstreamer1.0-vaapi_1.22.10.bb} |  2 +-
 ...spect-the-idententaion-used-in-meson.patch |  2 +-
 ...ts-add-support-for-install-the-tests.patch |  4 +-
 ...s-use-a-dictionaries-for-environment.patch | 20 +++++-----
 ...er-script-to-run-the-installed_tests.patch | 40 +++++++++----------
 ...r1.0_1.22.9.bb => gstreamer1.0_1.22.10.bb} |  6 +--
 24 files changed, 76 insertions(+), 89 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gst-devtools_1.22.9.bb => gst-devtools_1.22.10.bb} (95%)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-libav_1.22.9.bb => gstreamer1.0-libav_1.22.10.bb} (91%)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-omx_1.22.9.bb => gstreamer1.0-omx_1.22.10.bb} (95%)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-bad_1.22.9.bb => gstreamer1.0-plugins-bad_1.22.10.bb} (98%)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-base_1.22.9.bb => gstreamer1.0-plugins-base_1.22.10.bb} (98%)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-good_1.22.9.bb => gstreamer1.0-plugins-good_1.22.10.bb} (97%)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-ugly_1.22.9.bb => gstreamer1.0-plugins-ugly_1.22.10.bb} (94%)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-python_1.22.9.bb => gstreamer1.0-python_1.22.10.bb} (91%)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-rtsp-server_1.22.9.bb => gstreamer1.0-rtsp-server_1.22.10.bb} (90%)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-vaapi_1.22.9.bb => gstreamer1.0-vaapi_1.22.10.bb} (95%)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0_1.22.9.bb => gstreamer1.0_1.22.10.bb} (95%)

diff --git a/meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch b/meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch
index c0e45813580..21e30d6d464 100644
--- a/meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch
+++ b/meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch
@@ -1,4 +1,4 @@
-From 73b1002eda17451db1f58431b42c25203f1d3097 Mon Sep 17 00:00:00 2001
+From 0c73b8131efba63c5cd37ea8c7551434c3b57304 Mon Sep 17 00:00:00 2001
 From: Khem Raj <raj.khem@gmail.com>
 Date: Sun, 9 Sep 2018 17:38:10 -0700
 Subject: [PATCH] connect has a different signature on musl
@@ -11,6 +11,7 @@ typcasted to struct sockaddr_in* type inside the function before use
 Upstream-Status: Pending
 
 Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
 ---
  validate/plugins/fault_injection/socket_interposer.c | 7 ++++++-
  1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/meta/recipes-multimedia/gstreamer/gst-devtools_1.22.9.bb b/meta/recipes-multimedia/gstreamer/gst-devtools_1.22.10.bb
similarity index 95%
rename from meta/recipes-multimedia/gstreamer/gst-devtools_1.22.9.bb
rename to meta/recipes-multimedia/gstreamer/gst-devtools_1.22.10.bb
index f60234b5286..363d12612f8 100644
--- a/meta/recipes-multimedia/gstreamer/gst-devtools_1.22.9.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-devtools_1.22.10.bb
@@ -12,7 +12,7 @@ SRC_URI = "https://gstreamer.freedesktop.org/src/gst-devtools/gst-devtools-${PV}
            file://0001-connect-has-a-different-signature-on-musl.patch \
            "
 
-SRC_URI[sha256sum] = "02e29400b44e9cc603aa6444dee5726b57edabef6455e6d0921ffed6f13840ee"
+SRC_URI[sha256sum] = "0e1ec0d0b8f2d3d314a397399cd01dfc50c02ac088176996f934758119075ea9"
 
 DEPENDS = "json-glib glib-2.0 glib-2.0-native gstreamer1.0 gstreamer1.0-plugins-base"
 RRECOMMENDS:${PN} = "git"
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.22.9.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.22.10.bb
similarity index 91%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.22.9.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.22.10.bb
index 10536acc871..818dbf4e5e7 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.22.9.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.22.10.bb
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=69333daa044cb77e486cc36129f7a770 \
                     "
 
 SRC_URI = "https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-${PV}.tar.xz"
-SRC_URI[sha256sum] = "192f7d27d21c1e7c72c339a2647a9b0c247fedc62ea5029115f8c3e22ebb87d8"
+SRC_URI[sha256sum] = "d6dda7aa38a44173278de675ccd92acff0abf473f7bc02e7d1cdd4ce0f3b7642"
 
 S = "${WORKDIR}/gst-libav-${PV}"
 
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.22.9.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.22.10.bb
similarity index 95%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.22.9.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.22.10.bb
index 05d64748bb5..4cb83937dcf 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.22.9.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.22.10.bb
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \
 
 SRC_URI = "https://gstreamer.freedesktop.org/src/gst-omx/gst-omx-${PV}.tar.xz"
 
-SRC_URI[sha256sum] = "9362d6117985d09dcf6e27bdaef377dc08efb7df01d00101d04fb644addac61e"
+SRC_URI[sha256sum] = "ce0126f6de908df4fa7b12136d47d6840dd9f7131ae997e55a817d96a2728a41"
 
 S = "${WORKDIR}/gst-omx-${PV}"
 
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch
index 4b3451d3219..a57fcd7d21a 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch
@@ -1,4 +1,4 @@
-From 6c3eeaf6435608f744303c17d52245f926cd28ac Mon Sep 17 00:00:00 2001
+From 8be0c6ac60c96e87d8aa443be9c431844dc3d92a Mon Sep 17 00:00:00 2001
 From: Andre McCurdy <armccurdy@gmail.com>
 Date: Tue, 26 Jan 2016 15:16:01 -0800
 Subject: [PATCH] fix maybe-uninitialized warnings when compiling with -Os
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0002-avoid-including-sys-poll.h-directly.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0002-avoid-including-sys-poll.h-directly.patch
index e3e5d9fb604..6509a293b75 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0002-avoid-including-sys-poll.h-directly.patch
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0002-avoid-including-sys-poll.h-directly.patch
@@ -1,4 +1,4 @@
-From 701255c5797f222f0c47ace6437d213607b98d1e Mon Sep 17 00:00:00 2001
+From 426ee79adeecc24605426030a486d7c5a755048c Mon Sep 17 00:00:00 2001
 From: Andre McCurdy <armccurdy@gmail.com>
 Date: Wed, 3 Feb 2016 18:05:41 -0800
 Subject: [PATCH] avoid including <sys/poll.h> directly
@@ -14,7 +14,7 @@ Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/sys/dvb/gstdvbsrc.c b/sys/dvb/gstdvbsrc.c
-index 92c918c..5e27871 100644
+index b8e5b1a..5bca6e5 100644
 --- a/sys/dvb/gstdvbsrc.c
 +++ b/sys/dvb/gstdvbsrc.c
 @@ -98,7 +98,7 @@
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0004-opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0004-opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch
index 029b80e1749..50a3143eca1 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0004-opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0004-opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch
@@ -1,4 +1,4 @@
-From 3bc5d48257032b6bbee532aad15062fbbcc43bfe Mon Sep 17 00:00:00 2001
+From e6eb7536fcfc2c75f7831f67b1f16f3f36ef2545 Mon Sep 17 00:00:00 2001
 From: Andrey Zhizhikin <andrey.z@gmail.com>
 Date: Mon, 27 Jan 2020 10:22:35 +0000
 Subject: [PATCH] opencv: resolve missing opencv data dir in yocto build
@@ -18,7 +18,7 @@ Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
  1 file changed, 3 insertions(+)
 
 diff --git a/ext/opencv/meson.build b/ext/opencv/meson.build
-index 1d86b90..b5c8b95 100644
+index 37e2015..326f737 100644
 --- a/ext/opencv/meson.build
 +++ b/ext/opencv/meson.build
 @@ -87,6 +87,9 @@ if opencv_found
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.22.9.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.22.10.bb
similarity index 98%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.22.9.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.22.10.bb
index 6e5aa2f206e..70b9850a49a 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.22.9.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.22.10.bb
@@ -10,7 +10,7 @@ SRC_URI = "https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad
            file://0002-avoid-including-sys-poll.h-directly.patch \
            file://0004-opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch \
            "
-SRC_URI[sha256sum] = "1bc65d0fd5f53a3636564efd3fcf318c3edcdec39c4109a503c1fc8203840a1d"
+SRC_URI[sha256sum] = "dabcd60c762165bb043eba753d599212514c94684e4db9a2e25484cb6508ebbf"
 
 S = "${WORKDIR}/gst-plugins-bad-${PV}"
 
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch
index d5d98383725..34c99ded429 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch
@@ -1,13 +1,14 @@
-From f9d48cd85ee68207733b1b91a00453462c33524a Mon Sep 17 00:00:00 2001
+From 63fe5a7b4ef70e2c490bad3b0838329935a8d77c Mon Sep 17 00:00:00 2001
 From: zhouming <b42586@freescale.com>
 Date: Wed, 14 May 2014 10:16:20 +0800
-Subject: [PATCH 1/4] ENGR00312515: get caps from src pad when query caps
+Subject: [PATCH] ENGR00312515: get caps from src pad when query caps
 
 https://bugzilla.gnome.org/show_bug.cgi?id=728312
 
 Upstream-Status: Pending
 
 Signed-off-by: zhouming <b42586@freescale.com>
+
 ---
  gst-libs/gst/tag/gsttagdemux.c | 13 +++++++++++++
  1 file changed, 13 insertions(+)
@@ -16,10 +17,10 @@ Signed-off-by: zhouming <b42586@freescale.com>
 diff --git a/gst-libs/gst/tag/gsttagdemux.c b/gst-libs/gst/tag/gsttagdemux.c
 old mode 100644
 new mode 100755
-index f545857..62d10ef
+index 173da37..2b7f34c
 --- a/gst-libs/gst/tag/gsttagdemux.c
 +++ b/gst-libs/gst/tag/gsttagdemux.c
-@@ -1777,6 +1777,19 @@ gst_tag_demux_pad_query (GstPad * pad, GstObject * parent, GstQuery * query)
+@@ -1796,6 +1796,19 @@ gst_tag_demux_pad_query (GstPad * pad, GstObject * parent, GstQuery * query)
        }
        break;
      }
@@ -39,6 +40,3 @@ index f545857..62d10ef
      default:
        res = gst_pad_query_default (pad, parent, query);
        break;
--- 
-2.28.0
-
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch
index e453a500c9f..c922aadedeb 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch
@@ -1,7 +1,7 @@
-From f587861bbe12ad0b10370f835592746aafedbf56 Mon Sep 17 00:00:00 2001
+From 7bf9525528c8f4a47413d7f82214d76f95f0c5f6 Mon Sep 17 00:00:00 2001
 From: Mingke Wang <mingke.wang@freescale.com>
 Date: Thu, 19 Mar 2015 14:17:10 +0800
-Subject: [PATCH 2/4] ssaparse: enhance SSA text lines parsing.
+Subject: [PATCH] ssaparse: enhance SSA text lines parsing.
 
 some parser will pass in the original ssa text line which starts with "Dialog:"
 and there's are maybe multiple Dialog lines in one input buffer.
@@ -9,6 +9,7 @@ and there's are maybe multiple Dialog lines in one input buffer.
 Upstream-Status: Submitted [https://bugzilla.gnome.org/show_bug.cgi?id=747496]
 
 Signed-off-by: Mingke Wang <mingke.wang@freescale.com>
+
 ---
  gst/subparse/gstssaparse.c | 150 +++++++++++++++++++++++++++++++++----
  1 file changed, 134 insertions(+), 16 deletions(-)
@@ -17,10 +18,10 @@ Signed-off-by: Mingke Wang <mingke.wang@freescale.com>
 diff --git a/gst/subparse/gstssaparse.c b/gst/subparse/gstssaparse.c
 old mode 100644
 new mode 100755
-index c849c08..4b9636c
+index d6fdb9c..5ebe678
 --- a/gst/subparse/gstssaparse.c
 +++ b/gst/subparse/gstssaparse.c
-@@ -262,6 +262,7 @@ gst_ssa_parse_remove_override_codes (GstSsaParse * parse, gchar * txt)
+@@ -270,6 +270,7 @@ gst_ssa_parse_remove_override_codes (GstSsaParse * parse, gchar * txt)
   * gst_ssa_parse_push_line:
   * @parse: caller element
   * @txt: text to push
@@ -28,7 +29,7 @@ index c849c08..4b9636c
   * @start: timestamp for the buffer
   * @duration: duration for the buffer
   *
-@@ -271,27 +272,133 @@ gst_ssa_parse_remove_override_codes (GstSsaParse * parse, gchar * txt)
+@@ -279,27 +280,133 @@ gst_ssa_parse_remove_override_codes (GstSsaParse * parse, gchar * txt)
   * Returns: result of the push of the created buffer
   */
  static GstFlowReturn
@@ -173,7 +174,7 @@ index c849c08..4b9636c
    GST_LOG_OBJECT (parse, "Text : %s", t);
  
    if (gst_ssa_parse_remove_override_codes (parse, t)) {
-@@ -309,13 +416,22 @@ gst_ssa_parse_push_line (GstSsaParse * parse, gchar * txt,
+@@ -317,13 +424,22 @@ gst_ssa_parse_push_line (GstSsaParse * parse, gchar * txt,
    gst_buffer_fill (buf, 0, escaped, len + 1);
    gst_buffer_set_size (buf, len);
    g_free (escaped);
@@ -200,7 +201,7 @@ index c849c08..4b9636c
  
    ret = gst_pad_push (parse->srcpad, buf);
  
-@@ -335,6 +451,7 @@ gst_ssa_parse_chain (GstPad * sinkpad, GstObject * parent, GstBuffer * buf)
+@@ -343,6 +459,7 @@ gst_ssa_parse_chain (GstPad * sinkpad, GstObject * parent, GstBuffer * buf)
    GstClockTime ts;
    gchar *txt;
    GstMapInfo map;
@@ -208,7 +209,7 @@ index c849c08..4b9636c
  
    if (G_UNLIKELY (!parse->framed))
      goto not_framed;
-@@ -352,13 +469,14 @@ gst_ssa_parse_chain (GstPad * sinkpad, GstObject * parent, GstBuffer * buf)
+@@ -360,13 +477,14 @@ gst_ssa_parse_chain (GstPad * sinkpad, GstObject * parent, GstBuffer * buf)
    /* make double-sure it's 0-terminated and all */
    gst_buffer_map (buf, &map, GST_MAP_READ);
    txt = g_strndup ((gchar *) map.data, map.size);
@@ -224,6 +225,3 @@ index c849c08..4b9636c
  
    if (ret != GST_FLOW_OK && GST_CLOCK_TIME_IS_VALID (ts)) {
      GstSegment segment;
--- 
-2.28.0
-
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0003-viv-fb-Make-sure-config.h-is-included.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0003-viv-fb-Make-sure-config.h-is-included.patch
index 2af83ff8b98..a605533be83 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0003-viv-fb-Make-sure-config.h-is-included.patch
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0003-viv-fb-Make-sure-config.h-is-included.patch
@@ -1,19 +1,20 @@
-From 153f3b83a3fed77785bd1420bed8bbafa2d791b3 Mon Sep 17 00:00:00 2001
+From 2b07840122bc2e83bd23dad59aa80d9479f2e1e4 Mon Sep 17 00:00:00 2001
 From: Carlos Rafael Giani <crg7475@mailbox.org>
 Date: Tue, 21 May 2019 14:01:11 +0200
-Subject: [PATCH 3/4] viv-fb: Make sure config.h is included
+Subject: [PATCH] viv-fb: Make sure config.h is included
 
 This prevents build errors due to missing GST_API_* symbols
 
 Upstream-Status: Pending
 
 Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
+
 ---
  gst-libs/gst/gl/gl-prelude.h | 4 ++++
  1 file changed, 4 insertions(+)
 
 diff --git a/gst-libs/gst/gl/gl-prelude.h b/gst-libs/gst/gl/gl-prelude.h
-index 05e1f62..96ce5e6 100644
+index 85fca5a..946c729 100644
 --- a/gst-libs/gst/gl/gl-prelude.h
 +++ b/gst-libs/gst/gl/gl-prelude.h
 @@ -22,6 +22,10 @@
@@ -27,6 +28,3 @@ index 05e1f62..96ce5e6 100644
  #include <gst/gst.h>
  
  #ifdef BUILDING_GST_GL
--- 
-2.28.0
-
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.22.9.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.22.10.bb
similarity index 98%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.22.9.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.22.10.bb
index 980766c74ba..d4b69b103f9 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.22.9.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.22.10.bb
@@ -11,7 +11,7 @@ SRC_URI = "https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-ba
            file://0003-viv-fb-Make-sure-config.h-is-included.patch \
            file://0002-ssaparse-enhance-SSA-text-lines-parsing.patch \
            "
-SRC_URI[sha256sum] = "fac3e0dd2d8e9370388b34bf8c21b89d5f63bc3cfc12cd7fdc8fc6c1cba03334"
+SRC_URI[sha256sum] = "843a3a2da28e1ee6aeea56dd2be9bffcc3b4bbcd0f974eba4abfc3aa31f0399c"
 
 S = "${WORKDIR}/gst-plugins-base-${PV}"
 
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-qt-include-ext-qt-gstqtgl.h-instead-of-gst-gl-gstglf.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-qt-include-ext-qt-gstqtgl.h-instead-of-gst-gl-gstglf.patch
index 788d7520583..9703a3a8894 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-qt-include-ext-qt-gstqtgl.h-instead-of-gst-gl-gstglf.patch
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-qt-include-ext-qt-gstqtgl.h-instead-of-gst-gl-gstglf.patch
@@ -1,4 +1,4 @@
-From bf8b2fa0f6870589d036f0f33c140a3f85b530a0 Mon Sep 17 00:00:00 2001
+From 99f48716051ce5ddb8c1b77292213af1e462549e Mon Sep 17 00:00:00 2001
 From: Khem Raj <raj.khem@gmail.com>
 Date: Tue, 31 Mar 2020 21:23:28 -0700
 Subject: [PATCH] qt: include ext/qt/gstqtgl.h instead of gst/gl/gstglfuncs.h
@@ -20,13 +20,14 @@ In file included from /mnt/b/yoe/build/tmp/work/cortexa7t2hf-neon-vfpv4-yoe-linu
 
 Upstream-Status: Pending
 Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
 ---
  ext/qt/gstqsgtexture.cc | 2 +-
  ext/qt/qtwindow.cc      | 2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)
 
 diff --git a/ext/qt/gstqsgtexture.cc b/ext/qt/gstqsgtexture.cc
-index a05d26e..4cc9fc6 100644
+index 663696b..36b17d4 100644
 --- a/ext/qt/gstqsgtexture.cc
 +++ b/ext/qt/gstqsgtexture.cc
 @@ -27,7 +27,7 @@
@@ -39,7 +40,7 @@ index a05d26e..4cc9fc6 100644
  
  #define GST_CAT_DEFAULT gst_qsg_texture_debug
 diff --git a/ext/qt/qtwindow.cc b/ext/qt/qtwindow.cc
-index 9360c33..0dfd3f1 100644
+index 2872cb5..5a36be9 100644
 --- a/ext/qt/qtwindow.cc
 +++ b/ext/qt/qtwindow.cc
 @@ -25,7 +25,7 @@
@@ -51,6 +52,3 @@ index 9360c33..0dfd3f1 100644
  #include "qtwindow.h"
  #include "gstqsgtexture.h"
  #include "gstqtglutility.h"
--- 
-2.28.0
-
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch
index fbbf029a2c6..33bd4200f6f 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch
@@ -1,4 +1,4 @@
-From 5ce1e410965ed047a03c09b17796162f0363e396 Mon Sep 17 00:00:00 2001
+From b77d4806fd5de50d0b017a3e6a19c5bfdef7b3e4 Mon Sep 17 00:00:00 2001
 From: Khem Raj <raj.khem@gmail.com>
 Date: Mon, 13 Feb 2023 12:47:31 -0800
 Subject: [PATCH] v4l2: Define ioctl_req_t for posix/linux case
@@ -18,12 +18,13 @@ gstv4l2object.c:544:23: error: incompatible function pointer types assigning to
 
 Upstream-Status: Submitted [https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3950]
 Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
 ---
  sys/v4l2/gstv4l2object.h | 2 ++
  1 file changed, 2 insertions(+)
 
 diff --git a/sys/v4l2/gstv4l2object.h b/sys/v4l2/gstv4l2object.h
-index 3a5c961..4f43008 100644
+index d95b375..5223cbb 100644
 --- a/sys/v4l2/gstv4l2object.h
 +++ b/sys/v4l2/gstv4l2object.h
 @@ -76,6 +76,8 @@ typedef gboolean  (*GstV4l2UpdateFpsFunction) (GstV4l2Object * v4l2object);
@@ -35,6 +36,3 @@ index 3a5c961..4f43008 100644
  #else
  typedef gulong ioctl_req_t;
  #endif
--- 
-2.39.1
-
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22.9.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22.10.bb
similarity index 97%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22.9.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22.10.bb
index 052ba1801b9..9a76aaf247e 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22.9.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22.10.bb
@@ -8,7 +8,7 @@ SRC_URI = "https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-go
            file://0001-qt-include-ext-qt-gstqtgl.h-instead-of-gst-gl-gstglf.patch \
            file://0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch"
 
-SRC_URI[sha256sum] = "26959fcfebfff637d4ea08ef40316baf31b61bb7729820b0684e800c3a1478b6"
+SRC_URI[sha256sum] = "f748feae922cad62f20102a84ade8f42b78e1e44a34866aa3ea766f9172e1c7f"
 
 S = "${WORKDIR}/gst-plugins-good-${PV}"
 
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.22.9.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.22.10.bb
similarity index 94%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.22.9.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.22.10.bb
index 722f8e9fe30..7cbbf9fda0f 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.22.9.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.22.10.bb
@@ -15,7 +15,7 @@ SRC_URI = " \
             https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-${PV}.tar.xz \
             "
 
-SRC_URI[sha256sum] = "0bf685d66015a01dd3fc1671b64a1c8acb321dd9d4ab9e05a29ab19782aa6236"
+SRC_URI[sha256sum] = "cc80a81a22c0b3b31ab7f1b8bf18dda23c72d2791b86cc6264923a68336329ea"
 
 S = "${WORKDIR}/gst-plugins-ugly-${PV}"
 
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.22.9.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.22.10.bb
similarity index 91%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.22.9.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.22.10.bb
index e086fa6866e..b829a0fc62a 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.22.9.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.22.10.bb
@@ -8,7 +8,7 @@ LICENSE = "LGPL-2.1-or-later"
 LIC_FILES_CHKSUM = "file://COPYING;md5=c34deae4e395ca07e725ab0076a5f740"
 
 SRC_URI = "https://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
-SRC_URI[sha256sum] = "3f9d5c6ffefda268703744b592a6b3983aa6723273b1220ecbcb62c2a5800009"
+SRC_URI[sha256sum] = "99e37ea9f7163099734f9b0fce361bc67a0e7a65ffba9bc497127506a3fdedb3"
 
 DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base python3-pygobject"
 RDEPENDS:${PN} += "gstreamer1.0 gstreamer1.0-plugins-base python3-pygobject"
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.22.9.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.22.10.bb
similarity index 90%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.22.9.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.22.10.bb
index e232263a46d..0e910e3dc4e 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.22.9.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.22.10.bb
@@ -10,7 +10,7 @@ PNREAL = "gst-rtsp-server"
 
 SRC_URI = "https://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
 
-SRC_URI[sha256sum] = "808af148f89404ff74850f8ca5272bed4bfe67f9620231dc4514fd07eb26d0a4"
+SRC_URI[sha256sum] = "60eb4f80b5a7ca929c21a61d50be9813a3413787959a5875de56a8ad5ca25f35"
 
 S = "${WORKDIR}/${PNREAL}-${PV}"
 
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.22.9.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.22.10.bb
similarity index 95%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.22.9.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.22.10.bb
index c53ee290515..b52b7aa4c46 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.22.9.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.22.10.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c"
 
 SRC_URI = "https://gstreamer.freedesktop.org/src/${REALPN}/${REALPN}-${PV}.tar.xz"
 
-SRC_URI[sha256sum] = "8ba20da8c4cbf5b2953dba904672c4275d0053e1528f97fdf8e59942c7883ca8"
+SRC_URI[sha256sum] = "094ca144aca8f2c554a2517dfdc421fa37c80294c6f12b992c20cbc73aa2c0bd"
 
 S = "${WORKDIR}/${REALPN}-${PV}"
 DEPENDS = "libva gstreamer1.0 gstreamer1.0-plugins-base gstreamer1.0-plugins-bad"
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-tests-respect-the-idententaion-used-in-meson.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-tests-respect-the-idententaion-used-in-meson.patch
index 1b9278db04b..0d839bd6c88 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-tests-respect-the-idententaion-used-in-meson.patch
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-tests-respect-the-idententaion-used-in-meson.patch
@@ -1,4 +1,4 @@
-From 559e1dd850b2b9eb3a415aa43e932e5e48f605cd Mon Sep 17 00:00:00 2001
+From 5372cd5bf2a9dd247b9c5fc6e4fe248046dbb085 Mon Sep 17 00:00:00 2001
 From: Jose Quaresma <quaresma.jose@gmail.com>
 Date: Sun, 11 Apr 2021 19:48:13 +0100
 Subject: [PATCH] tests: respect the idententaion used in meson
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0002-tests-add-support-for-install-the-tests.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0002-tests-add-support-for-install-the-tests.patch
index 568e38cbf1c..64717e66c36 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0002-tests-add-support-for-install-the-tests.patch
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0002-tests-add-support-for-install-the-tests.patch
@@ -1,4 +1,4 @@
-From 08b1aaff972a7f6349373fc1ad4cc23081adb52c Mon Sep 17 00:00:00 2001
+From 27e977d03b0f7c1d0bf19621ef0cec0585410e7b Mon Sep 17 00:00:00 2001
 From: Jose Quaresma <quaresma.jose@gmail.com>
 Date: Sun, 11 Apr 2021 19:48:13 +0100
 Subject: [PATCH] tests: add support for install the tests
@@ -20,7 +20,7 @@ Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
  create mode 100644 tests/check/template.test.in
 
 diff --git a/meson.build b/meson.build
-index f9f591d..3906fb3 100644
+index 60c7bec..f7650b1 100644
 --- a/meson.build
 +++ b/meson.build
 @@ -606,6 +606,10 @@ if bashcomp_dep.found()
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0003-tests-use-a-dictionaries-for-environment.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0003-tests-use-a-dictionaries-for-environment.patch
index 10a6dcc6194..0fd830f1504 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0003-tests-use-a-dictionaries-for-environment.patch
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0003-tests-use-a-dictionaries-for-environment.patch
@@ -1,7 +1,7 @@
-From fe830f0f75f3b4b41e3dbef8d4cf6ee4103c9e06 Mon Sep 17 00:00:00 2001
+From 7041bc5adf9501beb1428d8bbae6b351a6bf07f9 Mon Sep 17 00:00:00 2001
 From: Jose Quaresma <quaresma.jose@gmail.com>
 Date: Sat, 24 Apr 2021 10:34:47 +0100
-Subject: [PATCH 3/4] tests: use a dictionaries for environment
+Subject: [PATCH] tests: use a dictionaries for environment
 
 meson environment() can't be passed to configure_file and it is needed for installed_tests,
 use a dictionary as this is simplest solution to install the environment.
@@ -9,15 +9,16 @@ use a dictionary as this is simplest solution to install the environment.
 Upstream-Status: Submitted [https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/789]
 
 Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
+
 ---
- subprojects/gstreamer/tests/check/meson.build | 21 ++++++++++++-------
+ tests/check/meson.build | 21 +++++++++++++--------
  1 file changed, 13 insertions(+), 8 deletions(-)
 
-diff --git a/subprojects/gstreamer/tests/check/meson.build b/subprojects/gstreamer/tests/check/meson.build
-index 00a138a568..48ec2532f8 100644
---- a/subprojects/gstreamer/tests/check/meson.build
-+++ b/subprojects/gstreamer/tests/check/meson.build
-@@ -161,14 +161,19 @@ foreach t : core_tests
+diff --git a/tests/check/meson.build b/tests/check/meson.build
+index f2d400f..50dff7f 100644
+--- a/tests/check/meson.build
++++ b/tests/check/meson.build
+@@ -160,14 +160,19 @@ foreach t : core_tests
        install: installed_tests_enabled,
      )
  
@@ -45,6 +46,3 @@ index 00a138a568..48ec2532f8 100644
  
      if installed_tests_enabled
        test_conf = configuration_data()
--- 
-2.33.1
-
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0004-tests-add-helper-script-to-run-the-installed_tests.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0004-tests-add-helper-script-to-run-the-installed_tests.patch
index efa004f8ce6..5689dc9fbbc 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0004-tests-add-helper-script-to-run-the-installed_tests.patch
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0004-tests-add-helper-script-to-run-the-installed_tests.patch
@@ -1,7 +1,7 @@
-From 4dcbabebca2ad6f1fdd59ee35a858082e87db7b6 Mon Sep 17 00:00:00 2001
+From 1b1d1ce4227b6bea7c7def5dac4a663486e070c2 Mon Sep 17 00:00:00 2001
 From: Jose Quaresma <quaresma.jose@gmail.com>
 Date: Sun, 2 May 2021 01:58:01 +0100
-Subject: [PATCH 4/4] tests: add helper script to run the installed_tests
+Subject: [PATCH] tests: add helper script to run the installed_tests
 
 - this is a bash script that will run the installed_tests
 with some of the environment variables used in the meson
@@ -10,18 +10,19 @@ testing framework.
 Upstream-Status: Submitted [https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/789]
 
 Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
+
 ---
- subprojects/gstreamer/tests/check/meson.build   | 17 +++++++++++++++++
- .../gstreamer/tests/check/template.sh.in        |  9 +++++++++
- .../gstreamer/tests/check/template.test.in      |  2 +-
+ tests/check/meson.build      | 17 +++++++++++++++++
+ tests/check/template.sh.in   |  9 +++++++++
+ tests/check/template.test.in |  2 +-
  3 files changed, 27 insertions(+), 1 deletion(-)
- create mode 100755 subprojects/gstreamer/tests/check/template.sh.in
+ create mode 100755 tests/check/template.sh.in
 
-diff --git a/subprojects/gstreamer/tests/check/meson.build b/subprojects/gstreamer/tests/check/meson.build
-index 48ec2532f8..7dc4990d4e 100644
---- a/subprojects/gstreamer/tests/check/meson.build
-+++ b/subprojects/gstreamer/tests/check/meson.build
-@@ -185,6 +185,23 @@ foreach t : core_tests
+diff --git a/tests/check/meson.build b/tests/check/meson.build
+index 50dff7f..2b9e979 100644
+--- a/tests/check/meson.build
++++ b/tests/check/meson.build
+@@ -184,6 +184,23 @@ foreach t : core_tests
          install_dir: installed_tests_metadir,
          configuration: test_conf
        )
@@ -45,11 +46,11 @@ index 48ec2532f8..7dc4990d4e 100644
      endif
  
      test(test_name, exe, env: env, timeout : 3 * 60)
-diff --git a/subprojects/gstreamer/tests/check/template.sh.in b/subprojects/gstreamer/tests/check/template.sh.in
+diff --git a/tests/check/template.sh.in b/tests/check/template.sh.in
 new file mode 100755
-index 0000000000..cf7d31b0ea
+index 0000000..cf7d31b
 --- /dev/null
-+++ b/subprojects/gstreamer/tests/check/template.sh.in
++++ b/tests/check/template.sh.in
 @@ -0,0 +1,9 @@
 +#!/bin/sh
 +
@@ -60,15 +61,12 @@ index 0000000000..cf7d31b0ea
 +GST_REGISTRY=@GST_REGISTRY@
 +GST_STATE_IGNORE_ELEMENTS="@GST_STATE_IGNORE_ELEMENTS@"
 +exec @TEST@
-diff --git a/subprojects/gstreamer/tests/check/template.test.in b/subprojects/gstreamer/tests/check/template.test.in
-index f701627f87..b74ef6ad73 100644
---- a/subprojects/gstreamer/tests/check/template.test.in
-+++ b/subprojects/gstreamer/tests/check/template.test.in
+diff --git a/tests/check/template.test.in b/tests/check/template.test.in
+index f701627..b74ef6a 100644
+--- a/tests/check/template.test.in
++++ b/tests/check/template.test.in
 @@ -1,3 +1,3 @@
  [Test]
  Type=session
 -Exec=@installed_tests_dir@/@program@
 +Exec=@installed_tests_dir@/@program@.sh
--- 
-2.33.1
-
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.22.9.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.22.10.bb
similarity index 95%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0_1.22.9.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0_1.22.10.bb
index b4ab6ad10ce..0c944e9e110 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.22.9.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.22.10.bb
@@ -19,10 +19,10 @@ SRC_URI = "https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.x
            file://run-ptest \
            file://0001-tests-respect-the-idententaion-used-in-meson.patch \
            file://0002-tests-add-support-for-install-the-tests.patch \
-           file://0003-tests-use-a-dictionaries-for-environment.patch;striplevel=3 \
-           file://0004-tests-add-helper-script-to-run-the-installed_tests.patch;striplevel=3 \
+           file://0003-tests-use-a-dictionaries-for-environment.patch \
+           file://0004-tests-add-helper-script-to-run-the-installed_tests.patch \
            "
-SRC_URI[sha256sum] = "1e7124d347e8cdc80f08ec1d370c201be513002af1102bb20e83c5279cb48ebd"
+SRC_URI[sha256sum] = "969aaef396f252ce925132a4be2aa004e0320f5c1baf0acaaae09c544a6759f4"
 
 PACKAGECONFIG ??= "${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \
                    check \
-- 
2.43.2



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

* [PATCH 9/9] libcap-ng: fix build with swig 4.2.0
  2024-02-16 11:40 [PATCH 1/9] enchant2: upgrade 2.6.5 -> 2.6.7 Anuj Mittal
                   ` (6 preceding siblings ...)
  2024-02-16 11:40 ` [PATCH 8/9] gstreamer1.0: upgrade 1.22.9 -> 1.22.10 Anuj Mittal
@ 2024-02-16 11:40 ` Anuj Mittal
  7 siblings, 0 replies; 15+ messages in thread
From: Anuj Mittal @ 2024-02-16 11:40 UTC (permalink / raw)
  To: openembedded-core

Backport an upstream patch to remove Python exception handler which is
deprecated and also removed from swig.

https://github.com/swig/swig/commit/736c052d7de3685be9d5c4aecee6b36273e8c319

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
---
 .../files/fix-issues-with-swig-4-2.patch      | 32 +++++++++++++++++++
 meta/recipes-support/libcap-ng/libcap-ng.inc  |  4 ++-
 2 files changed, 35 insertions(+), 1 deletion(-)
 create mode 100644 meta/recipes-support/libcap-ng/files/fix-issues-with-swig-4-2.patch

diff --git a/meta/recipes-support/libcap-ng/files/fix-issues-with-swig-4-2.patch b/meta/recipes-support/libcap-ng/files/fix-issues-with-swig-4-2.patch
new file mode 100644
index 00000000000..fb424fe7258
--- /dev/null
+++ b/meta/recipes-support/libcap-ng/files/fix-issues-with-swig-4-2.patch
@@ -0,0 +1,32 @@
+From 355eada2d20886287cffc16e304087dd6f66ae37 Mon Sep 17 00:00:00 2001
+From: Steve Grubb <ausearch.1@gmail.com>
+Date: Thu, 4 Jan 2024 15:06:29 -0500
+Subject: [PATCH] Remove python global exception handler since its deprecated
+
+Upstream-Status: Backport [https://github.com/stevegrubb/libcap-ng/commit/30453b6553948cd05c438f9f509013e3bb84f25b]
+Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
+---
+ bindings/src/capng_swig.i | 7 -------
+ 1 file changed, 7 deletions(-)
+
+diff --git a/bindings/src/capng_swig.i b/bindings/src/capng_swig.i
+index fcdaf18..fa85e13 100644
+--- a/bindings/src/capng_swig.i
++++ b/bindings/src/capng_swig.i
+@@ -30,13 +30,6 @@
+ 
+ %varargs(16, signed capability = 0) capng_updatev;
+ 
+-%except(python) {
+-  $action
+-  if (result < 0) {
+-    PyErr_SetFromErrno(PyExc_OSError);
+-    return NULL;
+-  }
+-}
+ #endif
+ 
+ %define __signed__
+-- 
+2.43.2
+
diff --git a/meta/recipes-support/libcap-ng/libcap-ng.inc b/meta/recipes-support/libcap-ng/libcap-ng.inc
index a6b5dcf452e..845b7c2f0a0 100644
--- a/meta/recipes-support/libcap-ng/libcap-ng.inc
+++ b/meta/recipes-support/libcap-ng/libcap-ng.inc
@@ -7,7 +7,9 @@ LICENSE = "GPL-2.0-or-later & LGPL-2.1-or-later"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
 		    file://COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06"
 
-SRC_URI = "https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-${PV}.tar.gz"
+SRC_URI = "https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-${PV}.tar.gz \
+           file://fix-issues-with-swig-4-2.patch \
+           "
 
 SRC_URI[sha256sum] = "68581d3b38e7553cb6f6ddf7813b1fc99e52856f21421f7b477ce5abd2605a8a"
 
-- 
2.43.2



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

* Re: [OE-core] [PATCH 7/9] swig: upgrade 4.1.1 -> 4.2.0
  2024-02-16 11:40 ` [PATCH 7/9] swig: upgrade 4.1.1 -> 4.2.0 Anuj Mittal
@ 2024-02-17  2:59   ` Khem Raj
  2024-02-18  3:01     ` Khem Raj
  0 siblings, 1 reply; 15+ messages in thread
From: Khem Raj @ 2024-02-17  2:59 UTC (permalink / raw)
  To: Anuj Mittal, openembedded-core

this can be tricky for many apps depend on it subtly might fail. Perhaps 
doing an extended world build with this might be good.

On 2/16/24 3:40 AM, Anuj Mittal wrote:
> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
> ---
>   ...self-exe-for-swig-swiglib-on-non-Win32-plat.patch | 10 ++++++----
>   ...configure-use-pkg-config-for-pcre-detection.patch |  6 +++---
>   meta/recipes-devtools/swig/swig/determinism.patch    | 12 +++++++++++-
>   .../swig/{swig_4.1.1.bb => swig_4.2.0.bb}            |  2 +-
>   4 files changed, 21 insertions(+), 9 deletions(-)
>   rename meta/recipes-devtools/swig/{swig_4.1.1.bb => swig_4.2.0.bb} (72%)
>
> diff --git a/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch b/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch
> index f27f80ea184..9c6ae389be2 100644
> --- a/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch
> +++ b/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch
> @@ -1,4 +1,4 @@
> -From a4a0440a644c6c5e5da096efe3cf05ba309a284f Mon Sep 17 00:00:00 2001
> +From ab0ab5e685bd9077c44fdca5c1a27b0f477444d7 Mon Sep 17 00:00:00 2001
>   From: "NODA, Kai" <nodakai@gmail.com>
>   Date: Sun, 22 Apr 2012 17:01:02 +0900
>   Subject: [PATCH] Use /proc/self/exe for "swig -swiglib" on non-Win32
> @@ -10,9 +10,11 @@ Upstream-Status: Submitted
>   http://sourceforge.net/mailarchive/message.php?msg_id=29179733
>   
>   ---
> - Source/Modules/main.cxx |   24 ++++++++++++++++++++++--
> + Source/Modules/main.cxx | 24 ++++++++++++++++++++++--
>    1 file changed, 22 insertions(+), 2 deletions(-)
>   
> +diff --git a/Source/Modules/main.cxx b/Source/Modules/main.cxx
> +index 8a44921..8250dee 100644
>   --- a/Source/Modules/main.cxx
>   +++ b/Source/Modules/main.cxx
>   @@ -25,6 +25,11 @@
> @@ -27,7 +29,7 @@ http://sourceforge.net/mailarchive/message.php?msg_id=29179733
>    
>    // Global variables
>    
> -@@ -934,9 +939,9 @@ int SWIG_main(int argc, char *argv[], co
> +@@ -886,9 +891,9 @@ int SWIG_main(int argc, char *argv[], const TargetLanguageModule *tlm) {
>    
>      // Check for SWIG_LIB environment variable
>      if ((c = getenv("SWIG_LIB")) == (char *) 0) {
> @@ -38,7 +40,7 @@ http://sourceforge.net/mailarchive/message.php?msg_id=29179733
>        if (!(GetModuleFileName(0, buf, MAX_PATH) == 0 || (p = strrchr(buf, '\\')) == 0)) {
>          *(p + 1) = '\0';
>          SwigLib = NewStringf("%sLib", buf); // Native windows installation path
> -@@ -946,7 +951,22 @@ int SWIG_main(int argc, char *argv[], co
> +@@ -898,7 +903,22 @@ int SWIG_main(int argc, char *argv[], const TargetLanguageModule *tlm) {
>        if (Len(SWIG_LIB_WIN_UNIX) > 0)
>          SwigLibWinUnix = NewString(SWIG_LIB_WIN_UNIX); // Unix installation path using a drive letter (for msys/mingw)
>    #else
> diff --git a/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch b/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch
> index cfcbd8c73ae..9e16caecca1 100644
> --- a/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch
> +++ b/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch
> @@ -1,4 +1,4 @@
> -From ffb785ed8d3cac3c28e014b1238d93e2bc1f0c01 Mon Sep 17 00:00:00 2001
> +From 57a15651b46a0f1f84a4dd15d67d104fbfbe3f6e Mon Sep 17 00:00:00 2001
>   From: Koen Kooi <koen.kooi@linaro.org>
>   Date: Tue, 17 Jun 2014 08:18:17 +0200
>   Subject: [PATCH] configure: use pkg-config for pcre detection
> @@ -11,10 +11,10 @@ Upstream-Status: Pending
>    1 file changed, 7 insertions(+), 32 deletions(-)
>   
>   diff --git a/configure.ac b/configure.ac
> -index f88004a..3a2b47c 100644
> +index c060028..a330266 100644
>   --- a/configure.ac
>   +++ b/configure.ac
> -@@ -57,39 +57,14 @@ AC_MSG_RESULT([$with_pcre])
> +@@ -49,39 +49,14 @@ AC_MSG_RESULT([$with_pcre])
>    
>    dnl To make configuring easier, check for a locally built PCRE using the Tools/pcre-build.sh script
>    if test x"${with_pcre}" = xyes ; then
> diff --git a/meta/recipes-devtools/swig/swig/determinism.patch b/meta/recipes-devtools/swig/swig/determinism.patch
> index 84c399182a4..417f0c43178 100644
> --- a/meta/recipes-devtools/swig/swig/determinism.patch
> +++ b/meta/recipes-devtools/swig/swig/determinism.patch
> @@ -1,13 +1,23 @@
> +From 25bf9893ec1f557781eb241508ea1bec959061fe Mon Sep 17 00:00:00 2001
> +From: Richard Purdie <richard.purdie@linuxfoundation.org>
> +Date: Mon, 1 Mar 2021 00:11:10 +0000
> +Subject: [PATCH] swig: Fix reproducibility issue
> +
>   Remove the compiler commandline/platform from the compiled binary as this
>   breaks reproducibilty.
>   
>   Upstream-Status: Inappropriate [OE reproducibiity fix upstream unlikely to take]
>   RP 2021/3/1
>   
> +---
> + Source/Modules/main.cxx | 1 -
> + 1 file changed, 1 deletion(-)
>   
> +diff --git a/Source/Modules/main.cxx b/Source/Modules/main.cxx
> +index 8250dee..415761d 100644
>   --- a/Source/Modules/main.cxx
>   +++ b/Source/Modules/main.cxx
> -@@ -642,7 +642,6 @@ static void getoptions(int argc, char *a
> +@@ -629,7 +629,6 @@ static void getoptions(int argc, char *argv[]) {
>    	}
>          } else if (strcmp(argv[i], "-version") == 0) {
>    	fprintf(stdout, "\nSWIG Version %s\n", Swig_package_version());
> diff --git a/meta/recipes-devtools/swig/swig_4.1.1.bb b/meta/recipes-devtools/swig/swig_4.2.0.bb
> similarity index 72%
> rename from meta/recipes-devtools/swig/swig_4.1.1.bb
> rename to meta/recipes-devtools/swig/swig_4.2.0.bb
> index b9e01752993..2ab4ed006c6 100644
> --- a/meta/recipes-devtools/swig/swig_4.1.1.bb
> +++ b/meta/recipes-devtools/swig/swig_4.2.0.bb
> @@ -4,4 +4,4 @@ SRC_URI += "file://0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.pat
>               file://0001-configure-use-pkg-config-for-pcre-detection.patch \
>               file://determinism.patch \
>              "
> -SRC_URI[sha256sum] = "2af08aced8fcd65cdb5cc62426768914bedc735b1c250325203716f78e39ac9b"
> +SRC_URI[sha256sum] = "261ca2d7589e260762817b912c075831572b72ff2717942f75b3e51244829c97"
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#195754): https://lists.openembedded.org/g/openembedded-core/message/195754
> Mute This Topic: https://lists.openembedded.org/mt/104390933/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] 15+ messages in thread

* Re: [OE-core] [PATCH 2/9] minicom: upgrade 2.8 -> 2.9
  2024-02-16 11:40 ` [PATCH 2/9] minicom: upgrade 2.8 -> 2.9 Anuj Mittal
@ 2024-02-17 12:38   ` Richard Purdie
  2024-02-19  8:11     ` Mittal, Anuj
  0 siblings, 1 reply; 15+ messages in thread
From: Richard Purdie @ 2024-02-17 12:38 UTC (permalink / raw)
  To: Anuj Mittal, openembedded-core

On Fri, 2024-02-16 at 19:40 +0800, Anuj Mittal wrote:
> Drop patches that have been merged upstream and available in this
> version.
> 
> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
> ---
>  ...ix-minicom-h-v-return-value-is-not-0.patch | 33 -------------------
>  .../minicom/allow.to.disable.lockdev.patch    | 30 -----------------
>  .../{minicom_2.8.bb => minicom_2.9.bb}        |  7 ++--
>  3 files changed, 2 insertions(+), 68 deletions(-)
>  delete mode 100644 meta/recipes-extended/minicom/minicom/0001-fix-minicom-h-v-return-value-is-not-0.patch
>  delete mode 100644 meta/recipes-extended/minicom/minicom/allow.to.disable.lockdev.patch
>  rename meta/recipes-extended/minicom/{minicom_2.8.bb => minicom_2.9.bb} (80%)

I think devtool testing is using something here in oe-selftest:

https://autobuilder.yoctoproject.org/typhoon/#/builders/79/builds/6422/steps/14/logs/stdio

but haven't 100% confirmed that yet as there are multiple patches in
master-next.

Cheers,

Richard


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

* Re: [OE-core] [PATCH 7/9] swig: upgrade 4.1.1 -> 4.2.0
  2024-02-17  2:59   ` [OE-core] " Khem Raj
@ 2024-02-18  3:01     ` Khem Raj
  2024-02-19  2:50       ` Mittal, Anuj
  0 siblings, 1 reply; 15+ messages in thread
From: Khem Raj @ 2024-02-18  3:01 UTC (permalink / raw)
  To: Anuj Mittal, openembedded-core

here is one failure due to this upgrade -
https://errors.yoctoproject.org/Errors/Details/753587/

On Fri, Feb 16, 2024 at 6:59 PM Khem Raj <raj.khem@gmail.com> wrote:
>
> this can be tricky for many apps depend on it subtly might fail. Perhaps
> doing an extended world build with this might be good.
>
> On 2/16/24 3:40 AM, Anuj Mittal wrote:
> > Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
> > ---
> >   ...self-exe-for-swig-swiglib-on-non-Win32-plat.patch | 10 ++++++----
> >   ...configure-use-pkg-config-for-pcre-detection.patch |  6 +++---
> >   meta/recipes-devtools/swig/swig/determinism.patch    | 12 +++++++++++-
> >   .../swig/{swig_4.1.1.bb => swig_4.2.0.bb}            |  2 +-
> >   4 files changed, 21 insertions(+), 9 deletions(-)
> >   rename meta/recipes-devtools/swig/{swig_4.1.1.bb => swig_4.2.0.bb} (72%)
> >
> > diff --git a/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch b/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch
> > index f27f80ea184..9c6ae389be2 100644
> > --- a/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch
> > +++ b/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch
> > @@ -1,4 +1,4 @@
> > -From a4a0440a644c6c5e5da096efe3cf05ba309a284f Mon Sep 17 00:00:00 2001
> > +From ab0ab5e685bd9077c44fdca5c1a27b0f477444d7 Mon Sep 17 00:00:00 2001
> >   From: "NODA, Kai" <nodakai@gmail.com>
> >   Date: Sun, 22 Apr 2012 17:01:02 +0900
> >   Subject: [PATCH] Use /proc/self/exe for "swig -swiglib" on non-Win32
> > @@ -10,9 +10,11 @@ Upstream-Status: Submitted
> >   http://sourceforge.net/mailarchive/message.php?msg_id=29179733
> >
> >   ---
> > - Source/Modules/main.cxx |   24 ++++++++++++++++++++++--
> > + Source/Modules/main.cxx | 24 ++++++++++++++++++++++--
> >    1 file changed, 22 insertions(+), 2 deletions(-)
> >
> > +diff --git a/Source/Modules/main.cxx b/Source/Modules/main.cxx
> > +index 8a44921..8250dee 100644
> >   --- a/Source/Modules/main.cxx
> >   +++ b/Source/Modules/main.cxx
> >   @@ -25,6 +25,11 @@
> > @@ -27,7 +29,7 @@ http://sourceforge.net/mailarchive/message.php?msg_id=29179733
> >
> >    // Global variables
> >
> > -@@ -934,9 +939,9 @@ int SWIG_main(int argc, char *argv[], co
> > +@@ -886,9 +891,9 @@ int SWIG_main(int argc, char *argv[], const TargetLanguageModule *tlm) {
> >
> >      // Check for SWIG_LIB environment variable
> >      if ((c = getenv("SWIG_LIB")) == (char *) 0) {
> > @@ -38,7 +40,7 @@ http://sourceforge.net/mailarchive/message.php?msg_id=29179733
> >        if (!(GetModuleFileName(0, buf, MAX_PATH) == 0 || (p = strrchr(buf, '\\')) == 0)) {
> >          *(p + 1) = '\0';
> >          SwigLib = NewStringf("%sLib", buf); // Native windows installation path
> > -@@ -946,7 +951,22 @@ int SWIG_main(int argc, char *argv[], co
> > +@@ -898,7 +903,22 @@ int SWIG_main(int argc, char *argv[], const TargetLanguageModule *tlm) {
> >        if (Len(SWIG_LIB_WIN_UNIX) > 0)
> >          SwigLibWinUnix = NewString(SWIG_LIB_WIN_UNIX); // Unix installation path using a drive letter (for msys/mingw)
> >    #else
> > diff --git a/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch b/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch
> > index cfcbd8c73ae..9e16caecca1 100644
> > --- a/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch
> > +++ b/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-detection.patch
> > @@ -1,4 +1,4 @@
> > -From ffb785ed8d3cac3c28e014b1238d93e2bc1f0c01 Mon Sep 17 00:00:00 2001
> > +From 57a15651b46a0f1f84a4dd15d67d104fbfbe3f6e Mon Sep 17 00:00:00 2001
> >   From: Koen Kooi <koen.kooi@linaro.org>
> >   Date: Tue, 17 Jun 2014 08:18:17 +0200
> >   Subject: [PATCH] configure: use pkg-config for pcre detection
> > @@ -11,10 +11,10 @@ Upstream-Status: Pending
> >    1 file changed, 7 insertions(+), 32 deletions(-)
> >
> >   diff --git a/configure.ac b/configure.ac
> > -index f88004a..3a2b47c 100644
> > +index c060028..a330266 100644
> >   --- a/configure.ac
> >   +++ b/configure.ac
> > -@@ -57,39 +57,14 @@ AC_MSG_RESULT([$with_pcre])
> > +@@ -49,39 +49,14 @@ AC_MSG_RESULT([$with_pcre])
> >
> >    dnl To make configuring easier, check for a locally built PCRE using the Tools/pcre-build.sh script
> >    if test x"${with_pcre}" = xyes ; then
> > diff --git a/meta/recipes-devtools/swig/swig/determinism.patch b/meta/recipes-devtools/swig/swig/determinism.patch
> > index 84c399182a4..417f0c43178 100644
> > --- a/meta/recipes-devtools/swig/swig/determinism.patch
> > +++ b/meta/recipes-devtools/swig/swig/determinism.patch
> > @@ -1,13 +1,23 @@
> > +From 25bf9893ec1f557781eb241508ea1bec959061fe Mon Sep 17 00:00:00 2001
> > +From: Richard Purdie <richard.purdie@linuxfoundation.org>
> > +Date: Mon, 1 Mar 2021 00:11:10 +0000
> > +Subject: [PATCH] swig: Fix reproducibility issue
> > +
> >   Remove the compiler commandline/platform from the compiled binary as this
> >   breaks reproducibilty.
> >
> >   Upstream-Status: Inappropriate [OE reproducibiity fix upstream unlikely to take]
> >   RP 2021/3/1
> >
> > +---
> > + Source/Modules/main.cxx | 1 -
> > + 1 file changed, 1 deletion(-)
> >
> > +diff --git a/Source/Modules/main.cxx b/Source/Modules/main.cxx
> > +index 8250dee..415761d 100644
> >   --- a/Source/Modules/main.cxx
> >   +++ b/Source/Modules/main.cxx
> > -@@ -642,7 +642,6 @@ static void getoptions(int argc, char *a
> > +@@ -629,7 +629,6 @@ static void getoptions(int argc, char *argv[]) {
> >       }
> >          } else if (strcmp(argv[i], "-version") == 0) {
> >       fprintf(stdout, "\nSWIG Version %s\n", Swig_package_version());
> > diff --git a/meta/recipes-devtools/swig/swig_4.1.1.bb b/meta/recipes-devtools/swig/swig_4.2.0.bb
> > similarity index 72%
> > rename from meta/recipes-devtools/swig/swig_4.1.1.bb
> > rename to meta/recipes-devtools/swig/swig_4.2.0.bb
> > index b9e01752993..2ab4ed006c6 100644
> > --- a/meta/recipes-devtools/swig/swig_4.1.1.bb
> > +++ b/meta/recipes-devtools/swig/swig_4.2.0.bb
> > @@ -4,4 +4,4 @@ SRC_URI += "file://0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.pat
> >               file://0001-configure-use-pkg-config-for-pcre-detection.patch \
> >               file://determinism.patch \
> >              "
> > -SRC_URI[sha256sum] = "2af08aced8fcd65cdb5cc62426768914bedc735b1c250325203716f78e39ac9b"
> > +SRC_URI[sha256sum] = "261ca2d7589e260762817b912c075831572b72ff2717942f75b3e51244829c97"
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#195754): https://lists.openembedded.org/g/openembedded-core/message/195754
> > Mute This Topic: https://lists.openembedded.org/mt/104390933/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] 15+ messages in thread

* Re: [OE-core] [PATCH 7/9] swig: upgrade 4.1.1 -> 4.2.0
  2024-02-18  3:01     ` Khem Raj
@ 2024-02-19  2:50       ` Mittal, Anuj
  2024-02-19  4:19         ` Khem Raj
  0 siblings, 1 reply; 15+ messages in thread
From: Mittal, Anuj @ 2024-02-19  2:50 UTC (permalink / raw)
  To: openembedded-core@lists.openembedded.org, raj.khem@gmail.com

On Sat, 2024-02-17 at 19:01 -0800, Khem Raj wrote:
> here is one failure due to this upgrade -
> https://errors.yoctoproject.org/Errors/Details/753587/

Thanks for checking. This project and its dependencies that are giving
error aren't maintained any more.

https://github.com/bambocher/pocketsphinx-python/commit/73b7e6da54f57b82d50ab278ad61f2cfa9b4dc4b

https://github.com/cmusphinx/sphinxbase/tree/a74a11df3a021e9a26b0d20c3de999b8eb0afcef
 
The recipe should be deleted or replaced by bindings from:

https://github.com/cmusphinx/pocketsphinx

Thanks,

Anuj

> 
> On Fri, Feb 16, 2024 at 6:59 PM Khem Raj <raj.khem@gmail.com> wrote:
> > 
> > this can be tricky for many apps depend on it subtly might fail.
> > Perhaps
> > doing an extended world build with this might be good.
> > 
> > On 2/16/24 3:40 AM, Anuj Mittal wrote:
> > > Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
> > > ---
> > >   ...self-exe-for-swig-swiglib-on-non-Win32-plat.patch | 10
> > > ++++++----
> > >   ...configure-use-pkg-config-for-pcre-detection.patch |  6 +++--
> > > -
> > >   meta/recipes-devtools/swig/swig/determinism.patch    | 12
> > > +++++++++++-
> > >   .../swig/{swig_4.1.1.bb => swig_4.2.0.bb}            |  2 +-
> > >   4 files changed, 21 insertions(+), 9 deletions(-)
> > >   rename meta/recipes-devtools/swig/{swig_4.1.1.bb =>
> > > swig_4.2.0.bb} (72%)
> > > 
> > > diff --git a/meta/recipes-devtools/swig/swig/0001-Use-proc-self-
> > > exe-for-swig-swiglib-on-non-Win32-plat.patch b/meta/recipes-
> > > devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-
> > > non-Win32-plat.patch
> > > index f27f80ea184..9c6ae389be2 100644
> > > --- a/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-
> > > swig-swiglib-on-non-Win32-plat.patch
> > > +++ b/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-
> > > swig-swiglib-on-non-Win32-plat.patch
> > > @@ -1,4 +1,4 @@
> > > -From a4a0440a644c6c5e5da096efe3cf05ba309a284f Mon Sep 17
> > > 00:00:00 2001
> > > +From ab0ab5e685bd9077c44fdca5c1a27b0f477444d7 Mon Sep 17
> > > 00:00:00 2001
> > >   From: "NODA, Kai" <nodakai@gmail.com>
> > >   Date: Sun, 22 Apr 2012 17:01:02 +0900
> > >   Subject: [PATCH] Use /proc/self/exe for "swig -swiglib" on non-
> > > Win32
> > > @@ -10,9 +10,11 @@ Upstream-Status: Submitted
> > >   http://sourceforge.net/mailarchive/message.php?msg_id=29179733
> > > 
> > >   ---
> > > - Source/Modules/main.cxx |   24 ++++++++++++++++++++++--
> > > + Source/Modules/main.cxx | 24 ++++++++++++++++++++++--
> > >    1 file changed, 22 insertions(+), 2 deletions(-)
> > > 
> > > +diff --git a/Source/Modules/main.cxx b/Source/Modules/main.cxx
> > > +index 8a44921..8250dee 100644
> > >   --- a/Source/Modules/main.cxx
> > >   +++ b/Source/Modules/main.cxx
> > >   @@ -25,6 +25,11 @@
> > > @@ -27,7 +29,7 @@
> > > http://sourceforge.net/mailarchive/message.php?msg_id=29179733
> > > 
> > >    // Global variables
> > > 
> > > -@@ -934,9 +939,9 @@ int SWIG_main(int argc, char *argv[], co
> > > +@@ -886,9 +891,9 @@ int SWIG_main(int argc, char *argv[], const
> > > TargetLanguageModule *tlm) {
> > > 
> > >      // Check for SWIG_LIB environment variable
> > >      if ((c = getenv("SWIG_LIB")) == (char *) 0) {
> > > @@ -38,7 +40,7 @@
> > > http://sourceforge.net/mailarchive/message.php?msg_id=29179733
> > >        if (!(GetModuleFileName(0, buf, MAX_PATH) == 0 || (p =
> > > strrchr(buf, '\\')) == 0)) {
> > >          *(p + 1) = '\0';
> > >          SwigLib = NewStringf("%sLib", buf); // Native windows
> > > installation path
> > > -@@ -946,7 +951,22 @@ int SWIG_main(int argc, char *argv[], co
> > > +@@ -898,7 +903,22 @@ int SWIG_main(int argc, char *argv[], const
> > > TargetLanguageModule *tlm) {
> > >        if (Len(SWIG_LIB_WIN_UNIX) > 0)
> > >          SwigLibWinUnix = NewString(SWIG_LIB_WIN_UNIX); // Unix
> > > installation path using a drive letter (for msys/mingw)
> > >    #else
> > > diff --git a/meta/recipes-devtools/swig/swig/0001-configure-use-
> > > pkg-config-for-pcre-detection.patch b/meta/recipes-
> > > devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-
> > > detection.patch
> > > index cfcbd8c73ae..9e16caecca1 100644
> > > --- a/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-
> > > config-for-pcre-detection.patch
> > > +++ b/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-
> > > config-for-pcre-detection.patch
> > > @@ -1,4 +1,4 @@
> > > -From ffb785ed8d3cac3c28e014b1238d93e2bc1f0c01 Mon Sep 17
> > > 00:00:00 2001
> > > +From 57a15651b46a0f1f84a4dd15d67d104fbfbe3f6e Mon Sep 17
> > > 00:00:00 2001
> > >   From: Koen Kooi <koen.kooi@linaro.org>
> > >   Date: Tue, 17 Jun 2014 08:18:17 +0200
> > >   Subject: [PATCH] configure: use pkg-config for pcre detection
> > > @@ -11,10 +11,10 @@ Upstream-Status: Pending
> > >    1 file changed, 7 insertions(+), 32 deletions(-)
> > > 
> > >   diff --git a/configure.ac b/configure.ac
> > > -index f88004a..3a2b47c 100644
> > > +index c060028..a330266 100644
> > >   --- a/configure.ac
> > >   +++ b/configure.ac
> > > -@@ -57,39 +57,14 @@ AC_MSG_RESULT([$with_pcre])
> > > +@@ -49,39 +49,14 @@ AC_MSG_RESULT([$with_pcre])
> > > 
> > >    dnl To make configuring easier, check for a locally built PCRE
> > > using the Tools/pcre-build.sh script
> > >    if test x"${with_pcre}" = xyes ; then
> > > diff --git a/meta/recipes-devtools/swig/swig/determinism.patch
> > > b/meta/recipes-devtools/swig/swig/determinism.patch
> > > index 84c399182a4..417f0c43178 100644
> > > --- a/meta/recipes-devtools/swig/swig/determinism.patch
> > > +++ b/meta/recipes-devtools/swig/swig/determinism.patch
> > > @@ -1,13 +1,23 @@
> > > +From 25bf9893ec1f557781eb241508ea1bec959061fe Mon Sep 17
> > > 00:00:00 2001
> > > +From: Richard Purdie <richard.purdie@linuxfoundation.org>
> > > +Date: Mon, 1 Mar 2021 00:11:10 +0000
> > > +Subject: [PATCH] swig: Fix reproducibility issue
> > > +
> > >   Remove the compiler commandline/platform from the compiled
> > > binary as this
> > >   breaks reproducibilty.
> > > 
> > >   Upstream-Status: Inappropriate [OE reproducibiity fix upstream
> > > unlikely to take]
> > >   RP 2021/3/1
> > > 
> > > +---
> > > + Source/Modules/main.cxx | 1 -
> > > + 1 file changed, 1 deletion(-)
> > > 
> > > +diff --git a/Source/Modules/main.cxx b/Source/Modules/main.cxx
> > > +index 8250dee..415761d 100644
> > >   --- a/Source/Modules/main.cxx
> > >   +++ b/Source/Modules/main.cxx
> > > -@@ -642,7 +642,6 @@ static void getoptions(int argc, char *a
> > > +@@ -629,7 +629,6 @@ static void getoptions(int argc, char
> > > *argv[]) {
> > >       }
> > >          } else if (strcmp(argv[i], "-version") == 0) {
> > >       fprintf(stdout, "\nSWIG Version %s\n",
> > > Swig_package_version());
> > > diff --git a/meta/recipes-devtools/swig/swig_4.1.1.bb
> > > b/meta/recipes-devtools/swig/swig_4.2.0.bb
> > > similarity index 72%
> > > rename from meta/recipes-devtools/swig/swig_4.1.1.bb
> > > rename to meta/recipes-devtools/swig/swig_4.2.0.bb
> > > index b9e01752993..2ab4ed006c6 100644
> > > --- a/meta/recipes-devtools/swig/swig_4.1.1.bb
> > > +++ b/meta/recipes-devtools/swig/swig_4.2.0.bb
> > > @@ -4,4 +4,4 @@ SRC_URI +=
> > > "file://0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat
> > > .pat
> > >              
> > > file://0001-configure-use-pkg-config-for-pcre-detection.patch \
> > >               file://determinism.patch \
> > >              "
> > > -SRC_URI[sha256sum] =
> > > "2af08aced8fcd65cdb5cc62426768914bedc735b1c250325203716f78e39ac9b
> > > "
> > > +SRC_URI[sha256sum] =
> > > "261ca2d7589e260762817b912c075831572b72ff2717942f75b3e51244829c97
> > > "
> > > 
> > > -=-=-=-=-=-=-=-=-=-=-=-
> > > Links: You receive all messages sent to this group.
> > > View/Reply Online (#195754):
> > > https://lists.openembedded.org/g/openembedded-core/message/195754
> > > Mute This Topic:
> > > https://lists.openembedded.org/mt/104390933/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] 15+ messages in thread

* Re: [OE-core] [PATCH 7/9] swig: upgrade 4.1.1 -> 4.2.0
  2024-02-19  2:50       ` Mittal, Anuj
@ 2024-02-19  4:19         ` Khem Raj
  0 siblings, 0 replies; 15+ messages in thread
From: Khem Raj @ 2024-02-19  4:19 UTC (permalink / raw)
  To: Mittal, Anuj; +Cc: openembedded-core@lists.openembedded.org

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

On Sun, Feb 18, 2024 at 6:51 PM Mittal, Anuj <anuj.mittal@intel.com> wrote:

> On Sat, 2024-02-17 at 19:01 -0800, Khem Raj wrote:
> > here is one failure due to this upgrade -
> > https://errors.yoctoproject.org/Errors/Details/753587/
>
> Thanks for checking. This project and its dependencies that are giving
> error aren't maintained any more.
>
>
> https://github.com/bambocher/pocketsphinx-python/commit/73b7e6da54f57b82d50ab278ad61f2cfa9b4dc4b
>
>
> https://github.com/cmusphinx/sphinxbase/tree/a74a11df3a021e9a26b0d20c3de999b8eb0afcef
>
> The recipe should be deleted or replaced by bindings from:
>
> https://github.com/cmusphinx/pocketsphinx


I am fine with either. If deletion is easy so be it
Please send a patch

<https://github.com/cmusphinx/pocketsphinx>
>
> Thanks,
>
> Anuj
>
> >
> > On Fri, Feb 16, 2024 at 6:59 PM Khem Raj <raj.khem@gmail.com> wrote:
> > >
> > > this can be tricky for many apps depend on it subtly might fail.
> > > Perhaps
> > > doing an extended world build with this might be good.
> > >
> > > On 2/16/24 3:40 AM, Anuj Mittal wrote:
> > > > Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
> > > > ---
> > > >   ...self-exe-for-swig-swiglib-on-non-Win32-plat.patch | 10
> > > > ++++++----
> > > >   ...configure-use-pkg-config-for-pcre-detection.patch |  6 +++--
> > > > -
> > > >   meta/recipes-devtools/swig/swig/determinism.patch    | 12
> > > > +++++++++++-
> > > >   .../swig/{swig_4.1.1.bb => swig_4.2.0.bb}            |  2 +-
> > > >   4 files changed, 21 insertions(+), 9 deletions(-)
> > > >   rename meta/recipes-devtools/swig/{swig_4.1.1.bb =>
> > > > swig_4.2.0.bb} (72%)
> > > >
> > > > diff --git a/meta/recipes-devtools/swig/swig/0001-Use-proc-self-
> > > > exe-for-swig-swiglib-on-non-Win32-plat.patch b/meta/recipes-
> > > > devtools/swig/swig/0001-Use-proc-self-exe-for-swig-swiglib-on-
> > > > non-Win32-plat.patch
> > > > index f27f80ea184..9c6ae389be2 100644
> > > > --- a/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-
> > > > swig-swiglib-on-non-Win32-plat.patch
> > > > +++ b/meta/recipes-devtools/swig/swig/0001-Use-proc-self-exe-for-
> > > > swig-swiglib-on-non-Win32-plat.patch
> > > > @@ -1,4 +1,4 @@
> > > > -From a4a0440a644c6c5e5da096efe3cf05ba309a284f Mon Sep 17
> > > > 00:00:00 2001
> > > > +From ab0ab5e685bd9077c44fdca5c1a27b0f477444d7 Mon Sep 17
> > > > 00:00:00 2001
> > > >   From: "NODA, Kai" <nodakai@gmail.com>
> > > >   Date: Sun, 22 Apr 2012 17:01:02 +0900
> > > >   Subject: [PATCH] Use /proc/self/exe for "swig -swiglib" on non-
> > > > Win32
> > > > @@ -10,9 +10,11 @@ Upstream-Status: Submitted
> > > >   http://sourceforge.net/mailarchive/message.php?msg_id=29179733
> > > >
> > > >   ---
> > > > - Source/Modules/main.cxx |   24 ++++++++++++++++++++++--
> > > > + Source/Modules/main.cxx | 24 ++++++++++++++++++++++--
> > > >    1 file changed, 22 insertions(+), 2 deletions(-)
> > > >
> > > > +diff --git a/Source/Modules/main.cxx b/Source/Modules/main.cxx
> > > > +index 8a44921..8250dee 100644
> > > >   --- a/Source/Modules/main.cxx
> > > >   +++ b/Source/Modules/main.cxx
> > > >   @@ -25,6 +25,11 @@
> > > > @@ -27,7 +29,7 @@
> > > > http://sourceforge.net/mailarchive/message.php?msg_id=29179733
> > > >
> > > >    // Global variables
> > > >
> > > > -@@ -934,9 +939,9 @@ int SWIG_main(int argc, char *argv[], co
> > > > +@@ -886,9 +891,9 @@ int SWIG_main(int argc, char *argv[], const
> > > > TargetLanguageModule *tlm) {
> > > >
> > > >      // Check for SWIG_LIB environment variable
> > > >      if ((c = getenv("SWIG_LIB")) == (char *) 0) {
> > > > @@ -38,7 +40,7 @@
> > > > http://sourceforge.net/mailarchive/message.php?msg_id=29179733
> > > >        if (!(GetModuleFileName(0, buf, MAX_PATH) == 0 || (p =
> > > > strrchr(buf, '\\')) == 0)) {
> > > >          *(p + 1) = '\0';
> > > >          SwigLib = NewStringf("%sLib", buf); // Native windows
> > > > installation path
> > > > -@@ -946,7 +951,22 @@ int SWIG_main(int argc, char *argv[], co
> > > > +@@ -898,7 +903,22 @@ int SWIG_main(int argc, char *argv[], const
> > > > TargetLanguageModule *tlm) {
> > > >        if (Len(SWIG_LIB_WIN_UNIX) > 0)
> > > >          SwigLibWinUnix = NewString(SWIG_LIB_WIN_UNIX); // Unix
> > > > installation path using a drive letter (for msys/mingw)
> > > >    #else
> > > > diff --git a/meta/recipes-devtools/swig/swig/0001-configure-use-
> > > > pkg-config-for-pcre-detection.patch b/meta/recipes-
> > > > devtools/swig/swig/0001-configure-use-pkg-config-for-pcre-
> > > > detection.patch
> > > > index cfcbd8c73ae..9e16caecca1 100644
> > > > --- a/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-
> > > > config-for-pcre-detection.patch
> > > > +++ b/meta/recipes-devtools/swig/swig/0001-configure-use-pkg-
> > > > config-for-pcre-detection.patch
> > > > @@ -1,4 +1,4 @@
> > > > -From ffb785ed8d3cac3c28e014b1238d93e2bc1f0c01 Mon Sep 17
> > > > 00:00:00 2001
> > > > +From 57a15651b46a0f1f84a4dd15d67d104fbfbe3f6e Mon Sep 17
> > > > 00:00:00 2001
> > > >   From: Koen Kooi <koen.kooi@linaro.org>
> > > >   Date: Tue, 17 Jun 2014 08:18:17 +0200
> > > >   Subject: [PATCH] configure: use pkg-config for pcre detection
> > > > @@ -11,10 +11,10 @@ Upstream-Status: Pending
> > > >    1 file changed, 7 insertions(+), 32 deletions(-)
> > > >
> > > >   diff --git a/configure.ac b/configure.ac
> > > > -index f88004a..3a2b47c 100644
> > > > +index c060028..a330266 100644
> > > >   --- a/configure.ac
> > > >   +++ b/configure.ac
> > > > -@@ -57,39 +57,14 @@ AC_MSG_RESULT([$with_pcre])
> > > > +@@ -49,39 +49,14 @@ AC_MSG_RESULT([$with_pcre])
> > > >
> > > >    dnl To make configuring easier, check for a locally built PCRE
> > > > using the Tools/pcre-build.sh script
> > > >    if test x"${with_pcre}" = xyes ; then
> > > > diff --git a/meta/recipes-devtools/swig/swig/determinism.patch
> > > > b/meta/recipes-devtools/swig/swig/determinism.patch
> > > > index 84c399182a4..417f0c43178 100644
> > > > --- a/meta/recipes-devtools/swig/swig/determinism.patch
> > > > +++ b/meta/recipes-devtools/swig/swig/determinism.patch
> > > > @@ -1,13 +1,23 @@
> > > > +From 25bf9893ec1f557781eb241508ea1bec959061fe Mon Sep 17
> > > > 00:00:00 2001
> > > > +From: Richard Purdie <richard.purdie@linuxfoundation.org>
> > > > +Date: Mon, 1 Mar 2021 00:11:10 +0000
> > > > +Subject: [PATCH] swig: Fix reproducibility issue
> > > > +
> > > >   Remove the compiler commandline/platform from the compiled
> > > > binary as this
> > > >   breaks reproducibilty.
> > > >
> > > >   Upstream-Status: Inappropriate [OE reproducibiity fix upstream
> > > > unlikely to take]
> > > >   RP 2021/3/1
> > > >
> > > > +---
> > > > + Source/Modules/main.cxx | 1 -
> > > > + 1 file changed, 1 deletion(-)
> > > >
> > > > +diff --git a/Source/Modules/main.cxx b/Source/Modules/main.cxx
> > > > +index 8250dee..415761d 100644
> > > >   --- a/Source/Modules/main.cxx
> > > >   +++ b/Source/Modules/main.cxx
> > > > -@@ -642,7 +642,6 @@ static void getoptions(int argc, char *a
> > > > +@@ -629,7 +629,6 @@ static void getoptions(int argc, char
> > > > *argv[]) {
> > > >       }
> > > >          } else if (strcmp(argv[i], "-version") == 0) {
> > > >       fprintf(stdout, "\nSWIG Version %s\n",
> > > > Swig_package_version());
> > > > diff --git a/meta/recipes-devtools/swig/swig_4.1.1.bb
> > > > b/meta/recipes-devtools/swig/swig_4.2.0.bb
> > > > similarity index 72%
> > > > rename from meta/recipes-devtools/swig/swig_4.1.1.bb
> > > > rename to meta/recipes-devtools/swig/swig_4.2.0.bb
> > > > index b9e01752993..2ab4ed006c6 100644
> > > > --- a/meta/recipes-devtools/swig/swig_4.1.1.bb
> > > > +++ b/meta/recipes-devtools/swig/swig_4.2.0.bb
> > > > @@ -4,4 +4,4 @@ SRC_URI +=
> > > > "file://0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat
> > > > .pat
> > > >
> > > > file://0001-configure-use-pkg-config-for-pcre-detection.patch \
> > > >               file://determinism.patch \
> > > >              "
> > > > -SRC_URI[sha256sum] =
> > > > "2af08aced8fcd65cdb5cc62426768914bedc735b1c250325203716f78e39ac9b
> > > > "
> > > > +SRC_URI[sha256sum] =
> > > > "261ca2d7589e260762817b912c075831572b72ff2717942f75b3e51244829c97
> > > > "
> > > >
> > > > -=-=-=-=-=-=-=-=-=-=-=-
> > > > Links: You receive all messages sent to this group.
> > > > View/Reply Online (#195754):
> > > > https://lists.openembedded.org/g/openembedded-core/message/195754
> > > > Mute This Topic:
> > > > https://lists.openembedded.org/mt/104390933/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: 14327 bytes --]

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

* Re: [OE-core] [PATCH 2/9] minicom: upgrade 2.8 -> 2.9
  2024-02-17 12:38   ` [OE-core] " Richard Purdie
@ 2024-02-19  8:11     ` Mittal, Anuj
  0 siblings, 0 replies; 15+ messages in thread
From: Mittal, Anuj @ 2024-02-19  8:11 UTC (permalink / raw)
  To: richard.purdie@linuxfoundation.org,
	openembedded-core@lists.openembedded.org

On Sat, 2024-02-17 at 12:38 +0000, Richard Purdie wrote:
> On Fri, 2024-02-16 at 19:40 +0800, Anuj Mittal wrote:
> > Drop patches that have been merged upstream and available in this
> > version.
> > 
> > Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
> > ---
> >  ...ix-minicom-h-v-return-value-is-not-0.patch | 33 ---------------
> > ----
> >  .../minicom/allow.to.disable.lockdev.patch    | 30 ---------------
> > --
> >  .../{minicom_2.8.bb => minicom_2.9.bb}        |  7 ++--
> >  3 files changed, 2 insertions(+), 68 deletions(-)
> >  delete mode 100644 meta/recipes-extended/minicom/minicom/0001-fix-
> > minicom-h-v-return-value-is-not-0.patch
> >  delete mode 100644 meta/recipes-
> > extended/minicom/minicom/allow.to.disable.lockdev.patch
> >  rename meta/recipes-extended/minicom/{minicom_2.8.bb =>
> > minicom_2.9.bb} (80%)
> 
> I think devtool testing is using something here in oe-selftest:
> 
> https://autobuilder.yoctoproject.org/typhoon/#/builders/79/builds/6422/steps/14/logs/stdio
> 
> but haven't 100% confirmed that yet as there are multiple patches in
> master-next.

The upgrade removed "minicom" directory that had the patches so
untracked files output from git status in the test changed. I will send
a patch.

Thanks,

Anuj

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

end of thread, other threads:[~2024-02-19  8:11 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-16 11:40 [PATCH 1/9] enchant2: upgrade 2.6.5 -> 2.6.7 Anuj Mittal
2024-02-16 11:40 ` [PATCH 2/9] minicom: upgrade 2.8 -> 2.9 Anuj Mittal
2024-02-17 12:38   ` [OE-core] " Richard Purdie
2024-02-19  8:11     ` Mittal, Anuj
2024-02-16 11:40 ` [PATCH 3/9] libproxy: upgrade 0.5.3 -> 0.5.4 Anuj Mittal
2024-02-16 11:40 ` [PATCH 4/9] sqlite3: upgrade 3.44.2 -> 3.45.1 Anuj Mittal
2024-02-16 11:40 ` [PATCH 5/9] orc: upgrade 0.4.36 -> 0.4.37 Anuj Mittal
2024-02-16 11:40 ` [PATCH 6/9] stress-ng: upgrade 0.17.04 -> 0.17.05 Anuj Mittal
2024-02-16 11:40 ` [PATCH 7/9] swig: upgrade 4.1.1 -> 4.2.0 Anuj Mittal
2024-02-17  2:59   ` [OE-core] " Khem Raj
2024-02-18  3:01     ` Khem Raj
2024-02-19  2:50       ` Mittal, Anuj
2024-02-19  4:19         ` Khem Raj
2024-02-16 11:40 ` [PATCH 8/9] gstreamer1.0: upgrade 1.22.9 -> 1.22.10 Anuj Mittal
2024-02-16 11:40 ` [PATCH 9/9] libcap-ng: fix build with swig 4.2.0 Anuj Mittal

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