guix-commits
[Top][All Lists]
Advanced

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

42/458: gnu: kconfig: Update to 6.3.0.


From: guix-commits
Subject: 42/458: gnu: kconfig: Update to 6.3.0.
Date: Mon, 15 Jul 2024 07:59:52 -0400 (EDT)

z572 pushed a commit to branch kde-team
in repository guix.

commit 090dc465e4e4e306912836711f23f44fd1971438
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Sat Jul 6 00:18:31 2024 +0800

    gnu: kconfig: Update to 6.3.0.
    
    * gnu/packages/kde-frameworks.scm (kconfig): Update to 6.3.0.
    [build-system]: Switch qt-build-system.
    [arguments]: Set #:qtbase to qtbase; Stop replace check phase; Add 
check-setup
    phase.
    [inputs]: Remove qtbase-5 and qtdeclarative-5.
    [propagated-inputs]: Add qtdeclarative.
    [native-inputs]: Remove qttools-5 and xorg-server-for-tests; add qttools.
    
    Change-Id: I261f331083b1303387716d681de538e1b2943ef7
---
 gnu/packages/kde-frameworks.scm | 40 ++++++++++++++++++++++++----------------
 1 file changed, 24 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 787b5a03a6..01b077677f 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -593,7 +593,7 @@ which can be used to add custom colors to the popup menu.")
 (define-public kconfig
   (package
     (name "kconfig")
-    (version "5.114.0")
+    (version "6.3.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -602,23 +602,31 @@ which can be used to add custom colors to the popup 
menu.")
                     name "-" version ".tar.xz"))
               (sha256
                (base32
-                "0hghdh4p6cq9ckp4g5jdgd8w47pdsxxvzimrdfjrs71lmy8ydiy2"))))
-    (build-system cmake-build-system)
+                "0ybr5l0b9wvzkh3546s3dnv2di0vf3rcf0f6jzbyqlaigfprm04d"))))
+    (build-system qt-build-system)
     (native-inputs
-     (list dbus extra-cmake-modules inetutils qttools-5
-           xorg-server-for-tests))
-    (inputs
-     (list qtbase-5 qtdeclarative-5))
+     (list dbus extra-cmake-modules inetutils qttools))
+    (propagated-inputs (list qtdeclarative))
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda* (#:key tests? #:allow-other-keys)
-             (when tests? ;; kconfigcore-kconfigtest fails inconsistently!!
-               (setenv "HOME" (getcwd))
-               (setenv "QT_QPA_PLATFORM" "offscreen")
-               (invoke "ctest" "-E" "(kconfigcore-kconfigtest|\
-kconfiggui-kstandardshortcutwatchertest)")))))))
+     (list
+      #:qtbase qtbase
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'check 'check-setup
+            (lambda* (#:key tests? #:allow-other-keys)
+              (when tests?
+                (with-output-to-file "autotests/BLACKLIST"
+                  (lambda _
+                    (for-each
+                     (lambda (name)
+                       (display (string-append "[" name "]\n*\n")))
+                     (list "testNotifyIllegalObjectPath"
+                           "testLocalDeletion"
+                           "testNotify"
+                           "testSignal"
+                           "testDataUpdated"))))
+                (setenv "HOME" (getcwd))
+                (setenv "QT_QPA_PLATFORM" "offscreen")))))))
     (home-page "https://community.kde.org/Frameworks";)
     (synopsis "Kconfiguration settings framework for Qt")
     (description "KConfig provides an advanced configuration system.



reply via email to

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