diff options
| author | Sughosha <sughosha@disroot.org> | 2025-12-24 14:40:38 +0530 |
|---|---|---|
| committer | Sughosha <sughosha@disroot.org> | 2026-01-30 20:53:40 +0530 |
| commit | cb187a95bc49ca6103e241563b75aaafdeb0edfe (patch) | |
| tree | b072a9cb29bda6e14ea1253fb3adbe9cdef3d9e7 /gnu | |
| parent | f176ed6d4eb89abba0b58c6f4809d57433893bde (diff) | |
gnu: kfilemetadata: Update to 6.21.0.
* gnu/packages/kde-frameworks.scm (kfilemetadata): Update to 6.21.0.
[arguments]<#:test-exclude>: Exclude the failing tests.
<#:phases>: In 'check phase, replace the tests to exclude with the test-exclude
keyword.
Change-Id: I0f1009e1ea77b24c4cd1f3e8c3689c1ba423ed11
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/kde-frameworks.scm | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index ccb7d1a401..5a1d92f881 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -2475,7 +2475,7 @@ from DocBook files.") (define-public kfilemetadata (package (name "kfilemetadata") - (version "6.19.0") + (version "6.21.0") (source (origin (method url-fetch) (uri (string-append @@ -2484,17 +2484,23 @@ from DocBook files.") name "-" version ".tar.xz")) (sha256 (base32 - "1ha12lhl70rh5v11aw8wj8mfsrrii12696pj6ir601kah8jm4ijx")))) + "197hagv1da3da9hxa4v2v1xbf5fl4b216vp4l9nb40228g2zrzfq")))) (build-system cmake-build-system) (arguments (list + #:test-exclude + (string-append "(" + (string-join '("exiv2extractortest" + "usermetadatawritertest") + "|") + ")") #:phases #~(modify-phases %standard-phases (replace 'check - (lambda* (#:key tests? #:allow-other-keys) + (lambda* (#:key tests? test-exclude #:allow-other-keys) (when tests? (setenv "QT_QPA_PLATFORM" "offscreen") - (invoke "ctest" "-E" "(exiv2extractortest|usermetadatawritertest)"))))))) + (invoke "ctest" "-E" test-exclude))))))) (native-inputs (list extra-cmake-modules pkg-config)) (inputs (list attr |
