guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: webkitgtk: Update to 2.42.5 [security fixes]


From: guix-commits
Subject: branch master updated: gnu: webkitgtk: Update to 2.42.5 [security fixes].
Date: Fri, 08 Mar 2024 04:36:03 -0500

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 906f380f7c gnu: webkitgtk: Update to 2.42.5 [security fixes].
906f380f7c is described below

commit 906f380f7cd0570e253bc7affc90077f62e98528
Author: Andre A. Gomes <andremegafone@gmail.com>
AuthorDate: Mon Mar 4 12:36:39 2024 +0200

    gnu: webkitgtk: Update to 2.42.5 [security fixes].
    
    Fixes CVE-2024-23222, CVE-2024-23206, CVE-2024-23213.
    
    * gnu/packages/webkit.scm (webkitgtk): Update to 2.42.5.
    [source]: Add snippet to fix build on some architectures.
    
    Co-Authored-by: Efraim Flashner <efraim@flashner.co.il>
    Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
    Change-Id: I6edbe89c0e15a237fab6d678bc656881d6628ffe
---
 gnu/packages/webkit.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm
index d359d01f98..bf24a65e83 100644
--- a/gnu/packages/webkit.scm
+++ b/gnu/packages/webkit.scm
@@ -127,13 +127,20 @@ engine that uses Wayland for graphics output.")
 (define-public webkitgtk
   (package
     (name "webkitgtk")
-    (version "2.42.4")
+    (version "2.42.5")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://www.webkitgtk.org/releases/";
                                   name "-" version ".tar.xz"))
               (sha256
-               (base32 "11pdcwmdj3i9aarrf7wsfvadi6jnkaf6zf7c5i2768x2plq8na2j"))
+               (base32 "0jg7c7z572afywwrnvdj3m5agaviv0vkqmzznnzzv30byb0phhmn"))
+              (snippet
+               #~(begin
+                   (use-modules (guix build utils))
+                   ;; https://bugs.webkit.org/show_bug.cgi?id=268739
+                   ;; Fix a FTBFS on i686, powerpc64le.
+                   (substitute* 
"Source/JavaScriptCore/llint/LowLevelInterpreter.cpp"
+                     (("UNUSED_VARIABLE\\(t[67]\\);") ""))))
               (patches (search-patches
                         "webkitgtk-adjust-bubblewrap-paths.patch"))))
     (build-system cmake-build-system)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]