pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/x11/gtk4
Module Name: pkgsrc
Committed By: adam
Date: Wed Oct 23 07:27:28 UTC 2024
Modified Files:
pkgsrc/x11/gtk4: Makefile PLIST distinfo
Log Message:
gtk4: updated to 4.16.3
Overview of Changes in 4.16.3, 04-10-2024
=========================================
* GtkScrolledWindow
- Fix criticals in size allocation code
* GtkFileChooser
- Fix a crash in the portal code
* GtkPicture
- Avoid unnecessary resizes
* GtkVideo
- Make dmabufs work without GL
* Accessibility:
- Always realized non-widget accessibles
* Wayland:
- Improve settings portal handling
- Improve fallback for cursor themes
- Sync default values for settings with schema defaults
* Translation updates:
Brazilian Portuguese
Galician
Swedish
Overview of Changes in 4.16.2, 25-09-2024
=========================================
* GtkLabel:
- Fix centered text in RTL
* Gsk:
- Speed up some Vulkan operations
- Improve startup speed by avoiding initialization
of GL and Vulkan in most cases
- Reduce critials at startup to warnings
- Fix a crash on startup with some Vulkan drivers
- Fix a big texture leak in NGL
* Gdk:
- Speed up memory format conversions
* Wayland:
- Be more careful with mimetypes during DND or copy-paste
* Tools:
- builder-tool: Improve conversion of boxes
* Translation updates:
Brazilian Portuguese
Bulgarian
Catalan
Chinese (China)
Georgian
German
Hebrew
Indonesian
Persian
Polish
Portuguese
Slovenian
Spanish
Turkish
Ukrainian
Overview of Changes in 4.16.1, 16-09-2024
=========================================
* GtkFileChooser:
- Plug a memory leak
* GtkCalendar:
- Avoid ending up with invalid dates
* Printing:
- Fix initial printer selection in the print dialog
* Gsk:
- Fix shadows for opaque textures
- Fix a crash in a corner case
* Css:
- Make relative paths work again in theme files
* Accessibility:
- Fix detection of the Flatpak portal
* MacOS:
- Fix keyboard input in popovers
- Keep DND icons above regular windows
- Ignore events from DND icons
* Translation updates
Basque
British English
Bulgarian
Czech
Danish
Georgian
Hungarian
Lithuanian
Portuguese
Spanish
Swedish
Overview of Changes in 4.16.0, 06-09-2024
=========================================
Note: This release changes the default GSK renderer to be Vulkan,
on Wayland. Other platforms still use ngl. The intent of this change
is to use the best available platform APIs. You can still override
the renderer choice using the GSK_RENDERER environment variable.
We believe that most of the problems reported with the new renderers
during the 4.13 and 4.15 development cycles have been addressed by now.
But the new renderers and dmabuf support are using graphics drivers
in different ways than the old gl renderer, and trigger new driver bugs.
Therefore, it is recommended to use the latest mesa release (24.2)
with the new renderers.
* GtkScale:
- Fix positioning of scale values
* GtkEmojiChooser:
- Make Control-clicks work for the recent section
* GtkPopover:
- Make sure focus lands on the right widget when cascading
* GtkSpinButton:
- Disable Emoji input for numeric spin buttons
* GtkSingleSelection:
- Implement unselect_all
* Accssibility:
- Fix roles for radio buttons
- Check if ATs are listening before exporting trees
- Add a check for sandboxed accessibility bus
- Fix handling of the error message relation
- Turn criticals into debug messages
- Set expanded states properly in menus
* CSS:
- Fix a few issues on bigendian systems
- Avoid a crash with relative colors
* GSK:
- Use the right GL context when exporting textures
- Don't let colors influence depth decisions
- Allow uploading of mipmap levels when tiling textures
* GDK:
- Update keysyms from libX11 1.8.10
- Implement cpu-side mipmapping
- Use a thread pool for color conversions and mipmapping
* Vulkan:
- Fix drag surface offsets
* Wayland:
- Fix a crash
- Associate EGL windows with context later
* X11:
- Fix initial EGL context creation
- Fix a problem with GL context creation
* Broadway:
- Implement compute_size and request_layout
* MacOS:
- Set transparent backgroiund for toplevel windows
* Windows:
- Improve debug output
- Detect Mesas d3d12 driver and request GDI compat
* Demos:
- Set window icons in demos
- Add a 64k x 64k image to the image scaling demo
* Translation updates
Belarusian
Brazilian Portuguese
Catalan
Czech
Galician
German
Hebrew
Indonesian
Korean
Lithuanian
Persian
Polish
Portuguese
Slovenian
Spanish
Turkish
Ukrainian
To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 pkgsrc/x11/gtk4/Makefile
cvs rdiff -u -r1.18 -r1.19 pkgsrc/x11/gtk4/PLIST
cvs rdiff -u -r1.22 -r1.23 pkgsrc/x11/gtk4/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/x11/gtk4/Makefile
diff -u pkgsrc/x11/gtk4/Makefile:1.48 pkgsrc/x11/gtk4/Makefile:1.49
--- pkgsrc/x11/gtk4/Makefile:1.48 Mon Jun 17 07:18:46 2024
+++ pkgsrc/x11/gtk4/Makefile Wed Oct 23 07:27:28 2024
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.48 2024/06/17 07:18:46 wiz Exp $
+# $NetBSD: Makefile,v 1.49 2024/10/23 07:27:28 adam Exp $
-DISTNAME= gtk-4.14.4
+DISTNAME= gtk-4.16.3
PKGNAME= ${DISTNAME:S/gtk/gtk4/}
-PKGREVISION= 2
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gtk/${PKGVERSION_NOREV:R}/}
EXTRACT_SUFX= .tar.xz
@@ -21,8 +20,6 @@ TOOL_DEPENDS+= ${PYPKGPREFIX}-gobject3-[
# http://gnats.netbsd.org/57792
RELRO_SUPPORTED= partial
-PYTHON_VERSIONS_INCOMPATIBLE= 27
-
.include "options.mk"
USE_TOOLS+= gdbus-codegen msgfmt msgmerge pkg-config xgettext
Index: pkgsrc/x11/gtk4/PLIST
diff -u pkgsrc/x11/gtk4/PLIST:1.18 pkgsrc/x11/gtk4/PLIST:1.19
--- pkgsrc/x11/gtk4/PLIST:1.18 Wed May 8 18:44:11 2024
+++ pkgsrc/x11/gtk4/PLIST Wed Oct 23 07:27:28 2024
@@ -1,9 +1,10 @@
-@comment $NetBSD: PLIST,v 1.18 2024/05/08 18:44:11 adam Exp $
+@comment $NetBSD: PLIST,v 1.19 2024/10/23 07:27:28 adam Exp $
bin/gtk4-builder-tool
bin/gtk4-demo
bin/gtk4-demo-application
bin/gtk4-encode-symbolic-svg
bin/gtk4-icon-browser
+bin/gtk4-image-tool
bin/gtk4-launch
bin/gtk4-node-editor
bin/gtk4-path-tool
@@ -17,7 +18,9 @@ include/gtk-4.0/gdk/gdk.h
include/gtk-4.0/gdk/gdkapplaunchcontext.h
include/gtk-4.0/gdk/gdkcairo.h
include/gtk-4.0/gdk/gdkcairocontext.h
+include/gtk-4.0/gdk/gdkcicpparams.h
include/gtk-4.0/gdk/gdkclipboard.h
+include/gtk-4.0/gdk/gdkcolorstate.h
include/gtk-4.0/gdk/gdkconfig.h
include/gtk-4.0/gdk/gdkcontentdeserializer.h
include/gtk-4.0/gdk/gdkcontentformats.h
@@ -49,6 +52,7 @@ include/gtk-4.0/gdk/gdkgltexturebuilder.
include/gtk-4.0/gdk/gdkkeys.h
include/gtk-4.0/gdk/gdkkeysyms.h
include/gtk-4.0/gdk/gdkmemorytexture.h
+include/gtk-4.0/gdk/gdkmemorytexturebuilder.h
include/gtk-4.0/gdk/gdkmonitor.h
include/gtk-4.0/gdk/gdkpaintable.h
include/gtk-4.0/gdk/gdkpango.h
@@ -408,7 +412,7 @@ ${PLIST.cups}lib/gtk-4.0/4.0.0/printback
lib/gtk-4.0/4.0.0/printbackends/libprintbackend-file.so
lib/libgtk-4.so
lib/libgtk-4.so.1
-lib/libgtk-4.so.1.1400.4
+lib/libgtk-4.so.1.1600.3
lib/pkgconfig/gtk4-atspi.pc
${PLIST.quartz}lib/pkgconfig/gtk4-macos.pc
lib/pkgconfig/gtk4-unix-print.pc
Index: pkgsrc/x11/gtk4/distinfo
diff -u pkgsrc/x11/gtk4/distinfo:1.22 pkgsrc/x11/gtk4/distinfo:1.23
--- pkgsrc/x11/gtk4/distinfo:1.22 Wed May 8 18:44:11 2024
+++ pkgsrc/x11/gtk4/distinfo Wed Oct 23 07:27:28 2024
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.22 2024/05/08 18:44:11 adam Exp $
+$NetBSD: distinfo,v 1.23 2024/10/23 07:27:28 adam Exp $
-BLAKE2s (gtk-4.14.4.tar.xz) = 810d1ef5e98f03bd46767a6509a15386d6f9dd3d7b27ea58ab7b0f03d4d56fd4
-SHA512 (gtk-4.14.4.tar.xz) = 33a983f4ebac9088eaf9d3794a171d1619632bbcb27d9f46d894305dc15f83615a18443598b3c62a553b9596438b58226560ba17c41e539c76c3ee8a2b62c651
-Size (gtk-4.14.4.tar.xz) = 18306548 bytes
+BLAKE2s (gtk-4.16.3.tar.xz) = c23e78e791aabcf5582d0289847601734667c54b99e10a8c139b63ec33ece5fe
+SHA512 (gtk-4.16.3.tar.xz) = 7a6f4c48ea57c7cd1946bd33c9fdacfbb4a5ed9c02034f3cd483099539d6bcd5448144fe13f66815cdd51a693ccb317872accf1b150730404fb2d618222a78ca
+Size (gtk-4.16.3.tar.xz) = 18638900 bytes
SHA1 (patch-meson.build) = a9db17787c70631896315fb2c825e62977cfbb9b
Home |
Main Index |
Thread Index |
Old Index