git: e08f3f676129 - main - x11-toolkits/gtk40: update to 4.12.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 11 Sep 2023 22:03:50 UTC
The branch main has been updated by jbeich: URL: https://cgit.FreeBSD.org/ports/commit/?id=e08f3f67612984981877f6fbdaf019dc553d5107 commit e08f3f67612984981877f6fbdaf019dc553d5107 Author: Jan Beich <jbeich@FreeBSD.org> AuthorDate: 2023-08-25 13:18:10 +0000 Commit: Jan Beich <jbeich@FreeBSD.org> CommitDate: 2023-09-11 22:02:50 +0000 x11-toolkits/gtk40: update to 4.12.1 Changes: https://gitlab.gnome.org/GNOME/gtk/-/blob/4.12.1/NEWS Reported by: GitLab (notify releases) --- x11-toolkits/gtk40/Makefile | 4 +- x11-toolkits/gtk40/distinfo | 6 +-- .../patch-gtk_print_gtkprinteroptionprivate.h | 54 ---------------------- 3 files changed, 5 insertions(+), 59 deletions(-) diff --git a/x11-toolkits/gtk40/Makefile b/x11-toolkits/gtk40/Makefile index e5c9a4dc9850..6de9c92597e6 100644 --- a/x11-toolkits/gtk40/Makefile +++ b/x11-toolkits/gtk40/Makefile @@ -1,5 +1,5 @@ PORTNAME= gtk -PORTVERSION= 4.12.0 +PORTVERSION= 4.12.1 CATEGORIES= x11-toolkits MASTER_SITES= GNOME PKGNAMESUFFIX= 4 @@ -37,7 +37,7 @@ LDFLAGS+= -lexecinfo BINARY_ALIAS= python3=${PYTHON_CMD} -LIBVERSION= 1.1200.0 +LIBVERSION= 1.1200.1 PLIST_SUB+= LIBVERSION=${LIBVERSION} GLIB_SCHEMAS= org.gtk.Demo4.gschema.xml \ diff --git a/x11-toolkits/gtk40/distinfo b/x11-toolkits/gtk40/distinfo index 23be42d7c019..6f1f726fb009 100644 --- a/x11-toolkits/gtk40/distinfo +++ b/x11-toolkits/gtk40/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1691208086 -SHA256 (gnome/gtk-4.12.0.tar.xz) = a6d10829f405b1afc0b65e2a9642c04126a1d1b638d11c6d97426da4f84f1f6f -SIZE (gnome/gtk-4.12.0.tar.xz) = 16918992 +TIMESTAMP = 1692969490 +SHA256 (gnome/gtk-4.12.1.tar.xz) = b8b61d6cf94fac64bf3a0bfc7af137c9dd2f8360033fdeb0cfe9612b77a99a72 +SIZE (gnome/gtk-4.12.1.tar.xz) = 16924668 diff --git a/x11-toolkits/gtk40/files/patch-gtk_print_gtkprinteroptionprivate.h b/x11-toolkits/gtk40/files/patch-gtk_print_gtkprinteroptionprivate.h deleted file mode 100644 index faf24a404b5d..000000000000 --- a/x11-toolkits/gtk40/files/patch-gtk_print_gtkprinteroptionprivate.h +++ /dev/null @@ -1,54 +0,0 @@ -$ gtk4-demo -/usr/local/lib/gtk-4.0/4.0.0/printbackends/libprintbackend-file.so: Undefined symbol "gtk_printer_option_new" -Failed to load module: /usr/local/lib/gtk-4.0/4.0.0/printbackends/libprintbackend-file.so -/usr/local/lib/gtk-4.0/4.0.0/printbackends/libprintbackend-cups.so: Undefined symbol "gtk_printer_option_new" -Failed to load module: /usr/local/lib/gtk-4.0/4.0.0/printbackends/libprintbackend-cups.so -[...] - ---- gtk/print/gtkprinteroptionprivate.h.orig 2023-08-05 04:01:26 UTC -+++ gtk/print/gtkprinteroptionprivate.h -@@ -27,6 +27,7 @@ - #endif - - #include <glib-object.h> -+#include <gdk/gdk.h> - - G_BEGIN_DECLS - -@@ -89,26 +90,36 @@ GType gtk_printer_option_get_type (void) G_GNU - - 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); - -