Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package telepathy-glib for openSUSE:Factory 
checked in at 2024-06-06 12:30:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/telepathy-glib (Old)
 and      /work/SRC/openSUSE:Factory/.telepathy-glib.new.24587 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "telepathy-glib"

Thu Jun  6 12:30:28 2024 rev:87 rq:1178667 version:0.24.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/telepathy-glib/telepathy-glib.changes    
2024-03-06 23:04:07.632433387 +0100
+++ /work/SRC/openSUSE:Factory/.telepathy-glib.new.24587/telepathy-glib.changes 
2024-06-06 12:30:36.184062503 +0200
@@ -1,0 +2,6 @@
+Tue Jun  4 21:43:45 UTC 2024 - Michael Gorse <mgo...@suse.com>
+
+- Add telepathy-glib-function-type-cast.patch: fix an invalid cast
+  (glfdo#telepathy/telepathy-glib!4).
+
+-------------------------------------------------------------------

New:
----
  telepathy-glib-function-type-cast.patch

BETA DEBUG BEGIN:
  New:
- Add telepathy-glib-function-type-cast.patch: fix an invalid cast
  (glfdo#telepathy/telepathy-glib!4).
BETA DEBUG END:

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

Other differences:
------------------
++++++ telepathy-glib.spec ++++++
--- /var/tmp/diff_new_pack.fjbRH4/_old  2024-06-06 12:30:36.936089969 +0200
+++ /var/tmp/diff_new_pack.fjbRH4/_new  2024-06-06 12:30:36.936089969 +0200
@@ -24,6 +24,8 @@
 Group:          Development/Languages/C and C++
 URL:            http://telepathy.freedesktop.org/
 Source:         
http://telepathy.freedesktop.org/releases/telepathy-glib/%{name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM telepathy-glib-function-type-cast.patch boo#1221707 
mgo...@suse.com -- fix an invalid cast.
+Patch0:         telepathy-glib-function-type-cast.patch
 
 BuildRequires:  gtk-doc >= 1.17
 BuildRequires:  libxslt-devel

++++++ telepathy-glib-function-type-cast.patch ++++++
>From 72412c944b771f3214ddc40fa9dea82cea3a5651 Mon Sep 17 00:00:00 2001
From: Mamoru TASAKA <mtas...@fedoraproject.org>
Date: Fri, 2 Feb 2024 12:17:44 +0900
Subject: [PATCH] fix: build fix with -Werror=incompatible-pointer-types

gcc14 defaults to -Werror=incompatible-pointer-types .
Fix build error with this option.
---
 telepathy-glib/protocol.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/telepathy-glib/protocol.c b/telepathy-glib/protocol.c
index 88fdff382..25b36620b 100644
--- a/telepathy-glib/protocol.c
+++ b/telepathy-glib/protocol.c
@@ -1791,7 +1791,7 @@ _tp_protocol_parse_manager_file (GKeyFile *file,
         i++;
     }
 
-  param_specs = g_ptr_array_new_full (i, tp_value_array_free);
+  param_specs = g_ptr_array_new_full (i, (GDestroyNotify) tp_value_array_free);
 
   for (key = keys; key != NULL && *key != NULL; key++)
     {
-- 
GitLab

Reply via email to