guix_mirror_bot pushed a commit to branch master
in repository guix.
commit f04e8f3800bdaff4aa543f529adada1624864dfd
Author: Sughosha <[email protected]>
AuthorDate: Wed Dec 24 14:40:34 2025 +0530
gnu: kwidgetsaddons: Update to 6.21.0.
* gnu/packages/kde-frameworks.scm (kwidgetsaddons): Update to 6.21.0.
[arguments]<#:test-exclude>: Exclude the failing test.
<#:phases>: In 'check phase, replace the test to exclude with the
test-exclude
keyword.
Change-Id: I240defadc0f671bc031243b5efde7bb0a8828187
---
gnu/packages/kde-frameworks.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index f6dda03859..bcaf61ec54 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1631,7 +1631,7 @@ represented by a QPoint or a QSize.")
(define-public kwidgetsaddons
(package
(name "kwidgetsaddons")
- (version "6.19.0")
+ (version "6.21.0")
(source (origin
(method url-fetch)
(uri (string-append
@@ -1640,7 +1640,7 @@ represented by a QPoint or a QSize.")
name "-" version ".tar.xz"))
(sha256
(base32
- "0yl6d5xbfs9prd3gpsyba00y3z4acjrp1s5bwbq8qfzqjzv9cak2"))))
+ "1g6ji535lcx3wlzfzgvdjfdkgfg0ns4jkjsp3815xhrid113ia8l"))))
(build-system qt-build-system)
(native-inputs
(list extra-cmake-modules qttools))
@@ -1650,14 +1650,15 @@ represented by a QPoint or a QSize.")
#:configure-flags
;; XXX: build python bindings.
#~(list "-DBUILD_PYTHON_BINDINGS=OFF")
+ #:test-exclude "ktooltipwidgettest"
#:phases
#~(modify-phases %standard-phases
(replace 'check
- (lambda* (#:key tests? parallel-tests? #:allow-other-keys)
+ (lambda* (#:key tests? parallel-tests? test-exclude
+ #:allow-other-keys)
(when tests?
;; hideLaterShouldHideAfterDelay function time: 300000ms,
total time: 300009ms
- (invoke "ctest" "-E"
- "(ktooltipwidgettest)"
+ (invoke "ctest" "-E" test-exclude
"-j"
(if parallel-tests?
(number->string (parallel-job-count))