summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSughosha <sughosha@disroot.org>2025-12-24 14:40:34 +0530
committerSughosha <sughosha@disroot.org>2026-01-30 20:53:38 +0530
commitf04e8f3800bdaff4aa543f529adada1624864dfd (patch)
treec5ee210d3efac26a30d710883bc40e013b8218a9 /gnu/packages
parentaa5a83b0a2a8d00f4c1a6d998f6e00b9733a85e2 (diff)
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
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/kde-frameworks.scm11
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index f6dda038596..bcaf61ec547 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))