summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-08-04 21:07:28 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-08-04 21:16:34 +0200
commit31295f27bd7dc7734f24e74a02b3f4b6a663fc36 (patch)
tree2533e42215bc6a41151e20f0096dc7cd215ea5a7
parente2a7c1db8cdf30e3ca41f94229e0f64bd3b5b865 (diff)
downloadkde-31295f27bd7dc7734f24e74a02b3f4b6a663fc36.tar.gz
kde-31295f27bd7dc7734f24e74a02b3f4b6a663fc36.tar.bz2
kde-31295f27bd7dc7734f24e74a02b3f4b6a663fc36.zip
kde-frameworks/sonnet: 6.17.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-frameworks/sonnet/Manifest1
-rw-r--r--kde-frameworks/sonnet/sonnet-6.17.0.ebuild44
2 files changed, 45 insertions, 0 deletions
diff --git a/kde-frameworks/sonnet/Manifest b/kde-frameworks/sonnet/Manifest
new file mode 100644
index 00000000000..622e4af97b6
--- /dev/null
+++ b/kde-frameworks/sonnet/Manifest
@@ -0,0 +1 @@
+DIST sonnet-6.17.0.tar.xz 2413056 BLAKE2B 14f4ba1eb2ace4bb273eb6e8de0c579b6d0e1be1e7633aa623d2ab81b38f4683eec749af921d715adb80e0b46714134e42e72ddd6f525c41cdd5824965f9bdc6 SHA512 efa39b29819b9a7cfa7a0694e330d025fc549008ac6a4bf9ce6f1f09b60e57d61366310be6fa175d231b74079b2a97c4925774d785a5d394cda89864ede5251e
diff --git a/kde-frameworks/sonnet/sonnet-6.17.0.ebuild b/kde-frameworks/sonnet/sonnet-6.17.0.ebuild
new file mode 100644
index 00000000000..5a467857ea1
--- /dev/null
+++ b/kde-frameworks/sonnet/sonnet-6.17.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_DESIGNERPLUGIN="true"
+QTMIN=6.7.2
+inherit ecm frameworks.kde.org
+
+DESCRIPTION="Framework for providing spell-checking through abstraction of popular backends"
+
+LICENSE="LGPL-2+ LGPL-2.1+"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="aspell +hunspell qml"
+
+DEPEND="
+ >=dev-qt/qtbase-${QTMIN}:6[gui,widgets]
+ aspell? ( app-text/aspell )
+ hunspell? ( app-text/hunspell:= )
+ qml? ( >=dev-qt/qtdeclarative-${QTMIN}:6 )
+"
+RDEPEND="${DEPEND}"
+BDEPEND=">=dev-qt/qttools-${QTMIN}:6[linguist]"
+
+CMAKE_SKIP_TESTS=(
+ # bug 779994
+ sonnet-test_autodetect
+ # bug 680032
+ sonnet-test_settings
+ sonnet-test_highlighter
+)
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake_use_find_package aspell ASPELL)
+ $(cmake_use_find_package hunspell HUNSPELL)
+ -DSONNET_USE_QML=$(usex qml)
+ )
+ if ! use aspell && ! use hunspell; then
+ mycmakeargs+=( -DSONNET_NO_BACKENDS=ON )
+ fi
+
+ ecm_src_configure
+}