Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package vte for openSUSE:Factory checked in at 2023-10-08 12:16:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vte (Old) and /work/SRC/openSUSE:Factory/.vte.new.28202 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vte" Sun Oct 8 12:16:06 2023 rev:149 rq:1115911 version:0.74.0 Changes: -------- --- /work/SRC/openSUSE:Factory/vte/vte.changes 2023-09-20 13:22:39.616610395 +0200 +++ /work/SRC/openSUSE:Factory/.vte.new.28202/vte.changes 2023-10-08 12:16:09.257488904 +0200 @@ -1,0 +2,7 @@ +Wed Oct 4 11:07:28 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Add f1a547f1dfebd8860021b6b727fa5d5717e9f143.patch: widget: + VteTerminalSpawnAsyncCallback's error is nullable. Fixes: + https://gitlab.gnome.org/GNOME/vte/-/issues/2647 + +------------------------------------------------------------------- New: ---- f1a547f1dfebd8860021b6b727fa5d5717e9f143.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vte.spec ++++++ --- /var/tmp/diff_new_pack.lc1Yyr/_old 2023-10-08 12:16:10.649538954 +0200 +++ /var/tmp/diff_new_pack.lc1Yyr/_new 2023-10-08 12:16:10.653539098 +0200 @@ -36,6 +36,9 @@ Source: %{_name}-%{version}.tar.zst # PATCH-FIX-OPENSUSE vte-enable-build-flag-pie.patch yfji...@suse.com -- enable PIE flag to be compatible with gcc default linking option Patch0: vte-enable-build-flag-pie.patch +# PATCH-FIX-UPSTREAM f1a547f1dfebd8860021b6b727fa5d5717e9f143.patch -- widget: VteTerminalSpawnAsyncCallback's error is nullable +Patch1: https://gitlab.gnome.org/GNOME/vte/-/commit/f1a547f1dfebd8860021b6b727fa5d5717e9f143.patch + # PATCH-FIX-SLE vte-revert-back-to-c++17.patch yu.da...@suse.com -- revert c++20 features back to c++17 Patch100: vte-revert-back-to-c++17.patch @@ -176,6 +179,7 @@ %prep %autosetup -n %{_name}-%{version} -N %patch0 -p1 +%patch1 -p1 %if 0%{?sle_version} %patch100 -p1 %endif ++++++ f1a547f1dfebd8860021b6b727fa5d5717e9f143.patch ++++++ >From f1a547f1dfebd8860021b6b727fa5d5717e9f143 Mon Sep 17 00:00:00 2001 From: JCWasmx86 <jcwasm...@t-online.de> Date: Wed, 20 Sep 2023 21:28:10 +0200 Subject: [PATCH] widget: VteTerminalSpawnAsyncCallback's error is nullable Fixes: https://gitlab.gnome.org/GNOME/vte/-/issues/2647 (cherry picked from commit 6552c7d9f866d13d3308dc5bc91d360f5a63ae3b) --- src/vtegtk.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vtegtk.cc b/src/vtegtk.cc index 7257b0e3..0f4641dc 100644 --- a/src/vtegtk.cc +++ b/src/vtegtk.cc @@ -3929,7 +3929,7 @@ spawn_async_cb(GObject *source, * VteTerminalSpawnAsyncCallback: * @terminal: the #VteTerminal * @pid: a #GPid - * @error: a #GError, or %NULL + * @error: (nullable): a #GError, or %NULL * @user_data: user data that was passed to vte_terminal_spawn_async * * Callback for vte_terminal_spawn_async(). -- GitLab