guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: fcitx5-chinese-addons: Replace the dependenc


From: guix-commits
Subject: branch master updated: gnu: fcitx5-chinese-addons: Replace the dependency on QtWebKit with QtWebEngine.
Date: Sat, 29 Jan 2022 18:01:37 -0500

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

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new db17f8b502 gnu: fcitx5-chinese-addons: Replace the dependency on 
QtWebKit with QtWebEngine.
db17f8b502 is described below

commit db17f8b5023122fdc37ab7de5b927303cc4209f9
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Sat Jan 29 17:58:21 2022 -0500

    gnu: fcitx5-chinese-addons: Replace the dependency on QtWebKit with 
QtWebEngine.
    
    See <https://issues.guix.gnu.org/53289> for more information about this 
change.
    
    * gnu/packages/fcitx5.scm (fcitx5-chinese-addons)[inputs]: Remove qtwebkit. 
Add
    qtdeclarative, qtwebchannel, and qtwebengine.
    [arguments]: Pass "-DUSE_WEBKIT=off" to #:configure-flags.
---
 gnu/packages/fcitx5.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/fcitx5.scm b/gnu/packages/fcitx5.scm
index 92fc0ea171..66b07b4a51 100644
--- a/gnu/packages/fcitx5.scm
+++ b/gnu/packages/fcitx5.scm
@@ -284,7 +284,9 @@ for Qt based application.")
         (base32 "11l76gpcfm0x1f6x5m9s37q7ffa7xcsdydlzjdz2s6kk45fvvq89"))))
     (build-system cmake-build-system)
     (arguments
-     `(#:phases
+     `(#:configure-flags
+       '("-DUSE_WEBKIT=off")
+       #:phases
        (modify-phases %standard-phases
          (add-before 'configure 'split-outputs
            ;; Build with GUI supports requires Qt and increase package closure
@@ -305,7 +307,9 @@ for Qt based application.")
        ("opencc" ,opencc)
        ("qtbase" ,qtbase-5)
        ("fcitx5-qt" ,fcitx5-qt)
-       ("qtwebkit" ,qtwebkit)))
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtwebchannel" ,qtwebchannel)
+       ("qtwebengine" ,qtwebengine)))
     (native-inputs
      (list extra-cmake-modules pkg-config))
     (outputs '("out" "gui"))



reply via email to

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