guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 4844f2af2e15fa7a57e9c91a0a22e4a33fd9274c
Author: Jonathan Brielmaier <[email protected]>
AuthorDate: Sun Dec 28 20:05:42 2025 +0100
gnu: qtspell: Update to 1.0.2 and switch to Qt6.
* gnu/packages/qt.scm (qtspell): Update to 1.0.2.
[arguments]: Enable Qt6 build.
[native-inputs]: Replace qttools-5 with qttools.
[inputs]: Replace qtbase-5 with qtbase.
Change-Id: Ib0acbba760cb00191d49b31c652d71d26f142806
Signed-off-by: 宋文武 <[email protected]>
---
gnu/packages/qt.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 8bccf8e27e..d4149a0edf 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -3298,7 +3298,7 @@ frontend implemented in QML.")))
(define-public qtspell
(package
(name "qtspell")
- (version "1.0.1")
+ (version "1.0.2")
(source
(origin
(method git-fetch)
@@ -3307,14 +3307,15 @@ frontend implemented in QML.")))
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "19ff6jzm699wrxrk57w3d4kl9qxgdipdikpwls9n4aqv4mw7g969"))))
+ (base32 "19ivs1pq9mmas731nx77lg63l0cn6c8g61s7a728s9hpxmihdq9s"))))
(build-system cmake-build-system)
(arguments
- `(#:tests? #f)) ;no test
+ `(#:configure-flags (list "-DQT_VER=6")
+ #:tests? #f)) ;no test
(native-inputs
- (list pkg-config qttools-5))
+ (list pkg-config qttools))
(inputs
- (list enchant qtbase-5))
+ (list enchant qtbase))
(home-page "https://github.com/manisandro/qtspell")
(synopsis "Spell checking for Qt text widgets")
(description