diff options
| author | Sughosha <sughosha@disroot.org> | 2025-12-24 14:40:32 +0530 |
|---|---|---|
| committer | Sughosha <sughosha@disroot.org> | 2026-01-30 20:53:37 +0530 |
| commit | e2bf6b8d9e73afe64a630a06363e350d7bbf37f2 (patch) | |
| tree | ed07495cc82020e402cb9741b9bf86637debf56c | |
| parent | acd580b33ce10904e339fd4b32273d1412de4ad3 (diff) | |
gnu: ki18n: Update to 6.21.0.
* gnu/packages/kde-frameworks.scm (ki18n): 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: I4e79c4bff0a5d2ca523326764d84e951c07b83c3
| -rw-r--r-- | gnu/packages/kde-frameworks.scm | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 5ade95dde7..340e25141b 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1149,7 +1149,7 @@ other special events for a geographical region.") (define-public ki18n (package (name "ki18n") - (version "6.19.0") + (version "6.21.0") (source (origin (method url-fetch) (uri (string-append @@ -1158,7 +1158,7 @@ other special events for a geographical region.") name "-" version ".tar.xz")) (sha256 (base32 - "19l449qpdkmwqjgzp0hyv0zv7c1xn9qhqx8w16l3d5yi9iiz53v0")))) + "13sdd5wv41yhbg1m0yq5zp2nmiqf3126asc6dqlcg2g9li2k1cnm")))) (build-system cmake-build-system) (propagated-inputs (list gettext-minimal)) @@ -1168,15 +1168,21 @@ other special events for a geographical region.") (list qtbase qtdeclarative iso-codes/pinned)) (arguments (list + #:test-exclude + (string-append "(" + (string-join '("kcatalogtest" + "kcountrytest" + "kcountrysubdivisiontest") + "|") + ")") #:phases #~(modify-phases %standard-phases (replace 'check - (lambda* (#:key tests? #:allow-other-keys) + (lambda* (#:key tests? test-exclude #:allow-other-keys) (when tests? (setenv "HOME" (getcwd)) - (invoke "ctest" "-E" - "(kcatalogtest|kcountrytest|kcountrysubdivisiontest)"))))))) + (invoke "ctest" "-E" test-exclude))))))) (home-page "https://community.kde.org/Frameworks") (synopsis "KDE Gettext-based UI text internationalization") (description "KI18n provides functionality for internationalizing user |
