diff options
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 35 |
1 files changed, 29 insertions, 6 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index fdf1fd9251..1c78a969f6 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1140,7 +1140,7 @@ application suites.") (define-public gtk (package (name "gtk") - (version "4.12.3") + (version "4.14.2") (source (origin (method url-fetch) @@ -1148,7 +1148,7 @@ application suites.") (version-major+minor version) "/" name "-" version ".tar.xz")) (sha256 - (base32 "128ahzsj016vz8brd8kplhfkxg2q7wy7kndibx2qfr68yrif530l")) + (base32 "0wp0w259rkwf6g8sk2b9jkms47vx5gp7mfs345grx9wq53plqq12")) (patches (search-patches "gtk4-respect-GUIX_GTK4_PATH.patch")) (modules '((guix build utils))))) @@ -1220,13 +1220,35 @@ application suites.") ;; This test, 'gtk:tools / validate', started failing for ;; unknown reasons after updating mesa to 23.3.1 and xorgproto ;; to 2023.2. - ((" 'validate',") "")) + ((" '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',") "")) (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]*'inscription-markup.ui',") "")) + ;; XXX: These failures appear specific to i686 – investigate them. + #$@(if (target-x86-32?) + #~((substitute* "testsuite/gsk/meson.build" + (("'empty-(fill|stroke)\\.node',") "") + (("'fill2?\\.node',") "") + (("'stroke\\.node',") "") + (("'fill-fractional-([a-z-]*)-nogl',") "") + (("\\[ 'path-special-cases' \\],") "") + (("\\[ '(path|curve)-special-cases' \\],") "") + (("\\[ 'path-private' \\],") "")) + (substitute* "testsuite/a11y/meson.build" + (("\\{ 'name': 'text(view)?' \\},") ""))) + #~()))) (add-before 'build 'set-cache (lambda _ (setenv "XDG_CACHE_HOME" (getcwd)))) @@ -1288,6 +1310,7 @@ application suites.") python-toml python-typogrify sassc ;for building themes + shaderc tzdata-for-tests vala xorg-server-for-tests)) @@ -1909,7 +1932,7 @@ tutorial.") (package (inherit gtkmm) (name "gtkmm") - (version "3.24.8") + (version "3.24.9") (source (origin (method url-fetch) @@ -1918,7 +1941,7 @@ tutorial.") (version-major+minor version) "/" name "-" version ".tar.xz")) (sha256 - (base32 "1i4ql0j6id6g34w5nbhd7vjak7l3s50lqgdjaj2ranrfj9j0r56j")))) + (base32 "1kj4mla3z9kxhdby5w88nl744xkmq6xchf79m1kfa72p0kjbzm9h")))) (propagated-inputs `(("atkmm-2.28" ,atkmm-2.28) ("cairomm-1.14" ,cairomm-1.14) |