pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/gtk3 gtk3: updated to 3.24.31



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b8f4e7b9af1c
branches:  trunk
changeset: 371692:b8f4e7b9af1c
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed Jan 12 11:09:07 2022 +0000

description:
gtk3: updated to 3.24.31

Overview of Changes in GTK+ 3.24.31, 20-12-2021
===============================================

* input:
 - Fix a crash with touch on GtkScale

* clipboard:
 - Avoid a double-free

* css:
 - Avoid a crash with radial gradients

* GtkFileChooser:
 - Don't leak search results

* GtkTextView:
 - Support css letterspacing

* Wayland:
 - Reset position when hiding popups
 - Ignore globals we did not bind ourselves
 - Avoid infinite loops when hiding surfaces
 - Avoid clipboard-related lockups

* X11:
 - Trap errors while doing XRANDR calls
 - Support touchpad gestures with XI 2.4

* win32:
 - Some OpenGL setup fixes
 - Fall back to GLES for OpenGL
 - Fix MinGW autotools build
 - Fix building on Windows 11
 - Support building with Visual Studio 2022
 - Improve DND across monitors
 - Rewrite keymap handling code

* macOS:
 - Accept NSPasteboardTypeFileURL drops
 - Build on macOS 12
 - Fix display on macOS 12
 - Fix keyboard layout notifications
 - Fix a crash
 - Improve performance on Big Sur

* Translation updates:
 Basque
 Brazilian Portuguese
 Chinese (China)
 Chinese (Taiwan)
 Croatian
 Czech
 Danish
 Dutch
 Finnish
 French
 Friulian
 Galician
 German
 Hungarian
 Icelandic
 Italian
 Kazakh
 Korean
 Latvian
 Occitan
 Persian
 Russian
 Serbian
 Spanish
 Swedish

diffstat:

 x11/gtk3/Makefile                                 |   5 ++---
 x11/gtk3/distinfo                                 |  10 +++++-----
 x11/gtk3/patches/patch-gtk_gtkfontchooserwidget.c |   8 ++++----
 3 files changed, 11 insertions(+), 12 deletions(-)

diffs (64 lines):

diff -r 3787ec3db3aa -r b8f4e7b9af1c x11/gtk3/Makefile
--- a/x11/gtk3/Makefile Wed Jan 12 11:08:33 2022 +0000
+++ b/x11/gtk3/Makefile Wed Jan 12 11:09:07 2022 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.168 2021/12/08 16:02:50 adam Exp $
+# $NetBSD: Makefile,v 1.169 2022/01/12 11:09:07 adam Exp $
 
-DISTNAME=      gtk+-3.24.30
+DISTNAME=      gtk+-3.24.31
 PKGNAME=       ${DISTNAME:S/gtk/gtk3/}
-PKGREVISION=   2
 CATEGORIES=    x11 gnome
 MASTER_SITES=  ${MASTER_SITE_GNOME:=sources/gtk+/${PKGVERSION_NOREV:R}/}
 EXTRACT_SUFX=  .tar.xz
diff -r 3787ec3db3aa -r b8f4e7b9af1c x11/gtk3/distinfo
--- a/x11/gtk3/distinfo Wed Jan 12 11:08:33 2022 +0000
+++ b/x11/gtk3/distinfo Wed Jan 12 11:09:07 2022 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.92 2021/10/26 11:33:52 nia Exp $
+$NetBSD: distinfo,v 1.93 2022/01/12 11:09:07 adam Exp $
 
-BLAKE2s (gtk+-3.24.30.tar.xz) = 8328518bef280db10e775fa636c4208c708194500206118b6a1cd51a24391c76
-SHA512 (gtk+-3.24.30.tar.xz) = 4164559f3e14501b9f9330a76535ebf5e26961d436f65e65ea609998cb120fcbcc5d9591453a64e1d414248499857288e5758274d03a7f75e9ae76cbf8c68ff9
-Size (gtk+-3.24.30.tar.xz) = 22407016 bytes
+BLAKE2s (gtk+-3.24.31.tar.xz) = 8951a4c3fed2aebfd2b5cb4f1911f692552578885f8da0e8f35ba7e4d99723bf
+SHA512 (gtk+-3.24.31.tar.xz) = e7f8e5003a919e297bd3e616acccbc5cc9bf9c9d41377c108c24db51817fcccec919abc12d05c0ed585d49526d52f0395a1c0f3ed9d9ef816bb0c4b2aa615f9b
+Size (gtk+-3.24.31.tar.xz) = 22449112 bytes
 SHA1 (patch-Makefile.in) = 8edcfe2ff492d90138a24b680fe39814c3848d80
 SHA1 (patch-config.h.in) = dc5f8741eed554f88c0b6834cadad95083e4dc8f
 SHA1 (patch-configure) = d531b33e52facf960058f1223b70db680da35300
@@ -12,5 +12,5 @@
 SHA1 (patch-gdk_x11_gdkwindow-x11.h) = c80f7c9d5a570817e54fd74fa903a53400dc6f64
 SHA1 (patch-gtk_a11y_gtkaccessibility.c) = 13232c85bd570f21ea03153dacde4ca98c7c76a8
 SHA1 (patch-gtk_fallback-c89.c) = eaf5ac8aace9eab673eed0e265d4cb2617bf1fcd
-SHA1 (patch-gtk_gtkfontchooserwidget.c) = 5ca98e5417865d8c60333c8c2b2ba757755ef547
+SHA1 (patch-gtk_gtkfontchooserwidget.c) = 0f4a47b7260e9227ed7e20613bbe435163afd149
 SHA1 (patch-gtk_gtklabel.c) = 8ec7e9df8d2169f15698ff6a29cf8254ca44ea61
diff -r 3787ec3db3aa -r b8f4e7b9af1c x11/gtk3/patches/patch-gtk_gtkfontchooserwidget.c
--- a/x11/gtk3/patches/patch-gtk_gtkfontchooserwidget.c Wed Jan 12 11:08:33 2022 +0000
+++ b/x11/gtk3/patches/patch-gtk_gtkfontchooserwidget.c Wed Jan 12 11:09:07 2022 +0000
@@ -1,4 +1,4 @@
-$NetBSD: patch-gtk_gtkfontchooserwidget.c,v 1.2 2018/10/30 17:49:37 leot Exp $
+$NetBSD: patch-gtk_gtkfontchooserwidget.c,v 1.3 2022/01/12 11:09:07 adam Exp $
 
 Correctly include freetype2 headers (<ft2build.h> and then macros
 should be used instead of directly including the headers).
@@ -7,9 +7,9 @@
 
  <https://gitlab.gnome.org/GNOME/gtk/issues/1432> 
 
---- gtk/gtkfontchooserwidget.c.orig    2018-07-18 11:04:31.000000000 +0000
+--- gtk/gtkfontchooserwidget.c.orig    2021-12-11 02:50:17.000000000 +0000
 +++ gtk/gtkfontchooserwidget.c
-@@ -58,8 +58,9 @@
+@@ -66,8 +66,9 @@
  #include <hb.h>
  #include <hb-ot.h>
  #include <hb-ft.h>
@@ -20,4 +20,4 @@
 +#include FT_MULTIPLE_MASTERS_H
  #include "language-names.h"
  #include "script-names.h"
- #endif
+ #elif defined (HAVE_FONT_FEATURES)



Home | Main Index | Thread Index | Old Index