unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Zheng Junjie <zhengjunjie@iscas.ac.cn>
To: 70395@debbugs.gnu.org
Subject: [bug#70395] [PATCH kde-team 15/63] gnu: Add kconfig-6.
Date: Mon, 15 Apr 2024 20:46:52 +0800	[thread overview]
Message-ID: <a8f8b837a57b62e0177acf09b8fca259caad1b26.1713184499.git.zhengjunjie@iscas.ac.cn> (raw)
In-Reply-To: <cover.1713184499.git.zhengjunjie@iscas.ac.cn>

* 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 f5448b91e8..768c6b8f00 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -640,10 +640,10 @@ (define-public kcolorpicker
 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
@@ -652,23 +652,31 @@ (define-public kconfig
                     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.
@@ -700,6 +708,38 @@ (define-public kconfig
                    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")
-- 
2.41.0





  parent reply	other threads:[~2024-04-15 14:28 UTC|newest]

Thread overview: 65+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-15 12:44 [bug#70395] [PATCH kde-team 00/63] some kde patch Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 01/63] gnu: extra-cmake-modules: Update to 6.1.0 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 02/63] gnu: Add kquickcharts-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 03/63] gnu: Add attica-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 04/63] gnu: Add kcodecs-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 05/63] gnu: Add kcoreaddons-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 06/63] gnu: Add kdbusaddons-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 07/63] gnu: Add kdnssd-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 08/63] gnu: Add kholidays-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 09/63] gnu: Add ki18n-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 10/63] gnu: Add kidletime-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 11/63] gnu: Add kitemviews-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 12/63] gnu: Add kguiaddons-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 13/63] gnu: Add kplotting-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 14/63] gnu: Add kwidgetsaddons-6 Zheng Junjie
2024-04-15 12:46 ` Zheng Junjie [this message]
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 16/63] gnu: Add kitemmodels-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 17/63] gnu: Add ksyntaxhighlighting-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 18/63] gnu: Add karchive-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 19/63] gnu: Add kcalendarcore-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 20/63] gnu: Add kcompletion-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 21/63] gnu: Add kpty-6 Zheng Junjie
2024-04-15 12:46 ` [bug#70395] [PATCH kde-team 22/63] gnu: Add kwindowsystem-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 23/63] gnu: Add networkmanager-qt-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 24/63] gnu: Add oxygen-icons-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 25/63] gnu: Add prison-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 26/63] gnu: Add solid-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 27/63] gnu: Add sonnet-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 28/63] gnu: Add threadweaver-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 29/63] gnu: Add kcolorscheme Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 30/63] gnu: Add kdoctools-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 31/63] gnu: Add kcontacts-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 32/63] gnu: Add kcrash-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 33/63] gnu: Add knotifications-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 34/63] gnu: Add kpackage-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 35/63] gnu: Add kunitconversion-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 36/63] gnu: Add syndication-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 37/63] gnu: polkit-qt: Update to 0.200.0 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 38/63] gnu: Add polkit-qt6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 39/63] gnu: Add kauth-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 40/63] gnu: Add kjobwidgets-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 41/63] gnu: qca: Update to 2.3.8 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 42/63] gnu: Add qca-qt6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 43/63] gnu: pulseaudio-qt: Built with qt6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 44/63] gnu: Add kglobalaccel-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 45/63] gnu: Add kconfigwidgets-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 46/63] gnu: Add kiconthemes-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 47/63] gnu: Add kservice-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 48/63] gnu: phonon: Remove unneed phase Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 49/63] gnu: phonon: Enable qt6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 50/63] gnu: Add kwallet-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 51/63] gnu: Add ktextwidgets-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 52/63] gnu: Add kxmlgui-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 53/63] gnu: qtbase: propagate libxkbcommon Zheng Junjie
2024-04-17 18:01   ` Maxim Cournoyer
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 54/63] gnu: Add kirigami-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 55/63] gnu: Add qqc2-desktop-style-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 56/63] gnu: Add modemmanager-qt-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 57/63] gnu: libavif: Update to 1.0.4 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 58/63] gnu: libraw: Update to 0.21.2 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 59/63] gnu: Add kimageformats-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 60/63] gnu: Add ksvg Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 61/63] gnu: Add kbookmarks-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 62/63] gnu: Add kdesu-6 Zheng Junjie
2024-04-15 12:47 ` [bug#70395] [PATCH kde-team 63/63] gnu: Add kded-6 Zheng Junjie

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a8f8b837a57b62e0177acf09b8fca259caad1b26.1713184499.git.zhengjunjie@iscas.ac.cn \
    --to=zhengjunjie@iscas.ac.cn \
    --cc=70395@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).