summaryrefslogtreecommitdiff
path: root/kde-frameworks
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-04-05 17:52:46 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-04-05 18:05:22 +0200
commita4d8c0f72727231fa7df38a700252ea752a4e29f (patch)
tree31e0bebef93079253388e0a9b66c31b122fe7882 /kde-frameworks
parent5b04d2a4f3fe00d6bc4f43e86a6490455ad75712 (diff)
downloadkde-a4d8c0f72727231fa7df38a700252ea752a4e29f.tar.gz
kde-a4d8c0f72727231fa7df38a700252ea752a4e29f.tar.bz2
kde-a4d8c0f72727231fa7df38a700252ea752a4e29f.zip
kde-frameworks/sonnet: 6.13.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks')
-rw-r--r--kde-frameworks/sonnet/Manifest1
-rw-r--r--kde-frameworks/sonnet/sonnet-6.13.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..4900e5daf8d
--- /dev/null
+++ b/kde-frameworks/sonnet/Manifest
@@ -0,0 +1 @@
+DIST sonnet-6.13.0.tar.xz 2435608 BLAKE2B e851ef19e92d3d9701feecd2c7244091aefe0259ea6e373cb386b13ca423d07dacdbb904457fc7e12be44b460f76af48388e498bda97692ea33873cdecba0695 SHA512 5a4f027675402fff1afa90c6fa6449e2c0984a390274dff6c101df51fc578d4722e76bdc1d181c4c136c5fb5532506488603199a9d98b5e975dfae3010bea015
diff --git a/kde-frameworks/sonnet/sonnet-6.13.0.ebuild b/kde-frameworks/sonnet/sonnet-6.13.0.ebuild
new file mode 100644
index 00000000000..4bbfb354749
--- /dev/null
+++ b/kde-frameworks/sonnet/sonnet-6.13.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 ~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
+}