Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gtk4 for openSUSE:Factory checked in at 2023-08-22 08:56:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gtk4 (Old) and /work/SRC/openSUSE:Factory/.gtk4.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gtk4" Tue Aug 22 08:56:03 2023 rev:66 rq:1105072 version:4.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/gtk4/gtk4.changes 2023-08-15 16:39:38.786839827 +0200 +++ /work/SRC/openSUSE:Factory/.gtk4.new.1766/gtk4.changes 2023-08-22 08:56:03.786549307 +0200 @@ -1,0 +2,6 @@ +Mon Aug 21 11:17:26 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Add 6af9dc86.patch: print: Revert "Start sorting apart includes" + change for gtkprinteroptionprivate.h. + +------------------------------------------------------------------- New: ---- 6af9dc86.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gtk4.spec ++++++ --- /var/tmp/diff_new_pack.1CK8Mo/_old 2023-08-22 08:56:04.570550796 +0200 +++ /var/tmp/diff_new_pack.1CK8Mo/_new 2023-08-22 08:56:04.578550812 +0200 @@ -46,6 +46,8 @@ # https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/4756 # PATCH-FIX-OPENSUSE 0001-Revert-Meson-Simplify-pkgconfig-file-generator.patch -- Revert "Meson: Simplify pkgconfig file generator" Patch0: 0001-Revert-Meson-Simplify-pkgconfig-file-generator.patch +# PATCH-FIX-UPSTREAM 6af9dc86.patch -- print: Revert "Start sorting apart includes" change for gtkprinteroptionprivate.h +Patch1: https://gitlab.gnome.org/GNOME/gtk/-/commit/6af9dc86.patch BuildRequires: cups-devel >= 2.0 # We do not support building against cups 2.3 betas ++++++ 6af9dc86.patch ++++++ >From 4d7277f72c8f4915f237e36982ffd7dfba524b15 Mon Sep 17 00:00:00 2001 From: Xi Ruoyao <xry...@xry111.site> Date: Mon, 7 Aug 2023 18:00:34 +0800 Subject: [PATCH] print: Revert "Start sorting apart includes" change for gtkprinteroptionprivate.h The print backends needs the functions in gtkprinteroptionprivate.h to be exported. Fixes #6003. --- gtk/print/gtkprinteroptionprivate.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gtk/print/gtkprinteroptionprivate.h b/gtk/print/gtkprinteroptionprivate.h index 82dd8739ba1..a7d8e8ad5b6 100644 --- a/gtk/print/gtkprinteroptionprivate.h +++ b/gtk/print/gtkprinteroptionprivate.h @@ -27,6 +27,7 @@ #endif #include <glib-object.h> +#include <gdk/gdk.h> G_BEGIN_DECLS @@ -87,28 +88,39 @@ struct _GtkPrinterOptionClass void (*_gtk_reserved4) (void); }; +GDK_AVAILABLE_IN_ALL GType gtk_printer_option_get_type (void) G_GNUC_CONST; +GDK_AVAILABLE_IN_ALL GtkPrinterOption *gtk_printer_option_new (const char *name, const char *display_text, GtkPrinterOptionType type); +GDK_AVAILABLE_IN_ALL void gtk_printer_option_set (GtkPrinterOption *option, const char *value); +GDK_AVAILABLE_IN_ALL void gtk_printer_option_set_has_conflict (GtkPrinterOption *option, gboolean has_conflict); +GDK_AVAILABLE_IN_ALL void gtk_printer_option_clear_has_conflict (GtkPrinterOption *option); +GDK_AVAILABLE_IN_ALL void gtk_printer_option_set_boolean (GtkPrinterOption *option, gboolean value); +GDK_AVAILABLE_IN_ALL void gtk_printer_option_allocate_choices (GtkPrinterOption *option, int num); +GDK_AVAILABLE_IN_ALL void gtk_printer_option_choices_from_array (GtkPrinterOption *option, int num_choices, const char **choices, const char **choices_display); +GDK_AVAILABLE_IN_ALL gboolean gtk_printer_option_has_choice (GtkPrinterOption *option, const char *choice); +GDK_AVAILABLE_IN_ALL void gtk_printer_option_set_activates_default (GtkPrinterOption *option, gboolean activates); +GDK_AVAILABLE_IN_ALL gboolean gtk_printer_option_get_activates_default (GtkPrinterOption *option); -- GitLab