guix-commits
[Top][All Lists]
Advanced

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

133/178: gnu: kdsoap: Update style.


From: guix-commits
Subject: 133/178: gnu: kdsoap: Update style.
Date: Mon, 17 Jun 2024 12:13:48 -0400 (EDT)

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

commit dfcdf4629f49ce568a82165202452be8aed9752c
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Sat May 4 17:45:04 2024 +0800

    gnu: kdsoap: Update style.
    
    * gnu/packages/qt.scm (kdsoap)[inputs]: Remove inputs labels.
    [arguments]: Convert to list of G-Expressions.
    
    Change-Id: I7ece4dd65db19106acff08d750242f4b92cd8234
---
 gnu/packages/qt.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 08be469568..95e690e0f8 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -5167,16 +5167,16 @@ and import their menus over DBus.")
         (base32
          "0mpkg9iyvzb6mxvhbi6zc052ids2r2nzpmjbljgpq6a2hja13vyr"))))
     (build-system qt-build-system)
-    (inputs `(("qtbase" ,qtbase-5)))
+    (inputs (list qtbase-5))
     (arguments
-     '(#:configure-flags '("-DKDSoap_TESTS=true")
-       #:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda* (#:key tests? #:allow-other-keys)
-             (when tests?
-               (invoke "ctest" "-E" ;; These tests try connect to the internet.
-                       
"(kdsoap-test_webcalls|kdsoap-test_webcalls_wsdl|kdsoap-test_calc)")))))))
+     (list #:configure-flags #~(list "-DKDSoap_TESTS=true")
+           #:phases
+           #~(modify-phases %standard-phases
+               (replace 'check
+                 (lambda* (#:key tests? #:allow-other-keys)
+                   (when tests?
+                     (invoke "ctest" "-E" ;; These tests try connect to the 
internet.
+                             
"(kdsoap-test_webcalls|kdsoap-test_webcalls_wsdl|kdsoap-test_calc)")))))))
     (home-page "https://www.kdab.com/development-resources/qt-tools/kd-soap/";)
     (synopsis "Qt SOAP component")
     (description "KD SOAP is a tool for creating client applications for web



reply via email to

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