guix-commits
[Top][All Lists]
Advanced

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

61/347: gnu: Add kdesu-6.


From: guix-commits
Subject: 61/347: gnu: Add kdesu-6.
Date: Fri, 28 Jun 2024 09:57:50 -0400 (EDT)

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

commit 5b923d11eac1fe83ec48451a6b6ceb5f3a1dc57f
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Sun Apr 14 21:01:18 2024 +0800

    gnu: Add kdesu-6.
    
    * gnu/packages/kde-frameworks.scm (kdesu-6): New variable.
    (kdesu): Inherit above.
    
    Change-Id: I74f948875022b71bcdc54aa31ca4613e24ebfdff
---
 gnu/packages/kde-frameworks.scm | 38 ++++++++++++++++++++++++++++++++------
 1 file changed, 32 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index e6aeb3a612..d1d64a463c 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -3634,10 +3634,10 @@ to display the widgets provided by various KDE 
frameworks, as well as a utility
 ini-style description files.")
     (license license:lgpl2.1+)))
 
-(define-public kdesu
+(define-public kdesu-6
   (package
     (name "kdesu")
-    (version "5.114.0")
+    (version "6.1.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -3646,14 +3646,17 @@ ini-style description files.")
                     name "-" version ".tar.xz"))
               (sha256
                (base32
-                "14dcf32izn4lxr8vx372rfznflc1rcxwanx06phkd8mx9zyg4jxr"))))
-    (build-system cmake-build-system)
+                "0zl2p9319r8q85p3j64w7p7nmjh53z6fha8kkgf3fdfdikh9g8x6"))))
+    (build-system qt-build-system)
     (propagated-inputs
-     (list kpty))
+     (list kpty-6))
     (native-inputs
      (list extra-cmake-modules))
     (inputs
-     (list kconfig kcoreaddons ki18n kservice qtbase-5))
+     (list kconfig-6 kcoreaddons-6 ki18n-6 kservice-6))
+    (arguments (list
+                #:tests? #f ;; FIXME: kdesutest test fail.
+                #:qtbase qtbase))
     (home-page "https://community.kde.org/Frameworks";)
     (synopsis "User interface for running shell commands with root privileges")
     (description "KDESU provides functionality for building GUI front ends for
@@ -3661,6 +3664,29 @@ ini-style description files.")
 with su and ssh respectively.")
     (license license:lgpl2.1+)))
 
+(define-public kdesu
+  (package
+    (inherit kdesu-6)
+    (name "kdesu")
+    (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
+                "14dcf32izn4lxr8vx372rfznflc1rcxwanx06phkd8mx9zyg4jxr"))))
+    (build-system cmake-build-system)
+    (propagated-inputs
+     (list kpty))
+    (native-inputs
+     (list extra-cmake-modules))
+    (inputs
+     (list kconfig kcoreaddons ki18n kservice qtbase-5))
+    (arguments '())))
+
 (define-public kemoticons
   (package
     (name "kemoticons")



reply via email to

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