guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: wpewebkit: Update to 2.34.3 [security fixes].


From: guix-commits
Subject: 03/03: gnu: wpewebkit: Update to 2.34.3 [security fixes].
Date: Sat, 29 Jan 2022 16:40:18 -0500 (EST)

lfam pushed a commit to branch master
in repository guix.

commit 07f45615c3600dd1405349a4f7c775394fbfd40d
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sun Jan 16 08:31:16 2022 +0100

    gnu: wpewebkit: Update to 2.34.3 [security fixes].
    
    This update fixes all the security issues fixed upstream between
    versions 2.30.5 and 2.34.3:
    
    https://webkitgtk.org/news.html
    
    * gnu/packages/webkit.scm (wpewebkit): Update to 2.34.3.
    [#:phases]: Add ‘patch-cmake’ phase to fix an error in the install 
directories
    of the documentation.
    [inputs]: Add lcms.
---
 gnu/packages/webkit.scm | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm
index d683d0aa5b..dfe780346e 100644
--- a/gnu/packages/webkit.scm
+++ b/gnu/packages/webkit.scm
@@ -124,7 +124,7 @@ engine that uses Wayland for graphics output.")
 (define-public wpewebkit
   (package
     (name "wpewebkit")
-    (version "2.30.5")
+    (version "2.34.3")
     (source
      (origin
        (method url-fetch)
@@ -132,7 +132,7 @@ engine that uses Wayland for graphics output.")
         (string-append "https://wpewebkit.org/releases/";
                        name "-" version ".tar.xz"))
        (sha256
-        (base32 "16imr0kmzhs7dz6jva9750xbsdz9v50playnagabajy30x7pymsb"))))
+        (base32 "1z20bza01ld4jvi0qx8xsl5y4czaniwpi8hxdjyirj1mrszy8pf3"))))
     (build-system cmake-build-system)
     (outputs '("out" "doc"))
     (arguments
@@ -162,6 +162,15 @@ engine that uses Wayland for graphics output.")
                                   "/xml/dtd/docbook/docbookx.dtd"))))
               (find-files "Source" "\\.sgml$"))
              #t))
+         (add-after 'unpack 'patch-cmake
+           (lambda _
+             (substitute* "Source/PlatformWPE.cmake"
+               
(("(Documentation/wpe(-webextensions)?-)\\$\\{WPE_API_VERSION\\}"
+                 all prefix)
+                (string-append prefix "${WPE_API_DOC_VERSION}"))
+               (("(html/wpe(-webextensions)?-)\\$\\{WPE_API_VERSION\\}"
+                 all prefix)
+                (string-append prefix "${WPE_API_DOC_VERSION}")))))
          (add-after 'install 'move-doc-files
            (lambda* (#:key outputs #:allow-other-keys)
              (let* ((out (assoc-ref outputs "out"))
@@ -194,6 +203,7 @@ engine that uses Wayland for graphics output.")
        ("gst-plugins-base" ,gst-plugins-base)
        ("harfbuzz" ,harfbuzz)
        ("icu" ,icu4c)
+       ("lcms" ,lcms)
        ("libepoxy" ,libepoxy)
        ("libgcrypt" ,libgcrypt)
        ("libjpeg" ,libjpeg-turbo)



reply via email to

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