* [PATCH 1/3] vte: 0.82.2 -> 0.83.90
@ 2026-02-10 9:50 Hongxu Jia
2026-02-10 9:50 ` [PATCH 2/3] dpkg: 1.22.21 -> 1.23.5 Hongxu Jia
` (2 more replies)
0 siblings, 3 replies; 10+ messages in thread
From: Hongxu Jia @ 2026-02-10 9:50 UTC (permalink / raw)
To: openembedded-core
- Drop patch 0001-support-reproducibility-for-debug-sources.patch
which has been merged by upstream
- Fix build failed on arm64
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
...rt-reproducibility-for-debug-sources.patch | 48 -------------------
.../vte/0002-fix-build-failed-on-arm64.patch | 33 +++++++++++++
.../vte/{vte_0.82.2.bb => vte_0.83.90.bb} | 4 +-
3 files changed, 35 insertions(+), 50 deletions(-)
delete mode 100644 meta/recipes-support/vte/vte/0001-support-reproducibility-for-debug-sources.patch
create mode 100644 meta/recipes-support/vte/vte/0002-fix-build-failed-on-arm64.patch
rename meta/recipes-support/vte/{vte_0.82.2.bb => vte_0.83.90.bb} (93%)
diff --git a/meta/recipes-support/vte/vte/0001-support-reproducibility-for-debug-sources.patch b/meta/recipes-support/vte/vte/0001-support-reproducibility-for-debug-sources.patch
deleted file mode 100644
index 20e8f71c0e..0000000000
--- a/meta/recipes-support/vte/vte/0001-support-reproducibility-for-debug-sources.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 0959004adbe46f88d558d2ce61b496c662c196f5 Mon Sep 17 00:00:00 2001
-From: Hongxu Jia <hongxu.jia@windriver.com>
-Date: Mon, 3 Nov 2025 06:13:11 +0000
-Subject: [PATCH] support reproducibility for debug sources
-
-While option --debug-sources is used, the generated source file contains
-build path comments which caused the build is not reproducible [1]
-...subprojects/simdutf/simdutf.h...
- 1 /* auto-generated on 2025-03-17 16:13:41 -0400. Do not edit! */
- 2 /* begin file include/simdutf.h */
- 3 // /build-dir/vte-0.82.1/subprojects/simdutf/include/simdutf.h:1
- 4 #ifndef SIMDUTF_H
-...subprojects/simdutf/simdutf.h...
-
-After apply this commit, use relative path to instead
-...subprojects/simdutf/simdutf.h...
- 1 /* auto-generated on 2025-03-17 16:13:41 -0400. Do not edit! */
- 2 /* begin file include/simdutf.h */
- 3 // include/simdutf.h:1
- 4 #ifndef SIMDUTF_H
-...subprojects/simdutf/simdutf.h...
-
-[1] https://reproducible-builds.org/
-
-Upstream-Status: Submitted [https://github.com/simdutf/simdutf/pull/848]
-
-Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
----
- singleheader/amalgamate.py | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/singleheader/amalgamate.py b/singleheader/amalgamate.py
-index 190b2f6..75e0d78 100755
---- a/singleheader/amalgamate.py
-+++ b/singleheader/amalgamate.py
-@@ -385,7 +385,8 @@ def filter_features(file):
- current_features = None
- elif enabled:
- if context.args.debug_sources and not prev_line.endswith('\\'):
-- yield f"// {file}:{lineno}"
-+ RELFILE = os.path.relpath(file, PROJECTPATH)
-+ yield f"// {RELFILE}:{lineno}"
-
- if line or (not line and prev_line):
- yield line
---
-2.48.1
-
diff --git a/meta/recipes-support/vte/vte/0002-fix-build-failed-on-arm64.patch b/meta/recipes-support/vte/vte/0002-fix-build-failed-on-arm64.patch
new file mode 100644
index 0000000000..80b3e4854a
--- /dev/null
+++ b/meta/recipes-support/vte/vte/0002-fix-build-failed-on-arm64.patch
@@ -0,0 +1,33 @@
+From 0b606d7f1d9d60ab04ad0a07443bf792b5b932bc Mon Sep 17 00:00:00 2001
+From: Hongxu Jia <hongxu.jia@windriver.com>
+Date: Tue, 10 Feb 2026 13:09:10 +0800
+Subject: [PATCH 2/2] fix build failed on arm64
+
+subprojects/simdutf/simdutf.cpp:1819:2: error: expected ';' after class definition
+ 1819 | } // namespace arm64
+ | ^
+ | ;
+
+Upstream-Status: Backport [https://github.com/simdutf/simdutf/commit/2542805947b0592c3bf65b7ca778b0406fe0b6ee]
+Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+---
+ src/simdutf/arm64/implementation.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/simdutf/arm64/implementation.h b/src/simdutf/arm64/implementation.h
+index ae91895b..61c29634 100644
+--- a/src/simdutf/arm64/implementation.h
++++ b/src/simdutf/arm64/implementation.h
+@@ -284,8 +284,8 @@ public:
+ char character) const noexcept;
+ const char16_t *find(const char16_t *start, const char16_t *end,
+ char16_t character) const noexcept;
+-};
+ #endif // SIMDUTF_FEATURE_BASE64
++};
+
+ } // namespace arm64
+ } // namespace simdutf
+--
+2.34.1
+
diff --git a/meta/recipes-support/vte/vte_0.82.2.bb b/meta/recipes-support/vte/vte_0.83.90.bb
similarity index 93%
rename from meta/recipes-support/vte/vte_0.82.2.bb
rename to meta/recipes-support/vte/vte_0.83.90.bb
index d5dced4ce6..a28d8e040c 100644
--- a/meta/recipes-support/vte/vte_0.82.2.bb
+++ b/meta/recipes-support/vte/vte_0.83.90.bb
@@ -18,10 +18,10 @@ GIDOCGEN_MESON_OPTION = "docs"
inherit gnomebase gi-docgen features_check upstream-version-is-even gobject-introspection systemd vala
SRC_URI += "file://0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch \
- file://0001-support-reproducibility-for-debug-sources.patch;patchdir=./subprojects/simdutf \
+ file://0002-fix-build-failed-on-arm64.patch;patchdir=subprojects/simdutf \
"
-SRC_URI[archive.sha256sum] = "e1295aafc4682b3b550f1235dc2679baa0f71570d8ed543c001c1283d530be91"
+SRC_URI[archive.sha256sum] = "a43441a78f8893268ae927e7bae3b17ffe669913ed954e172fbd12d3e083e286"
ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread* [PATCH 2/3] dpkg: 1.22.21 -> 1.23.5 2026-02-10 9:50 [PATCH 1/3] vte: 0.82.2 -> 0.83.90 Hongxu Jia @ 2026-02-10 9:50 ` Hongxu Jia 2026-02-10 9:50 ` [PATCH 3/3] gnupg: 2.5.14 -> 2.5.17 Hongxu Jia 2026-02-10 9:54 ` [OE-core] [PATCH 1/3] vte: 0.82.2 -> 0.83.90 Alexander Kanavin 2 siblings, 0 replies; 10+ messages in thread From: Hongxu Jia @ 2026-02-10 9:50 UTC (permalink / raw) To: openembedded-core Refresh patches: - 0001-build.c-ignore-return-of-1-from-tar-cf.patch - 0001-script.c-avoid-use-of-chroot.patch - 0002-Adapt-to-linux-wrs-kernel-version-which-has-characte.patch - 0004-The-lutimes-function-doesn-t-work-properly-for-all-s.patch - 0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch - arch_pm.patch - remove-tar-no-timestamp.patch Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> --- ...ild.c-ignore-return-of-1-from-tar-cf.patch | 42 +++++++++------- .../0001-script.c-avoid-use-of-chroot.patch | 35 +++++++++----- ...rs-kernel-version-which-has-characte.patch | 48 +++++++++++-------- ...tion-doesn-t-work-properly-for-all-s.patch | 27 +++++++---- ...c-Remove-usage-of-clamp-mtime-in-tar.patch | 37 ++++++++------ meta/recipes-devtools/dpkg/dpkg/arch_pm.patch | 28 ++++++----- .../dpkg/dpkg/remove-tar-no-timestamp.patch | 24 ++++++---- .../dpkg/{dpkg_1.22.21.bb => dpkg_1.23.5.bb} | 4 +- 8 files changed, 148 insertions(+), 97 deletions(-) rename meta/recipes-devtools/dpkg/{dpkg_1.22.21.bb => dpkg_1.23.5.bb} (92%) diff --git a/meta/recipes-devtools/dpkg/dpkg/0001-build.c-ignore-return-of-1-from-tar-cf.patch b/meta/recipes-devtools/dpkg/dpkg/0001-build.c-ignore-return-of-1-from-tar-cf.patch index 185bbb90f1..1660597422 100644 --- a/meta/recipes-devtools/dpkg/dpkg/0001-build.c-ignore-return-of-1-from-tar-cf.patch +++ b/meta/recipes-devtools/dpkg/dpkg/0001-build.c-ignore-return-of-1-from-tar-cf.patch @@ -1,6 +1,6 @@ -From 067992f2d0b0ff6ca114031636eb0e1eac791892 Mon Sep 17 00:00:00 2001 -From: Paul Eggleton <paul.eggleton@linux.microsoft.com> -Date: Tue, 16 Jun 2020 03:57:25 +0000 +From 5014728695639f33895feff9cabad199b0612c45 Mon Sep 17 00:00:00 2001 +From: Paul Eggleton <paul.eggleton@microsoft.com> +Date: Sun, 8 Feb 2026 21:34:54 -0800 Subject: [PATCH] build.c: ignore return of 1 from tar -cf When running do_package_write_deb, we have trees of hardlinked files @@ -23,30 +23,36 @@ Upstream-Status: Inappropriate [OE specific] Original patch by RP 2015/3/27, rebased by Paul Eggleton Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com> + +Rebase to 1.23.5 +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> --- src/deb/build.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/deb/build.c b/src/deb/build.c -index 87bd4142e..e85fd7d0f 100644 +index f7a0156f1..67e758185 100644 --- a/src/deb/build.c +++ b/src/deb/build.c -@@ -481,6 +481,7 @@ tarball_pack(const char *dir, filenames_feed_func *tar_filenames_feeder, +@@ -526,6 +526,7 @@ tarball_pack(const char *dir, filenames_feed_func *tar_filenames_feeder, { - int pipe_filenames[2], pipe_tarball[2]; - pid_t pid_tar, pid_comp; -+ int rc; + int pipe_filenames[2], pipe_tarball[2]; + pid_t pid_tar, pid_comp; ++ int rc; - /* Fork off a tar. We will feed it a list of filenames on stdin later. */ - m_pipe(pipe_filenames); -@@ -533,7 +534,9 @@ tarball_pack(const char *dir, filenames_feed_func *tar_filenames_feeder, - /* All done, clean up wait for tar and <compress> to finish their job. */ - close(pipe_filenames[1]); - subproc_reap(pid_comp, _("<compress> from tar -cf"), 0); -- subproc_reap(pid_tar, "tar -cf", 0); -+ rc = subproc_reap(pid_tar, "tar -cf", SUBPROC_RETERROR); -+ if (rc && rc != 1) -+ ohshite(_("subprocess %s returned error exit status %d"), "tar -cf", rc); + /* Fork off a tar. We will feed it a list of filenames on stdin + * later. */ +@@ -591,7 +592,9 @@ tarball_pack(const char *dir, filenames_feed_func *tar_filenames_feeder, + * job. */ + close(pipe_filenames[1]); + subproc_reap(pid_comp, _("<compress> from tar -cf"), 0); +- subproc_reap(pid_tar, "tar -cf", 0); ++ rc = subproc_reap(pid_tar, "tar -cf", SUBPROC_RETERROR); ++ if (rc && rc != 1) ++ ohshite(_("subprocess %s returned error exit status %d"), "tar -cf", rc); } static intmax_t +-- +2.49.0 + diff --git a/meta/recipes-devtools/dpkg/dpkg/0001-script.c-avoid-use-of-chroot.patch b/meta/recipes-devtools/dpkg/dpkg/0001-script.c-avoid-use-of-chroot.patch index d0459cd017..ffa10142dd 100644 --- a/meta/recipes-devtools/dpkg/dpkg/0001-script.c-avoid-use-of-chroot.patch +++ b/meta/recipes-devtools/dpkg/dpkg/0001-script.c-avoid-use-of-chroot.patch @@ -1,6 +1,6 @@ -From 5e5f06d396fe631990474ba6df83428987855365 Mon Sep 17 00:00:00 2001 +From 756513b01ba2d4f0ecfc95955dbe598591ad2d9e Mon Sep 17 00:00:00 2001 From: Alexander Kanavin <alex.kanavin@gmail.com> -Date: Wed, 26 Aug 2015 16:25:45 +0300 +Date: Sun, 8 Feb 2026 21:17:43 -0800 Subject: [PATCH] script.c: avoid use of chroot Our pre/postinsts expect $D to be set when running in a sysroot and @@ -17,22 +17,25 @@ KKang 2019/02/20 Refresh to apply on top of v1.22.10. Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> + +Rebase to 1.23.5 +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> --- - src/main/script.c | 52 +++-------------------------------------------- - 1 file changed, 3 insertions(+), 49 deletions(-) + src/main/script.c | 56 +++-------------------------------------------- + 1 file changed, 3 insertions(+), 53 deletions(-) diff --git a/src/main/script.c b/src/main/script.c -index e9aee0bf9..181e7c710 100644 +index dd3f3a4bb..9782d0140 100644 --- a/src/main/script.c +++ b/src/main/script.c -@@ -97,57 +97,11 @@ static const char * +@@ -99,60 +99,10 @@ static const char * maintscript_pre_exec(struct command *cmd) { const char *instdir = dpkg_fsys_get_dir(); - const char *admindir = dpkg_db_get_dir(); - const char *changedir; - size_t instdirlen = strlen(instdir); - +- - if (instdirlen > 0 && in_force(FORCE_SCRIPT_CHROOTLESS)) - changedir = instdir; - else @@ -54,12 +57,14 @@ index e9aee0bf9..181e7c710 100644 - "directory with --force-not-root, consider " - "using --force-script-chrootless?")); - else if (rc) -- ohshite(_("failed to chroot to '%.250s'"), instdir); +- ohshite(_("failed to chroot to '%s'"), instdir); - } +- - /* Switch to a known good directory to give the maintainer script - * a saner environment, also needed after the chroot(). */ - if (chdir(changedir)) -- ohshite(_("failed to chdir to '%.255s'"), changedir); +- ohshite(_("failed to chdir to '%s'"), changedir); +- - if (debug_has_flag(dbg_scripts)) { - struct varbuf args = VARBUF_INIT; - const char **argv = cmd->argv; @@ -68,12 +73,13 @@ index e9aee0bf9..181e7c710 100644 - varbuf_add_char(&args, ' '); - varbuf_add_str(&args, *argv); - } -- debug(dbg_scripts, "fork/exec %s (%s )", cmd->filename, -- varbuf_str(&args)); +- debug(dbg_scripts, "fork/exec %s (%s )", +- cmd->filename, varbuf_str(&args)); - varbuf_destroy(&args); -+ if (*instdir) { -+ setenv("D", instdir, 1); ++ if (*instdir) { ++ setenv("D", instdir, 1); } +- - if (instdirlen == 0 || in_force(FORCE_SCRIPT_CHROOTLESS)) - return cmd->filename; - @@ -86,3 +92,6 @@ index e9aee0bf9..181e7c710 100644 } /** +-- +2.49.0 + diff --git a/meta/recipes-devtools/dpkg/dpkg/0002-Adapt-to-linux-wrs-kernel-version-which-has-characte.patch b/meta/recipes-devtools/dpkg/dpkg/0002-Adapt-to-linux-wrs-kernel-version-which-has-characte.patch index a5c80773a5..a4f0eb7d82 100644 --- a/meta/recipes-devtools/dpkg/dpkg/0002-Adapt-to-linux-wrs-kernel-version-which-has-characte.patch +++ b/meta/recipes-devtools/dpkg/dpkg/0002-Adapt-to-linux-wrs-kernel-version-which-has-characte.patch @@ -1,6 +1,6 @@ -From 6e88e8b7b6924751112966f329525956735de9b4 Mon Sep 17 00:00:00 2001 +From 3d27ccbc3409c473a4acba56df15e6b7e71f83fb Mon Sep 17 00:00:00 2001 From: Alexander Kanavin <alex.kanavin@gmail.com> -Date: Wed, 26 Aug 2015 16:16:16 +0300 +Date: Sun, 8 Feb 2026 21:11:56 -0800 Subject: [PATCH] Adapt to linux-wrs kernel version, which has character '_' inside. Remove the first-char-digit-check (as the 1.15.8.5 version does). @@ -8,28 +8,38 @@ Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Upstream-Status: Inappropriate [embedded specific] + +Rebase to 1.23.5 +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> --- lib/dpkg/parsehelp.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/dpkg/parsehelp.c b/lib/dpkg/parsehelp.c -index a999b5e78..7be0378ab 100644 +index 307b7705a..82713c008 100644 --- a/lib/dpkg/parsehelp.c +++ b/lib/dpkg/parsehelp.c -@@ -291,14 +291,12 @@ parseversion(struct dpkg_version *rversion, const char *string, - ptr = rversion->version; - if (!*ptr) - return dpkg_put_error(err, _("version number is empty")); -- if (!c_isdigit(*ptr++)) -- return dpkg_put_warn(err, _("version number does not start with digit")); - for (; *ptr; ptr++) { -- if (!c_isdigit(*ptr) && !c_isalpha(*ptr) && strchr(".-+~:", *ptr) == NULL) -+ if (!c_isdigit(*ptr) && !c_isalpha(*ptr) && strchr(".-+~:_", *ptr) == NULL) - return dpkg_put_warn(err, _("invalid character in version number")); - } - for (ptr = rversion->revision; *ptr; ptr++) { -- if (!c_isdigit(*ptr) && !c_isalpha(*ptr) && strchr(".+~", *ptr) == NULL) -+ if (!c_isdigit(*ptr) && !c_isalpha(*ptr) && strchr(".-+~_", *ptr) == NULL) - return dpkg_put_warn(err, _("invalid character in revision number")); - } +@@ -303,18 +303,16 @@ parseversion(struct dpkg_version *rversion, const char *string, + ptr = rversion->version; + if (!*ptr) + return dpkg_put_error(err, _("version number is empty")); +- if (!c_isdigit(*ptr++)) +- return dpkg_put_warn(err, _("version number does not start with digit")); + for (; *ptr; ptr++) { + if (!c_isdigit(*ptr) && + !c_isalpha(*ptr) && +- strchr(".-+~:", *ptr) == NULL) ++ strchr(".-+~:_", *ptr) == NULL) + return dpkg_put_warn(err, _("invalid character in version number")); + } + for (ptr = rversion->revision; *ptr; ptr++) { + if (!c_isdigit(*ptr) && + !c_isalpha(*ptr) && +- strchr(".+~", *ptr) == NULL) ++ strchr(".-+~_", *ptr) == NULL) + return dpkg_put_warn(err, _("invalid character in revision number")); + } +-- +2.49.0 + diff --git a/meta/recipes-devtools/dpkg/dpkg/0004-The-lutimes-function-doesn-t-work-properly-for-all-s.patch b/meta/recipes-devtools/dpkg/dpkg/0004-The-lutimes-function-doesn-t-work-properly-for-all-s.patch index e49d54152c..9e063fa961 100644 --- a/meta/recipes-devtools/dpkg/dpkg/0004-The-lutimes-function-doesn-t-work-properly-for-all-s.patch +++ b/meta/recipes-devtools/dpkg/dpkg/0004-The-lutimes-function-doesn-t-work-properly-for-all-s.patch @@ -1,27 +1,34 @@ -From 0fc90a3ed01a7fce34de925979460638b8a57402 Mon Sep 17 00:00:00 2001 +From 541260d2d954d53b2fddd20863cf473d53017de2 Mon Sep 17 00:00:00 2001 From: Alexander Kanavin <alex.kanavin@gmail.com> -Date: Wed, 26 Aug 2015 16:27:45 +0300 +Date: Sun, 8 Feb 2026 21:21:43 -0800 Subject: [PATCH] The lutimes function doesn't work properly for all systems. Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Upstream-Status: Inappropriate [embedded specific] + +Rebase to 1.23.5 +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> --- src/main/archives.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/archives.c b/src/main/archives.c -index d7279e1f5..f9c6facc9 100644 +index b5c6f0356..6db2c712c 100644 --- a/src/main/archives.c +++ b/src/main/archives.c -@@ -490,8 +490,9 @@ tarobject_set_mtime(struct tar_entry *te, const char *path) +@@ -526,9 +526,10 @@ tarobject_set_mtime(struct tar_entry *te, const char *path) - if (te->type == TAR_FILETYPE_SYMLINK) { + if (te->type == TAR_FILETYPE_SYMLINK) { #ifdef HAVE_LUTIMES -- if (lutimes(path, tv) && errno != ENOSYS) -+/* if (lutimes(path, tv) && errno != ENOSYS) - ohshite(_("error setting timestamps of '%.255s'"), path); +- if (lutimes(path, tv) && errno != ENOSYS) ++/* if (lutimes(path, tv) && errno != ENOSYS) + ohshite(_("error setting timestamps of '%s'"), + path); +*/ #endif - } else { - if (utimes(path, tv)) + } else { + if (utimes(path, tv)) +-- +2.49.0 + diff --git a/meta/recipes-devtools/dpkg/dpkg/0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch b/meta/recipes-devtools/dpkg/dpkg/0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch index ded1707dfd..6d39e43c5f 100644 --- a/meta/recipes-devtools/dpkg/dpkg/0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch +++ b/meta/recipes-devtools/dpkg/dpkg/0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch @@ -1,7 +1,9 @@ -From 20ba7fd8939e97bec3d70a67c0aac76ddc67898d Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= <anibal.limon@linux.intel.com> -Date: Tue, 21 Feb 2017 11:23:27 -0600 +From 5c9c44274ecf0e704e1aadb1001d6df9f3ce403a Mon Sep 17 00:00:00 2001 +From: Hongxu Jia <hongxu.jia@windriver.com> +Date: Sun, 8 Feb 2026 21:25:06 -0800 Subject: [PATCH] dpkg-deb/build.c: Remove usage of --clamp-mtime in tar + MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 + Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @@ -22,20 +24,25 @@ Upstream-Status: Inappropriate [Configuration] Update patch context for dpkg 1.19.4. Signed-off-by: Kai Kang <kai.kang@windriver.com> + +Rebase to 1.23.5 +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> --- - src/deb/build.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) + src/deb/build.c | 1 - + 1 file changed, 1 deletion(-) diff --git a/src/deb/build.c b/src/deb/build.c -index a418dd122..87bd4142e 100644 +index 259c6251c..f7a0156f1 100644 --- a/src/deb/build.c +++ b/src/deb/build.c -@@ -504,7 +504,7 @@ tarball_pack(const char *dir, filenames_feed_func *tar_filenames_feeder, - - command_init(&cmd, TAR, "tar -cf"); - command_add_args(&cmd, "tar", "-cf", "-", "--format=gnu", -- "--mtime", mtime, "--clamp-mtime", NULL); -+ "--mtime", mtime, NULL); - /* Mode might become a positional argument, pass it before -T. */ - if (options->mode) - command_add_args(&cmd, "--mode", options->mode, NULL); +@@ -553,7 +553,6 @@ tarball_pack(const char *dir, filenames_feed_func *tar_filenames_feeder, + "-cf", "-", + "--format=gnu", + "--mtime", mtime, +- "--clamp-mtime", + NULL); + /* Mode might become a positional argument, pass it + * before -T. */ +-- +2.49.0 + diff --git a/meta/recipes-devtools/dpkg/dpkg/arch_pm.patch b/meta/recipes-devtools/dpkg/dpkg/arch_pm.patch index b5a29231dd..676e0956cc 100644 --- a/meta/recipes-devtools/dpkg/dpkg/arch_pm.patch +++ b/meta/recipes-devtools/dpkg/dpkg/arch_pm.patch @@ -1,6 +1,6 @@ -From 812dbb64f2805a3257ef9c9a61abbd10e0b3a08c Mon Sep 17 00:00:00 2001 +From 961482eef79e90f9be6f60f48a063b66221a8ea1 Mon Sep 17 00:00:00 2001 From: Joe Slater <jslater@windriver.com> -Date: Mon, 26 Aug 2013 23:38:45 +0000 +Date: Sun, 8 Feb 2026 21:06:44 -0800 Subject: [PATCH] dpkg: fix configuration issue for mips64 configure cannot determine the proper cpu, os, or @@ -11,21 +11,27 @@ release from upstream. We remove that code. Upstream-Status: Inappropriate [not a debian architecture] Signed-off-by: Joe Slater <jslater@windriver.com> + +Rebase to 1.23.5 +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> --- scripts/Dpkg/Arch.pm | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/Dpkg/Arch.pm b/scripts/Dpkg/Arch.pm -index 0d352eeb9..4ef5fa307 100644 +index 3d9e3e975..05c6debc3 100644 --- a/scripts/Dpkg/Arch.pm +++ b/scripts/Dpkg/Arch.pm -@@ -326,9 +326,6 @@ sub _load_tupletable() - (my $dt = $debtuple) =~ s/<cpu>/$_cpu/; - (my $da = $debarch) =~ s/<cpu>/$_cpu/; +@@ -326,9 +326,6 @@ sub _load_tupletable + (my $dt = $debtuple) =~ s/<cpu>/$_cpu/; + (my $da = $debarch) =~ s/<cpu>/$_cpu/; -- next if exists $debarch_to_debtuple{$da} -- or exists $debtuple_to_debarch{$dt}; +- next if exists $debarch_to_debtuple{$da} +- or exists $debtuple_to_debarch{$dt}; - - $debarch_to_debtuple{$da} = $dt; - $debtuple_to_debarch{$dt} = $da; - } + $debarch_to_debtuple{$da} = $dt; + $debtuple_to_debarch{$dt} = $da; + } +-- +2.49.0 + diff --git a/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch b/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch index d3a1a13098..754b4fef17 100644 --- a/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch +++ b/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch @@ -1,25 +1,31 @@ -From 7d69de114aa696cfb5e31b491a657ca6b6cbbbd5 Mon Sep 17 00:00:00 2001 +From a559247b71ce44978b7dc49a6fdb51167e22c0bf Mon Sep 17 00:00:00 2001 From: Constantin Musca <constantinx.musca@intel.com> -Date: Tue, 28 Aug 2012 17:02:40 +0300 +Date: Sun, 8 Feb 2026 21:03:30 -0800 Subject: [PATCH] busybox-1.19.4 tar utility doesn't support --warning=no-timestamp Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Upstream-Status: Inappropriate [configuration] + +Rebase to 1.23.5 +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> --- src/deb/extract.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/deb/extract.c b/src/deb/extract.c -index 08b281564..c35a182ee 100644 +index e0234726a..e153f72ab 100644 --- a/src/deb/extract.c +++ b/src/deb/extract.c -@@ -338,7 +338,6 @@ extracthalf(const char *debar, const char *dir, +@@ -353,7 +353,6 @@ extracthalf(const char *debar, const char *dir, - command_add_arg(&cmd, "-f"); - command_add_arg(&cmd, "-"); -- command_add_arg(&cmd, "--warning=no-timestamp"); + command_add_arg(&cmd, "-f"); + command_add_arg(&cmd, "-"); +- command_add_arg(&cmd, "--warning=no-timestamp"); - m_dup2(p2[0],0); - close(p2[0]); + m_dup2(p2[0], 0); + close(p2[0]); +-- +2.49.0 + diff --git a/meta/recipes-devtools/dpkg/dpkg_1.22.21.bb b/meta/recipes-devtools/dpkg/dpkg_1.23.5.bb similarity index 92% rename from meta/recipes-devtools/dpkg/dpkg_1.22.21.bb rename to meta/recipes-devtools/dpkg/dpkg_1.23.5.bb index 20f98d5d2d..1d8dd66efa 100644 --- a/meta/recipes-devtools/dpkg/dpkg_1.22.21.bb +++ b/meta/recipes-devtools/dpkg/dpkg_1.23.5.bb @@ -1,7 +1,7 @@ require dpkg.inc LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" -SRC_URI = "git://salsa.debian.org/dpkg-team/dpkg.git;protocol=https;branch=1.22.x;tag=${PV} \ +SRC_URI = "git://salsa.debian.org/dpkg-team/dpkg.git;protocol=https;branch=main;tag=${PV} \ file://noman.patch \ file://remove-tar-no-timestamp.patch \ file://arch_pm.patch \ @@ -19,4 +19,4 @@ SRC_URI = "git://salsa.debian.org/dpkg-team/dpkg.git;protocol=https;branch=1.22. SRC_URI:append:class-native = " file://0001-build.c-ignore-return-of-1-from-tar-cf.patch" -SRCREV = "d72b038fd2113cb62972e4071db03dd1388394d8" +SRCREV = "89f266325cc8b5b7fd1ee417b78d498ee189565b" -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 3/3] gnupg: 2.5.14 -> 2.5.17 2026-02-10 9:50 [PATCH 1/3] vte: 0.82.2 -> 0.83.90 Hongxu Jia 2026-02-10 9:50 ` [PATCH 2/3] dpkg: 1.22.21 -> 1.23.5 Hongxu Jia @ 2026-02-10 9:50 ` Hongxu Jia 2026-02-10 10:00 ` Patchtest results for " patchtest 2026-02-10 9:54 ` [OE-core] [PATCH 1/3] vte: 0.82.2 -> 0.83.90 Alexander Kanavin 2 siblings, 1 reply; 10+ messages in thread From: Hongxu Jia @ 2026-02-10 9:50 UTC (permalink / raw) To: openembedded-core Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> --- meta/recipes-support/gnupg/{gnupg_2.5.14.bb => gnupg_2.5.17.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/gnupg/{gnupg_2.5.14.bb => gnupg_2.5.17.bb} (97%) diff --git a/meta/recipes-support/gnupg/gnupg_2.5.14.bb b/meta/recipes-support/gnupg/gnupg_2.5.17.bb similarity index 97% rename from meta/recipes-support/gnupg/gnupg_2.5.14.bb rename to meta/recipes-support/gnupg/gnupg_2.5.17.bb index e484b03424..fd6588769c 100644 --- a/meta/recipes-support/gnupg/gnupg_2.5.14.bb +++ b/meta/recipes-support/gnupg/gnupg_2.5.17.bb @@ -24,7 +24,7 @@ SRC_URI:append:class-native = " file://0001-configure.ac-use-a-custom-value-for- file://relocate.patch" SRC_URI:append:class-nativesdk = " file://relocate.patch" -SRC_URI[sha256sum] = "25a622e625a1cc9078b5e3f7adf2bd02b86759170e2fbb8542bca8e907214610" +SRC_URI[sha256sum] = "2c1fbe20e2958fd8fb53cf37d7c38e84a900edc0d561a1c4af4bc3a10888685d" EXTRA_OECONF = "--disable-ldap \ --disable-ccid-driver \ -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Patchtest results for [PATCH 3/3] gnupg: 2.5.14 -> 2.5.17 2026-02-10 9:50 ` [PATCH 3/3] gnupg: 2.5.14 -> 2.5.17 Hongxu Jia @ 2026-02-10 10:00 ` patchtest 2026-02-10 10:36 ` [OE-core] " Marko, Peter 0 siblings, 1 reply; 10+ messages in thread From: patchtest @ 2026-02-10 10:00 UTC (permalink / raw) To: Hongxu Jia; +Cc: openembedded-core [-- Attachment #1: Type: text/plain, Size: 2177 bytes --] Thank you for your submission. Patchtest identified one or more issues with the patch. Please see the log below for more information: --- Testing patch /home/patchtest/share/mboxes/3-3-gnupg-2.5.14---2.5.17.patch FAIL: test commit message presence: Please include a commit message on your patch explaining the change (test_mbox.TestMbox.test_commit_message_presence) PASS: test Signed-off-by presence (test_mbox.TestMbox.test_signed_off_by_presence) PASS: test author valid (test_mbox.TestMbox.test_author_valid) PASS: test commit message user tags (test_mbox.TestMbox.test_commit_message_user_tags) PASS: test mbox format (test_mbox.TestMbox.test_mbox_format) PASS: test non-AUH upgrade (test_mbox.TestMbox.test_non_auh_upgrade) PASS: test shortlog format (test_mbox.TestMbox.test_shortlog_format) PASS: test shortlog length (test_mbox.TestMbox.test_shortlog_length) PASS: test target mailing list (test_mbox.TestMbox.test_target_mailing_list) SKIP: pretest pylint: No python related patches, skipping test (test_python_pylint.PyLint.pretest_pylint) SKIP: test CVE tag format: No new CVE patches introduced (test_patch.TestPatch.test_cve_tag_format) SKIP: test Signed-off-by presence: No new CVE patches introduced (test_patch.TestPatch.test_signed_off_by_presence) SKIP: test Upstream-Status presence: No new CVE patches introduced (test_patch.TestPatch.test_upstream_status_presence_format) SKIP: test bugzilla entry format: No bug ID found (test_mbox.TestMbox.test_bugzilla_entry_format) SKIP: test pylint: No python related patches, skipping test (test_python_pylint.PyLint.test_pylint) SKIP: test series merge on head: Merge test is disabled for now (test_mbox.TestMbox.test_series_merge_on_head) --- Please address the issues identified and submit a new revision of the patch, or alternatively, reply to this email with an explanation of why the patch should be accepted. If you believe these results are due to an error in patchtest, please submit a bug at https://bugzilla.yoctoproject.org/ (use the 'Patchtest' category under 'Yocto Project Subprojects'). For more information on specific failures, see: https://wiki.yoctoproject.org/wiki/Patchtest. Thank you! ^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [OE-core] Patchtest results for [PATCH 3/3] gnupg: 2.5.14 -> 2.5.17 2026-02-10 10:00 ` Patchtest results for " patchtest @ 2026-02-10 10:36 ` Marko, Peter 2026-02-10 10:40 ` Yoann Congal 2026-02-11 2:35 ` [OE-core] Patchtest results for [PATCH 3/3] " Hongxu Jia 0 siblings, 2 replies; 10+ messages in thread From: Marko, Peter @ 2026-02-10 10:36 UTC (permalink / raw) To: patchtest@automation.yoctoproject.org, Hongxu Jia Cc: openembedded-core@lists.openembedded.org > -----Original Message----- > From: openembedded-core@lists.openembedded.org <openembedded- > core@lists.openembedded.org> On Behalf Of Patchtest via > lists.openembedded.org > Sent: Tuesday, February 10, 2026 11:01 > To: Hongxu Jia <hongxu.jia@windriver.com> > Cc: openembedded-core@lists.openembedded.org > Subject: [OE-core] Patchtest results for [PATCH 3/3] gnupg: 2.5.14 -> 2.5.17 > > Thank you for your submission. Patchtest identified one > or more issues with the patch. Please see the log below for > more information: Ideally mention security fixes: CVE-2026-24882 and CVE-2026-24883. Peter > > --- > Testing patch /home/patchtest/share/mboxes/3-3-gnupg-2.5.14---2.5.17.patch > > FAIL: test commit message presence: Please include a commit message on your > patch explaining the change > (test_mbox.TestMbox.test_commit_message_presence) > > PASS: test Signed-off-by presence > (test_mbox.TestMbox.test_signed_off_by_presence) > PASS: test author valid (test_mbox.TestMbox.test_author_valid) > PASS: test commit message user tags > (test_mbox.TestMbox.test_commit_message_user_tags) > PASS: test mbox format (test_mbox.TestMbox.test_mbox_format) > PASS: test non-AUH upgrade (test_mbox.TestMbox.test_non_auh_upgrade) > PASS: test shortlog format (test_mbox.TestMbox.test_shortlog_format) > PASS: test shortlog length (test_mbox.TestMbox.test_shortlog_length) > PASS: test target mailing list (test_mbox.TestMbox.test_target_mailing_list) > > SKIP: pretest pylint: No python related patches, skipping test > (test_python_pylint.PyLint.pretest_pylint) > SKIP: test CVE tag format: No new CVE patches introduced > (test_patch.TestPatch.test_cve_tag_format) > SKIP: test Signed-off-by presence: No new CVE patches introduced > (test_patch.TestPatch.test_signed_off_by_presence) > SKIP: test Upstream-Status presence: No new CVE patches introduced > (test_patch.TestPatch.test_upstream_status_presence_format) > SKIP: test bugzilla entry format: No bug ID found > (test_mbox.TestMbox.test_bugzilla_entry_format) > SKIP: test pylint: No python related patches, skipping test > (test_python_pylint.PyLint.test_pylint) > SKIP: test series merge on head: Merge test is disabled for now > (test_mbox.TestMbox.test_series_merge_on_head) > > --- > > Please address the issues identified and > submit a new revision of the patch, or alternatively, reply to this > email with an explanation of why the patch should be accepted. If you > believe these results are due to an error in patchtest, please submit a > bug at https://bugzilla.yoctoproject.org/ (use the 'Patchtest' category > under 'Yocto Project Subprojects'). For more information on specific > failures, see: https://wiki.yoctoproject.org/wiki/Patchtest. Thank > you! ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [OE-core] Patchtest results for [PATCH 3/3] gnupg: 2.5.14 -> 2.5.17 2026-02-10 10:36 ` [OE-core] " Marko, Peter @ 2026-02-10 10:40 ` Yoann Congal 2026-02-11 2:43 ` [PATCH v2] " Hongxu Jia 2026-02-11 2:35 ` [OE-core] Patchtest results for [PATCH 3/3] " Hongxu Jia 1 sibling, 1 reply; 10+ messages in thread From: Yoann Congal @ 2026-02-10 10:40 UTC (permalink / raw) To: peter.marko, patchtest@automation.yoctoproject.org, Hongxu Jia Cc: openembedded-core@lists.openembedded.org On Tue Feb 10, 2026 at 11:36 AM CET, Peter Marko via lists.openembedded.org wrote: > > >> -----Original Message----- >> From: openembedded-core@lists.openembedded.org <openembedded- >> core@lists.openembedded.org> On Behalf Of Patchtest via >> lists.openembedded.org >> Sent: Tuesday, February 10, 2026 11:01 >> To: Hongxu Jia <hongxu.jia@windriver.com> >> Cc: openembedded-core@lists.openembedded.org >> Subject: [OE-core] Patchtest results for [PATCH 3/3] gnupg: 2.5.14 -> 2.5.17 >> >> Thank you for your submission. Patchtest identified one >> or more issues with the patch. Please see the log below for >> more information: > > Ideally mention security fixes: CVE-2026-24882 and CVE-2026-24883. Yes! Please do that. That helps me a lot to find upstream commits when reviewing patchs for stable branches. Thanks! > > Peter > >> >> --- >> Testing patch /home/patchtest/share/mboxes/3-3-gnupg-2.5.14---2.5.17.patch >> >> FAIL: test commit message presence: Please include a commit message on your >> patch explaining the change >> (test_mbox.TestMbox.test_commit_message_presence) >> >> PASS: test Signed-off-by presence >> (test_mbox.TestMbox.test_signed_off_by_presence) >> PASS: test author valid (test_mbox.TestMbox.test_author_valid) >> PASS: test commit message user tags >> (test_mbox.TestMbox.test_commit_message_user_tags) >> PASS: test mbox format (test_mbox.TestMbox.test_mbox_format) >> PASS: test non-AUH upgrade (test_mbox.TestMbox.test_non_auh_upgrade) >> PASS: test shortlog format (test_mbox.TestMbox.test_shortlog_format) >> PASS: test shortlog length (test_mbox.TestMbox.test_shortlog_length) >> PASS: test target mailing list (test_mbox.TestMbox.test_target_mailing_list) >> >> SKIP: pretest pylint: No python related patches, skipping test >> (test_python_pylint.PyLint.pretest_pylint) >> SKIP: test CVE tag format: No new CVE patches introduced >> (test_patch.TestPatch.test_cve_tag_format) >> SKIP: test Signed-off-by presence: No new CVE patches introduced >> (test_patch.TestPatch.test_signed_off_by_presence) >> SKIP: test Upstream-Status presence: No new CVE patches introduced >> (test_patch.TestPatch.test_upstream_status_presence_format) >> SKIP: test bugzilla entry format: No bug ID found >> (test_mbox.TestMbox.test_bugzilla_entry_format) >> SKIP: test pylint: No python related patches, skipping test >> (test_python_pylint.PyLint.test_pylint) >> SKIP: test series merge on head: Merge test is disabled for now >> (test_mbox.TestMbox.test_series_merge_on_head) >> >> --- >> >> Please address the issues identified and >> submit a new revision of the patch, or alternatively, reply to this >> email with an explanation of why the patch should be accepted. If you >> believe these results are due to an error in patchtest, please submit a >> bug at https://bugzilla.yoctoproject.org/ (use the 'Patchtest' category >> under 'Yocto Project Subprojects'). For more information on specific >> failures, see: https://wiki.yoctoproject.org/wiki/Patchtest. Thank >> you! -- Yoann Congal Smile ECS ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2] gnupg: 2.5.14 -> 2.5.17 2026-02-10 10:40 ` Yoann Congal @ 2026-02-11 2:43 ` Hongxu Jia 0 siblings, 0 replies; 10+ messages in thread From: Hongxu Jia @ 2026-02-11 2:43 UTC (permalink / raw) To: openembedded-core Release-info: https://dev.gnupg.org/T7996 Compare commits updates: $ git clone https://github.com/gpg/gnupg.git $ git log --oneline gnupg-2.5.14..gnupg-2.5.17 17b514596 (tag: gnupg-2.5.17) Release 2.5.17 f2f89dc82 po: msgmerge 11b7e4139 gpg: Fix possible NULL-deref with overlong signature packets. 93fa34d9a tpm: Fix possible buffer overflow in PKDECRYPT c3e387427 po: Update Swedish translation eba28eeaa agent: Add accelerator keys for "Wrong" and "Correct". 2438271ab agent: Fix stack buffer overflow when using gpgsm and KEM c7770b0a7 gpgsm: Make multiple search patterns work with keyboxd. 71570012e gpg: Remove a dead statement. 0bcd9be9a gpg: New export-option "keep-expired-subkeys" 0e37a6779 doc: Improve the "Programmatic use of GnuPG" section. 5f4ad39b1 doc: Rename an internal function to clarity the purpose. 8d4fc7667 dirmngr: Help detection of bad keyserver configurations. d97e52cc7 scd:openpgp: register vendor 4d52 916982b8c Post release updates 7d38a23b8 (tag: gnupg-2.5.16) Release 2.5.16 a9da315fb Revert "misc: Validate the value on the use of strtol." 26c422e5b Post release updates 7ee523ac2 (tag: gnupg-2.5.15) Release 2.5.15 947ea3c41 gpg: Deprecate the option --not-dash-escaped. abe9bddaa gpg: Fix for a recently claimed harmless keyboxd change. 4ec86dca3 po: msgmerge 691fa4ecb po: Update German translation 81bb94975 keyboxd: Fix database schema migration. 267f6db56 doc: Document default symmetric algo as AES-256 5d0ba97c8 Prepare NEWS 1b3bb7dde po: Enable Georgian translation. 6c1d13ac6 gpg: Implement skip function for keyboxd to fix a validation bug. 01eaa386e keybox: Fix the not yet used uid and pk keyblock index return values. c7472b1b9 po: Update Georgian Translation. 4350fc192 Avoid the function name thread_init. 674aa5424 dirmngr: Add a compatibility flag for use with newer Libksba versions. 32a3e5f83 common:dotlock: Escalate a warning message up to INFO from DEBUG. aab29b128 kbx:sqlite: Don't call dotlock_release. d4e40e2a8 common:dotlock: Comment fixes. 68dcfec91 common:dotlock:w32: Minor fixes for Windows. e4f20ba10 commond:dotlock: Remove support of use with glib. 493276a20 po: Update Portuguese translation 216a695ce agent: Use SHADOW_INFO to silence warnings. 57affc4e9 common,agent,dirmngr,kbx:w32: Synchronous spawning daemon process. cad79e542 agent,common,dirmngr,tests: Silence warnings of a compiler. bcd87ea2b misc: Validate the value on the use of strtol. ce44fde23 Post release updates Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> --- meta/recipes-support/gnupg/{gnupg_2.5.14.bb => gnupg_2.5.17.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-support/gnupg/{gnupg_2.5.14.bb => gnupg_2.5.17.bb} (97%) diff --git a/meta/recipes-support/gnupg/gnupg_2.5.14.bb b/meta/recipes-support/gnupg/gnupg_2.5.17.bb similarity index 97% rename from meta/recipes-support/gnupg/gnupg_2.5.14.bb rename to meta/recipes-support/gnupg/gnupg_2.5.17.bb index e484b03424..fd6588769c 100644 --- a/meta/recipes-support/gnupg/gnupg_2.5.14.bb +++ b/meta/recipes-support/gnupg/gnupg_2.5.17.bb @@ -24,7 +24,7 @@ SRC_URI:append:class-native = " file://0001-configure.ac-use-a-custom-value-for- file://relocate.patch" SRC_URI:append:class-nativesdk = " file://relocate.patch" -SRC_URI[sha256sum] = "25a622e625a1cc9078b5e3f7adf2bd02b86759170e2fbb8542bca8e907214610" +SRC_URI[sha256sum] = "2c1fbe20e2958fd8fb53cf37d7c38e84a900edc0d561a1c4af4bc3a10888685d" EXTRA_OECONF = "--disable-ldap \ --disable-ccid-driver \ -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [OE-core] Patchtest results for [PATCH 3/3] gnupg: 2.5.14 -> 2.5.17 2026-02-10 10:36 ` [OE-core] " Marko, Peter 2026-02-10 10:40 ` Yoann Congal @ 2026-02-11 2:35 ` Hongxu Jia 1 sibling, 0 replies; 10+ messages in thread From: Hongxu Jia @ 2026-02-11 2:35 UTC (permalink / raw) To: Marko, Peter, patchtest@automation.yoctoproject.org Cc: openembedded-core@lists.openembedded.org On 2/10/26 18:36, Marko, Peter wrote: > CAUTION: This email comes from a non Wind River email account! > Do not click links or open attachments unless you recognize the sender and know the content is safe. > >> -----Original Message----- >> From: openembedded-core@lists.openembedded.org <openembedded- >> core@lists.openembedded.org> On Behalf Of Patchtest via >> lists.openembedded.org >> Sent: Tuesday, February 10, 2026 11:01 >> To: Hongxu Jia <hongxu.jia@windriver.com> >> Cc: openembedded-core@lists.openembedded.org >> Subject: [OE-core] Patchtest results for [PATCH 3/3] gnupg: 2.5.14 -> 2.5.17 >> >> Thank you for your submission. Patchtest identified one >> or more issues with the patch. Please see the log below for >> more information: > Ideally mention security fixes: CVE-2026-24882 and CVE-2026-24883. I am afraid we could not find CVE info in GNUPG release note or git commits but I will paste release note link and compare git commits between 2.5.14 vs 2.5.17 //Hongxu > Peter > >> --- >> Testing patch /home/patchtest/share/mboxes/3-3-gnupg-2.5.14---2.5.17.patch >> >> FAIL: test commit message presence: Please include a commit message on your >> patch explaining the change >> (test_mbox.TestMbox.test_commit_message_presence) >> >> PASS: test Signed-off-by presence >> (test_mbox.TestMbox.test_signed_off_by_presence) >> PASS: test author valid (test_mbox.TestMbox.test_author_valid) >> PASS: test commit message user tags >> (test_mbox.TestMbox.test_commit_message_user_tags) >> PASS: test mbox format (test_mbox.TestMbox.test_mbox_format) >> PASS: test non-AUH upgrade (test_mbox.TestMbox.test_non_auh_upgrade) >> PASS: test shortlog format (test_mbox.TestMbox.test_shortlog_format) >> PASS: test shortlog length (test_mbox.TestMbox.test_shortlog_length) >> PASS: test target mailing list (test_mbox.TestMbox.test_target_mailing_list) >> >> SKIP: pretest pylint: No python related patches, skipping test >> (test_python_pylint.PyLint.pretest_pylint) >> SKIP: test CVE tag format: No new CVE patches introduced >> (test_patch.TestPatch.test_cve_tag_format) >> SKIP: test Signed-off-by presence: No new CVE patches introduced >> (test_patch.TestPatch.test_signed_off_by_presence) >> SKIP: test Upstream-Status presence: No new CVE patches introduced >> (test_patch.TestPatch.test_upstream_status_presence_format) >> SKIP: test bugzilla entry format: No bug ID found >> (test_mbox.TestMbox.test_bugzilla_entry_format) >> SKIP: test pylint: No python related patches, skipping test >> (test_python_pylint.PyLint.test_pylint) >> SKIP: test series merge on head: Merge test is disabled for now >> (test_mbox.TestMbox.test_series_merge_on_head) >> >> --- >> >> Please address the issues identified and >> submit a new revision of the patch, or alternatively, reply to this >> email with an explanation of why the patch should be accepted. If you >> believe these results are due to an error in patchtest, please submit a >> bug at https://bugzilla.yoctoproject.org/ (use the 'Patchtest' category >> under 'Yocto Project Subprojects'). For more information on specific >> failures, see: https://wiki.yoctoproject.org/wiki/Patchtest. Thank >> you! ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [OE-core] [PATCH 1/3] vte: 0.82.2 -> 0.83.90 2026-02-10 9:50 [PATCH 1/3] vte: 0.82.2 -> 0.83.90 Hongxu Jia 2026-02-10 9:50 ` [PATCH 2/3] dpkg: 1.22.21 -> 1.23.5 Hongxu Jia 2026-02-10 9:50 ` [PATCH 3/3] gnupg: 2.5.14 -> 2.5.17 Hongxu Jia @ 2026-02-10 9:54 ` Alexander Kanavin 2026-02-11 2:23 ` Hongxu Jia 2 siblings, 1 reply; 10+ messages in thread From: Alexander Kanavin @ 2026-02-10 9:54 UTC (permalink / raw) To: hongxu.jia; +Cc: openembedded-core On Tue, 10 Feb 2026 at 10:50, hongxu via lists.openembedded.org <hongxu.jia=windriver.com@lists.openembedded.org> wrote: > .../vte/{vte_0.82.2.bb => vte_0.83.90.bb} | 4 +- 0.83.90 is a pre-release, we should wait for 0.84 Unfortunately gnome release schedule always is just a bit too late for yocto releases, and typically there's no time to test and merge version updates. Can the backport be added to existing recipe? Alex ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [OE-core] [PATCH 1/3] vte: 0.82.2 -> 0.83.90 2026-02-10 9:54 ` [OE-core] [PATCH 1/3] vte: 0.82.2 -> 0.83.90 Alexander Kanavin @ 2026-02-11 2:23 ` Hongxu Jia 0 siblings, 0 replies; 10+ messages in thread From: Hongxu Jia @ 2026-02-11 2:23 UTC (permalink / raw) To: Alexander Kanavin; +Cc: openembedded-core [-- Attachment #1: Type: text/plain, Size: 814 bytes --] On 2/10/26 17:54, Alexander Kanavin wrote: > CAUTION: This email comes from a non Wind River email account! > Do not click links or open attachments unless you recognize the sender and know the content is safe. > > On Tue, 10 Feb 2026 at 10:50, hongxu via lists.openembedded.org > <hongxu.jia=windriver.com@lists.openembedded.org> wrote: >> .../vte/{vte_0.82.2.bb => vte_0.83.90.bb} | 4 +- > 0.83.90 is a pre-release, we should wait for 0.84 > > Unfortunately gnome release schedule always is just a bit too late for > yocto releases, and typically there's no time to test and merge > version updates. Can the backport be added to existing recipe? OK, let's wait for 0.84. The backport is not necessary for 0.82.2, it was introduced in 0.83.90 and fixed in development branch (master) //Hongxu > Alex [-- Attachment #2: Type: text/html, Size: 1691 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-02-11 2:43 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-10 9:50 [PATCH 1/3] vte: 0.82.2 -> 0.83.90 Hongxu Jia 2026-02-10 9:50 ` [PATCH 2/3] dpkg: 1.22.21 -> 1.23.5 Hongxu Jia 2026-02-10 9:50 ` [PATCH 3/3] gnupg: 2.5.14 -> 2.5.17 Hongxu Jia 2026-02-10 10:00 ` Patchtest results for " patchtest 2026-02-10 10:36 ` [OE-core] " Marko, Peter 2026-02-10 10:40 ` Yoann Congal 2026-02-11 2:43 ` [PATCH v2] " Hongxu Jia 2026-02-11 2:35 ` [OE-core] Patchtest results for [PATCH 3/3] " Hongxu Jia 2026-02-10 9:54 ` [OE-core] [PATCH 1/3] vte: 0.82.2 -> 0.83.90 Alexander Kanavin 2026-02-11 2:23 ` Hongxu Jia
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox