Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cheese for openSUSE:Factory checked in at 2024-05-09 12:07:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cheese (Old) and /work/SRC/openSUSE:Factory/.cheese.new.1880 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cheese" Thu May 9 12:07:54 2024 rev:117 rq:1172658 version:44.1 Changes: -------- --- /work/SRC/openSUSE:Factory/cheese/cheese.changes 2023-07-19 19:09:56.396322565 +0200 +++ /work/SRC/openSUSE:Factory/.cheese.new.1880/cheese.changes 2024-05-09 12:08:20.550898085 +0200 @@ -1,0 +2,6 @@ +Tue May 7 15:11:14 UTC 2024 - Michael Gorse <mgo...@suse.com> + +- Add cheese-c99.patch: fix cast to invalid pointer type + (glgo#GNOME/cheese!70). + +------------------------------------------------------------------- New: ---- cheese-c99.patch BETA DEBUG BEGIN: New: - Add cheese-c99.patch: fix cast to invalid pointer type (glgo#GNOME/cheese!70). BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cheese.spec ++++++ --- /var/tmp/diff_new_pack.P9uIqd/_old 2024-05-09 12:08:21.222922510 +0200 +++ /var/tmp/diff_new_pack.P9uIqd/_new 2024-05-09 12:08:21.222922510 +0200 @@ -1,7 +1,7 @@ # # spec file for package cheese # -# 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 @@ -29,6 +29,8 @@ Group: Productivity/Multimedia/Other URL: https://wiki.gnome.org/Apps/Cheese Source0: https://download.gnome.org/sources/cheese/44/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM cheese-c99.patch boo#1224002 mgo...@suse.com -- fix cast to invalid pointer type. +Patch0: cheese-c99.patch BuildRequires: appstream-glib BuildRequires: desktop-file-utils ++++++ cheese-c99.patch ++++++ libcheese: Add GtkWidget cast to avoid an incompatible-pointer-types error Submitted upstream: <https://gitlab.gnome.org/GNOME/cheese/-/merge_requests/70> diff --git a/libcheese/cheese-flash.c b/libcheese/cheese-flash.c index 59959dbd3414eafa..e402322166614276 100644 --- a/libcheese/cheese-flash.c +++ b/libcheese/cheese-flash.c @@ -132,7 +132,7 @@ cheese_flash_set_property (GObject *object, GObject *parent; parent = g_value_get_object (value); if (object != NULL) - priv->parent = g_object_ref (parent); + priv->parent = GTK_WIDGET (g_object_ref (parent)); else priv->parent = NULL; }