[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/10: gnu: webkitgtk: Update to 2.44.1.
From: |
guix-commits |
Subject: |
04/10: gnu: webkitgtk: Update to 2.44.1. |
Date: |
Mon, 3 Jun 2024 15:04:24 -0400 (EDT) |
lilyp pushed a commit to branch gnome-team
in repository guix.
commit 5105b07d479f788a93d125349769b0c2ffc4c6db
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Fri Apr 19 20:59:45 2024 +0200
gnu: webkitgtk: Update to 2.44.1.
* gnu/packages/webkit.scm (webkitgtk): Update to 2.44.1.
[#:configure-flags]: Add “-DUSE_LIBBACKTRACE=OFF”.
[#:phases]: Refer to $prefix/share/doc
instead of the now unused $prefix/share/gtk-doc.
(webkitgtk-for-gtk3)[#:configure-flags]: Add 0“-DUSE_GTK4=OFF”.
Retain “-DENABLE_INTROSPECTION=ON”.
---
gnu/packages/webkit.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm
index bf24a65e83..2e10093a68 100644
--- a/gnu/packages/webkit.scm
+++ b/gnu/packages/webkit.scm
@@ -127,13 +127,13 @@ engine that uses Wayland for graphics output.")
(define-public webkitgtk
(package
(name "webkitgtk")
- (version "2.42.5")
+ (version "2.44.1")
(source (origin
(method url-fetch)
(uri (string-append "https://www.webkitgtk.org/releases/"
name "-" version ".tar.xz"))
(sha256
- (base32 "0jg7c7z572afywwrnvdj3m5agaviv0vkqmzznnzzv30byb0phhmn"))
+ (base32 "0qamkk9db8m6x4qv5y10lihc18yzgrgbn6ldqw00ckghn1ci8ns2"))
(snippet
#~(begin
(use-modules (guix build utils))
@@ -162,6 +162,7 @@ engine that uses Wayland for graphics output.")
;; tool to validate the good operation of
;; webkitgtk.
"-DENABLE_MINIBROWSER=ON"
+ "-DUSE_LIBBACKTRACE=OFF" ; XXX: circular dependency
;; The default lib installation prefix is lib64.
(string-append "-DLIB_INSTALL_DIR=" #$output "/lib")
;; XXX: WebKitGTK makes use of elogind's systemd-compatible
@@ -222,8 +223,8 @@ engine that uses Wayland for graphics output.")
(lambda* (#:key outputs #:allow-other-keys)
(let ((doc (assoc-ref outputs "doc")))
(mkdir-p (string-append doc "/share"))
- (rename-file (string-append #$output "/share/gtk-doc")
- (string-append doc "/share/gtk-doc"))))))))
+ (rename-file (string-append #$output "/share/doc")
+ (string-append doc "/share/doc"))))))))
(native-inputs
(list bison
gettext-minimal
@@ -295,9 +296,8 @@ propagated by default) such as @code{gst-plugins-good} and
(arguments
(substitute-keyword-arguments (package-arguments webkitgtk)
((#:configure-flags flags)
- #~(cons* "-DENABLE_GTKDOC=ON"
- (delete "-DENABLE_INTROSPECTION=ON"
- (delete "-DUSE_GTK4=ON" #$flags))))))
+ #~(cons* "-DUSE_GTK4=OFF"
+ (delete "-DUSE_GTK4=ON" #$flags)))))
(propagated-inputs
(modify-inputs (package-propagated-inputs webkitgtk)
(replace "gtk" gtk+)))
- branch gnome-team created (now ad7505d16f), guix-commits, 2024/06/03
- 02/10: gnu: vala: Update to 0.56.16., guix-commits, 2024/06/03
- 05/10: gnu: wpewebkit: Update to 2.44.1., guix-commits, 2024/06/03
- 10/10: gnu: gtk: Fix build on i686-linux., guix-commits, 2024/06/03
- 09/10: gnu: gnome-builder: Fix build., guix-commits, 2024/06/03
- 08/10: gnu: qemu: Disable more tests., guix-commits, 2024/06/03
- 06/10: gnu: gst-plugins-bad: Ignore elements_netsim test., guix-commits, 2024/06/03
- 03/10: gnu: gtk: Update to 4.14.2., guix-commits, 2024/06/03
- 04/10: gnu: webkitgtk: Update to 2.44.1.,
guix-commits <=
- 01/10: gnu: gtkmm@3: Update to 3.24.9., guix-commits, 2024/06/03
- 07/10: gnu: qtbase: Ignore tst_qsqlthread., guix-commits, 2024/06/03