[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/347: gnu: Add kconfig-6.
From: |
guix-commits |
Subject: |
15/347: gnu: Add kconfig-6. |
Date: |
Fri, 28 Jun 2024 09:57:14 -0400 (EDT) |
z572 pushed a commit to branch kde-team
in repository guix.
commit 9e827a6c935a543e95bb8e586941a7dbfa9abc1f
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Wed Mar 6 18:35:39 2024 +0800
gnu: Add kconfig-6.
* gnu/packages/kde-frameworks.scm (kconfig-6): New variable.
(kconfig): Inherit above.
Change-Id: Ib806189b63ce5f9c47cdf44a5fec810f9e99f347
---
gnu/packages/kde-frameworks.scm | 74 +++++++++++++++++++++++++++++++----------
1 file changed, 57 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index ed611885aa..0e6137b690 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -667,10 +667,10 @@ menu which lets you select a color. The popup features a
color dialog button
which can be used to add custom colors to the popup menu.")
(license license:lgpl3+)))
-(define-public kconfig
+(define-public kconfig-6
(package
(name "kconfig")
- (version "5.114.0")
+ (version "6.1.0")
(source (origin
(method url-fetch)
(uri (string-append
@@ -679,23 +679,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)
+ "1xyadln77aa4xn9qh85f5hsvyaf2nm292qiz1ykn0lmcpqjmznig"))))
+ (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.
@@ -727,6 +735,38 @@ propagate their changes to their respective configuration
files.")
license:lgpl3+ license:gpl1 ; licende:mit-olif
license:bsd-2 license:bsd-3))))
+(define-public kconfig
+ (package
+ (inherit kconfig-6)
+ (name "kconfig")
+ (version "5.114.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://kde/stable/frameworks/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "0hghdh4p6cq9ckp4g5jdgd8w47pdsxxvzimrdfjrs71lmy8ydiy2"))))
+ (build-system cmake-build-system)
+ (native-inputs
+ (list dbus extra-cmake-modules inetutils qttools-5
+ xorg-server-for-tests))
+ (inputs
+ (list qtbase-5 qtdeclarative-5))
+ (propagated-inputs '())
+ (arguments
+ (list #: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)")))))))))
+
(define-public kcoreaddons-6
(package
(name "kcoreaddons")
- 07/347: gnu: Add kdnssd-6., (continued)
- 07/347: gnu: Add kdnssd-6., guix-commits, 2024/06/28
- 09/347: gnu: Add ki18n-6., guix-commits, 2024/06/28
- 10/347: gnu: Add kidletime-6., guix-commits, 2024/06/28
- 12/347: gnu: Add kguiaddons-6., guix-commits, 2024/06/28
- 11/347: gnu: Add kitemviews-6., guix-commits, 2024/06/28
- 14/347: gnu: Add kwidgetsaddons-6., guix-commits, 2024/06/28
- 13/347: gnu: Add kplotting-6., guix-commits, 2024/06/28
- 17/347: gnu: Add ksyntaxhighlighting-6., guix-commits, 2024/06/28
- 20/347: gnu: Add kcompletion-6., guix-commits, 2024/06/28
- 16/347: gnu: Add kitemmodels-6., guix-commits, 2024/06/28
- 15/347: gnu: Add kconfig-6.,
guix-commits <=
- 19/347: gnu: Add kcalendarcore-6., guix-commits, 2024/06/28
- 23/347: gnu: Add networkmanager-qt-6., guix-commits, 2024/06/28
- 22/347: gnu: Add kwindowsystem-6., guix-commits, 2024/06/28
- 18/347: gnu: Add karchive-6., guix-commits, 2024/06/28
- 21/347: gnu: Add kpty-6., guix-commits, 2024/06/28
- 24/347: gnu: Add oxygen-icons-6., guix-commits, 2024/06/28
- 32/347: gnu: Add kcrash-6., guix-commits, 2024/06/28
- 35/347: gnu: Add kunitconversion-6., guix-commits, 2024/06/28
- 36/347: gnu: Add syndication-6., guix-commits, 2024/06/28
- 37/347: gnu: polkit-qt: Update to 0.200.0., guix-commits, 2024/06/28