Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package fcitx for openSUSE:Factory checked 
in at 2024-05-20 18:09:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fcitx (Old)
 and      /work/SRC/openSUSE:Factory/.fcitx.new.1880 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fcitx"

Mon May 20 18:09:35 2024 rev:71 rq:1174813 version:4.2.9.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/fcitx/fcitx.changes      2024-02-27 
22:43:57.400984029 +0100
+++ /work/SRC/openSUSE:Factory/.fcitx.new.1880/fcitx.changes    2024-05-20 
18:09:43.350181192 +0200
@@ -1,0 +2,6 @@
+Thu May 16 19:27:05 UTC 2024 - Michal Suchanek <msucha...@suse.com>
+
+- Add missing fcitx_client_close_ic and fcitx_client_enable_ic prototypes:
+  fcitx-gclient-Export-fcitx_client_enable_ic-fcitx_cl.patch
+
+-------------------------------------------------------------------

New:
----
  fcitx-gclient-Export-fcitx_client_enable_ic-fcitx_cl.patch

BETA DEBUG BEGIN:
  New:- Add missing fcitx_client_close_ic and fcitx_client_enable_ic prototypes:
  fcitx-gclient-Export-fcitx_client_enable_ic-fcitx_cl.patch
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ fcitx.spec ++++++
--- /var/tmp/diff_new_pack.XSaxK7/_old  2024-05-20 18:09:44.294215562 +0200
+++ /var/tmp/diff_new_pack.XSaxK7/_new  2024-05-20 18:09:44.298215707 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fcitx
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -41,6 +41,8 @@
 # PATCH-FIX-OPENSUSE downgrade cmake requirement to 3.1 again
 Patch3:         fcitx-cmake-3.1.patch
 Patch4:         remote-module-use-safe-directory-for-socket-API-sock.patch
+# PATCH-FIX-UPSTREAM Add missing function prototypes
+Patch5:         fcitx-gclient-Export-fcitx_client_enable_ic-fcitx_cl.patch
 BuildRequires:  cairo-devel
 BuildRequires:  cmake
 BuildRequires:  dbus-1-devel


++++++ fcitx-gclient-Export-fcitx_client_enable_ic-fcitx_cl.patch ++++++
>From 4f49f71a8b2c0852d3dfcd990d0b8bb61b1974c8 Mon Sep 17 00:00:00 2001
From: Florian Weimer <fwei...@redhat.com>
Date: Thu, 15 Dec 2022 20:09:35 +0100
Subject: [PATCH] fcitx-gclient: Export fcitx_client_enable_ic,
 fcitx_client_close_ic (#521)

Git-commit: 4f49f71a8b2c0852d3dfcd990d0b8bb61b1974c8

These functions are used from fcitx-fbterm.  Adding function
prototypes to the installed header file seems to be the cleanest way
to ensure that fcitx-fbterm does not rely on implicit function
declarations (which are likely to result in errors with future
compilers by default).
---
 src/lib/fcitx-gclient/fcitxclient.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/lib/fcitx-gclient/fcitxclient.h 
b/src/lib/fcitx-gclient/fcitxclient.h
index 52f0c958..8942111c 100644
--- a/src/lib/fcitx-gclient/fcitxclient.h
+++ b/src/lib/fcitx-gclient/fcitxclient.h
@@ -88,6 +88,9 @@ void fcitx_client_set_capacity(FcitxClient *self, guint 
flags);
 
 void fcitx_client_reset(FcitxClient *self);
 
+void fcitx_client_enable_ic(FcitxClient *self);
+void fcitx_client_close_ic(FcitxClient *self);
+
 G_END_DECLS
 
 #endif // CLIENT_IM_H
-- 
2.45.1

Reply via email to