[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
73/81: gnu: gtk: Update to 4.16.1.
From: |
guix-commits |
Subject: |
73/81: gnu: gtk: Update to 4.16.1. |
Date: |
Sun, 27 Oct 2024 04:49:16 -0400 (EDT) |
lilyp pushed a commit to branch gnome-team
in repository guix.
commit accb236de4bbb30201c166f3beace06f109bb56d
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sun Sep 15 00:33:55 2024 +0200
gnu: gtk: Update to 4.16.1.
* gnu/packages/gtk.scm (gtk): Update to 4.16.1.
[arguments]<#:configure-flags>: Replace “-Dgtk_doc=…” with
“-Ddocumentation=true”.
<#:test-options>: Add “--no-suite=needs-udmabuf”.
<#:phases>: Adjust patches for failing tests.
[inputs]: Replace wayland-protocols with wayland-protocols-next.
---
gnu/packages/gtk.scm | 34 ++++++++--------------------------
1 file changed, 8 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 27b5e5eefa..23bb953f6f 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1144,7 +1144,7 @@ application suites.")
(define-public gtk
(package
(name "gtk")
- (version "4.14.5")
+ (version "4.16.1")
(source
(origin
(method url-fetch)
@@ -1152,7 +1152,7 @@ application suites.")
(version-major+minor version) "/"
name "-" version ".tar.xz"))
(sha256
- (base32 "0kg286za53qhl6ngw4rrvbpm3q04g30qf2q77sck7c86y2wz4ism"))
+ (base32 "0p11k5afy3g9d6p402zrn9izkypwzlb51y9qanibzyc1sjmiwslj"))
(patches
(search-patches "gtk4-respect-GUIX_GTK4_PATH.patch"))
(modules '((guix build utils)))))
@@ -1169,11 +1169,7 @@ application suites.")
"-Dcloudproviders=enabled" ;for cloud-providers support
"-Dtracker=enabled" ;for filechooser search support
"-Dcolord=enabled" ;for color printing support
- #$@(if (%current-target-system)
- ;; If true, gtkdoc-scangobj will try to execute a
- ;; cross-compiled binary.
- '("-Dgtk_doc=false")
- '("-Dgtk_doc=true"))
+ "-Ddocumentation=true"
"-Dman-pages=true")
#:test-options #~(list "--setup=x11" ;defaults to wayland
;; Use the same test options as upstream uses for
@@ -1183,6 +1179,7 @@ application suites.")
"--no-suite=flaky"
"--no-suite=headless" ; requires mutter…
"--no-suite=gsk-compare-broadway"
+ "--no-suite=needs-udmabuf"
;; These seem to fail on aarch64, and Debian has
;; also disabled these, see:
;;
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1050075
@@ -1222,29 +1219,14 @@ application suites.")
(("[ \t]*'empty-text.node',") "")
(("[ \t]*'testswitch.node',") "")
(("[ \t]*'widgetfactory.node',") "")
- ;; The unaligned-offscreen test fails for unknown reasons, also
- ;; on different distributions (see:
- ;; https://gitlab.gnome.org/GNOME/gtk/-/issues/4889).
- ((" 'unaligned-offscreen',") "")
;; This test, 'gtk:tools / validate', started failing for
;; unknown reasons after updating mesa to 23.3.1 and xorgproto
;; to 2023.2.
((" 'validate',") "")
- ;; XXX: These test failures come newly from 4.14.
- ;; Not all of them are reported upstream yet, but the text
nodes
- ;; are mentioned in
- ;; <https://gitlab.gnome.org/GNOME/gtk/-/issues/6647>.
- (("'glyph-subpixel-position',") "")
- (("'subpixel-positioning',") "")
- (("'subpixel-positioning-hidpi-nogl-nocairo',") "")
- (("'text.*\\.node',") "")
- (("'text-mixed-color-colrv1',") ""))
+ ;; XXX: Figure out why this fails and report upstream.
+ ((".*'memorytexture',.*") ""))
(substitute* "testsuite/reftests/meson.build"
- (("[ \t]*'label-wrap-justify.ui',") "")
- ;; The inscription-markup.ui fails due to /etc/machine-id
- ;; related warnings (see:
- ;; https://gitlab.gnome.org/GNOME/gtk/-/issues/5169).
- (("[ \t]*'inscription-markup.ui',") ""))
+ (("[ \t]*'label-wrap-justify.ui',") ""))
;; These tests fail on an Apple M1 (aarch64) with the following
errors:
;; - MESA: error: ZINK: failed to choose pdev
;; - libEGL warning: egl: failed to create dri2 screen
@@ -1394,7 +1376,7 @@ application suites.")
vulkan-headers
vulkan-loader ;for vulkan graphics API support
wayland ;for wayland display-backend
- wayland-protocols))
+ wayland-protocols-next))
(native-search-paths
(list
(search-path-specification
- 50/81: gnu: Ungraft ibus-minimal., (continued)
- 50/81: gnu: Ungraft ibus-minimal., guix-commits, 2024/10/27
- 53/81: gnu: gst-plugins-good: Update to 1.24.6., guix-commits, 2024/10/27
- 54/81: gnu: gst-plugins-bad: Update to 1.24.6., guix-commits, 2024/10/27
- 63/81: gnu: gnome-control-center: Update to 46.3., guix-commits, 2024/10/27
- 56/81: gnu: gst-libav: Update to 1.24.6., guix-commits, 2024/10/27
- 67/81: gnu: xdg-desktop-portal-gnome: Update to 46.2., guix-commits, 2024/10/27
- 69/81: gnu: mutter: Update to 46.4., guix-commits, 2024/10/27
- 68/81: gnu: sysprof: Propagate libdex., guix-commits, 2024/10/27
- 74/81: gnu: libadwaita: Update to 1.6.0., guix-commits, 2024/10/27
- 65/81: gnu: Add munit., guix-commits, 2024/10/27
- 73/81: gnu: gtk: Update to 4.16.1.,
guix-commits <=
- 76/81: gnu: gobject-introspection: Update to 1.82.0., guix-commits, 2024/10/27
- 78/81: gnu: cairo: Update to 1.18.2., guix-commits, 2024/10/27
- 41/81: gnu: pango: Update to 1.54.0., guix-commits, 2024/10/27
- 40/81: gnu: gsettings-desktop-schemas: Update to 46.0., guix-commits, 2024/10/27
- 37/81: gnu: evolution-data-server: Update to 3.52.3., guix-commits, 2024/10/27
- 39/81: gnu: gnome-mahjongg: Update to 3.40.1., guix-commits, 2024/10/27
- 44/81: gnu: at-spi2-core: Update to 2.52.0., guix-commits, 2024/10/27
- 45/81: gnu: atkmm: Update to 2.36.3., guix-commits, 2024/10/27
- 49/81: gnu: gtk-doc: Update to 1.34.0., guix-commits, 2024/10/27
- 48/81: gnu: gtk+: Update to 3.24.41., guix-commits, 2024/10/27