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

commit 4883d19217d4ab307ce90c51457e728c749ead7f
Author: Zheng Junjie <zhengjun...@iscas.ac.cn>
AuthorDate: Sat Jul 6 00:57:44 2024 +0800

    gnu: kpty: Update to 6.3.0.
    
    * gnu/packages/kde-frameworks.scm (kpty): Update to 6.3.0.
    [inputs]: Remove qtbase-5; add qtbase.
    [arguments]: Adjust patch-tests phase.
    Change-Id: I1c9c214919152724f34419a10ae98218bb3460f9
    
    Change-Id: I41cd99c5cc9f6439fe17d4ce0f47481be27c1464
---
 gnu/packages/kde-frameworks.scm | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 6cfb5ab47f..97adddacb3 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2043,7 +2043,7 @@ were traditional plugins.")
 (define-public kpty
   (package
     (name "kpty")
-    (version "5.114.0")
+    (version "6.3.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -2052,21 +2052,20 @@ were traditional plugins.")
                     name "-" version ".tar.xz"))
               (sha256
                (base32
-                "0fm7bfp89kvg1a64q8piiyal71p6vjnqcm13zak6r9fbfwcm0gs9"))))
+                "19m01phaca84n736sdh1d002vbfbhf7lzb8cf1wqrhaak0wrp933"))))
     (build-system cmake-build-system)
     (native-inputs
      (list extra-cmake-modules))
     (inputs
-     (list kcoreaddons ki18n
-           ;; TODO: utempter, for managing UTMP entries
-           qtbase-5))
+     ;; TODO: utempter, for managing UTMP entries
+     (list kcoreaddons ki18n qtbase))
     (arguments
      (list #:tests? #f ; FIXME: 1/1 tests fail.
            #:phases #~(modify-phases %standard-phases
                         (add-after 'unpack 'patch-tests
                           (lambda _
                             (substitute* "autotests/kptyprocesstest.cpp"
-                              (("/bin/bash")
+                              (("/bin/sh")
                                (which "bash"))))))))
     (home-page "https://community.kde.org/Frameworks";)
     (synopsis "Interfacing with pseudo terminal devices")

Reply via email to