@@ -1,4 +1,4 @@
-From b8795dda629614cd842fcba1c4b50be759c20da4 Mon Sep 17 00:00:00 2001
+From 910ef29050167803e51fcce4230c15d6159d6d9b Mon Sep 17 00:00:00 2001
From: Danilo Spinella <danyspin97@protonmail.com>
Date: Thu, 21 Mar 2019 14:19:26 +0100
Subject: [PATCH] Add W_EXITCODE macro for non-glibc systems
@@ -16,7 +16,7 @@ Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
1 file changed, 4 insertions(+)
diff --git a/src/widget.cc b/src/widget.cc
-index b8daa5c..c357960 100644
+index 66955a6..b352c11 100644
--- a/src/widget.cc
+++ b/src/widget.cc
@@ -16,6 +16,10 @@
deleted file mode 100644
@@ -1,26 +0,0 @@
-From 01a5c8235f8b3f7c691921169ad125a395186b3f Mon Sep 17 00:00:00 2001
-From: Christian Persch <chpe@src.gnome.org>
-Date: Tue, 17 Sep 2024 18:21:32 +0200
-Subject: [PATCH 1/3] tests: Remove excessive constrexpr
-
-Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2819
-
-Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/vte/-/commit/c8838779d5f8c0e03411cef9775cd8f5a10a6204]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- src/color-test.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/color-test.cc b/src/color-test.cc
-index 0ed9089..1bfad31 100644
---- a/src/color-test.cc
-+++ b/src/color-test.cc
-@@ -165,7 +165,7 @@ static void
- test_color_to_string (void)
- {
- auto test = [](std::string str,
-- bool alpha = false) constexpr noexcept -> void
-+ bool alpha = false) noexcept -> void
- {
- auto const value = parse<rgba>(str);
- assert(value);
@@ -1,7 +1,7 @@
-From 6b7440996819c12ec32bfaf4e73b27baeb273207 Mon Sep 17 00:00:00 2001
+From a5956339a0780c22948d689ea6420d6597d7c102 Mon Sep 17 00:00:00 2001
From: Christian Persch <chpe@src.gnome.org>
Date: Thu, 5 Sep 2024 23:59:05 +0200
-Subject: [PATCH 2/3] lib: Typo fix
+Subject: [PATCH] lib: Typo fix
Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2816
Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/vte/-/commit/e24087d953d9352c8bc46074e2662c80f9bfbc2d]
deleted file mode 100644
@@ -1,42 +0,0 @@
-From add3dd52d2e2c19dfa9319de8d8335dca802ba5a Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Mon, 30 Sep 2024 22:36:09 -0700
-Subject: [PATCH 3/3] Add missing system headers
-
-These are found out when using clang libc++
-
-algorithm is needed for std::max and std::min
-string_view for string_view
-
-Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/vte/-/issues/2824]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
----
- src/icu-glue.hh | 1 +
- src/minifont.cc | 1 +
- 2 files changed, 2 insertions(+)
-
-diff --git a/src/icu-glue.hh b/src/icu-glue.hh
-index f2c3331..f72999b 100644
---- a/src/icu-glue.hh
-+++ b/src/icu-glue.hh
-@@ -20,6 +20,7 @@
- #include <glib.h>
- #include <memory>
- #include <optional>
-+#include <string_view>
-
- namespace vte::base {
-
-diff --git a/src/minifont.cc b/src/minifont.cc
-index 9be96d6..f4fe0bf 100644
---- a/src/minifont.cc
-+++ b/src/minifont.cc
-@@ -18,6 +18,7 @@
-
- #include "config.h"
-
-+#include <algorithm>
- #include <cmath>
-
- #include "cairo-glue.hh"
@@ -1,7 +1,7 @@
-From 2a32e43e43b04771a3357d3d4ccbafa7714e0114 Mon Sep 17 00:00:00 2001
+From 9d896d020bfef915d58643b99f8e8f91407c84c8 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Fri, 4 Oct 2024 21:21:11 -0700
-Subject: [PATCH 4/5] fast_float: Add single header library for from_char
+Subject: [PATCH] fast_float: Add single header library for from_char
implementation
Document the process to re-generate the file whenever new release
@@ -18,7 +18,7 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com>
create mode 100644 src/fast_float.hh
diff --git a/README.md b/README.md
-index a32465a9..20ed5ba2 100644
+index a32465a..20ed5ba 100644
--- a/README.md
+++ b/README.md
@@ -21,6 +21,23 @@ on download.gnome.org, but please note that any tarball for releases
@@ -47,7 +47,7 @@ index a32465a9..20ed5ba2 100644
diff --git a/src/fast_float.hh b/src/fast_float.hh
new file mode 100644
-index 00000000..e0d5dd53
+index 0000000..e0d5dd5
--- /dev/null
+++ b/src/fast_float.hh
@@ -0,0 +1,3869 @@
@@ -1,8 +1,7 @@
-From 08b90d0a5bf8ceb68dd1b4e9ded0f8a2b5287a6e Mon Sep 17 00:00:00 2001
+From 9a38dd2f8367d5fa36fa30212038a3e3c936c891 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Fri, 4 Oct 2024 21:22:52 -0700
-Subject: [PATCH 5/5] color-parser: Use fast_float implementation for
- from_chars
+Subject: [PATCH] color-parser: Use fast_float implementation for from_chars
Removed dependency on c++ runtime to provide it.
@@ -16,7 +15,7 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com>
2 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/src/color-parser.cc b/src/color-parser.cc
-index 02ec5d3a..42c51966 100644
+index 02ec5d3..42c5196 100644
--- a/src/color-parser.cc
+++ b/src/color-parser.cc
@@ -17,7 +17,7 @@
@@ -64,7 +63,7 @@ index 02ec5d3a..42c51966 100644
return std::nullopt;
diff --git a/src/termprops.hh b/src/termprops.hh
-index 0d3f0f4c..a10fc7d1 100644
+index 0d3f0f4..a10fc7d 100644
--- a/src/termprops.hh
+++ b/src/termprops.hh
@@ -17,6 +17,7 @@
similarity index 84%
rename from meta/recipes-support/vte/vte_0.78.0.bb
rename to meta/recipes-support/vte/vte_0.78.1.bb
@@ -18,13 +18,11 @@ 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-tests-Remove-excessive-constrexpr.patch \
- file://0002-lib-Typo-fix.patch \
- file://0003-Add-missing-system-headers.patch \
- file://0004-fast_float-Add-single-header-library-for-from_char-i.patch \
- file://0005-color-parser-Use-fast_float-implementation-for-from_.patch \
-"
-SRC_URI[archive.sha256sum] = "07f09c6228a8bb3c1599dd0f5a6ec797b30d3010c3ac91cf21b69d9635dfaf7c"
+ file://0002-lib-Typo-fix.patch \
+ file://0004-fast_float-Add-single-header-library-for-from_char-i.patch \
+ file://0005-color-parser-Use-fast_float-implementation-for-from_.patch \
+ "
+SRC_URI[archive.sha256sum] = "6499d25179315255f9bcfce03c66fb84c03ad325dea23d0e372178521eca42b5"
ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe(s) *vte* to *0.78.1* has Succeeded. Next steps: - apply the patch: git am 0001-vte-upgrade-0.78.0-0.78.1.patch - check the changes to upstream patches and summarize them in the commit message, - compile an image that contains the package - perform some basic sanity tests - amend the patch and sign it off: git commit -s --reset-author --amend - send it to the appropriate mailing list Alternatively, if you believe the recipe should not be upgraded at this time, you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that automatic upgrades would no longer be attempted. Please review the attached files for further information and build/update failures. Any problem please file a bug at https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler Regards, The Upgrade Helper -- >8 -- From d6432f4e9c240e007e54b2e2232d903ba4375cdb Mon Sep 17 00:00:00 2001 From: Upgrade Helper <auh@yoctoproject.org> Date: Mon, 18 Nov 2024 21:16:28 +0000 Subject: [PATCH] vte: upgrade 0.78.0 -> 0.78.1 --- ...EXITCODE-macro-for-non-glibc-systems.patch | 4 +- ...01-tests-Remove-excessive-constrexpr.patch | 26 ------------ .../vte/vte/0002-lib-Typo-fix.patch | 4 +- .../vte/0003-Add-missing-system-headers.patch | 42 ------------------- ...ingle-header-library-for-from_char-i.patch | 8 ++-- ...-fast_float-implementation-for-from_.patch | 9 ++-- .../vte/{vte_0.78.0.bb => vte_0.78.1.bb} | 12 +++--- 7 files changed, 17 insertions(+), 88 deletions(-) delete mode 100644 meta/recipes-support/vte/vte/0001-tests-Remove-excessive-constrexpr.patch delete mode 100644 meta/recipes-support/vte/vte/0003-Add-missing-system-headers.patch rename meta/recipes-support/vte/{vte_0.78.0.bb => vte_0.78.1.bb} (84%)