diff options
| author | Andreas Sturmlechner <asturm@gentoo.org> | 2025-05-03 23:47:12 +0200 |
|---|---|---|
| committer | Andreas Sturmlechner <asturm@gentoo.org> | 2025-05-04 00:17:28 +0200 |
| commit | 86aebd4b29239befb98aa25f938e2d95da2cf2f0 (patch) | |
| tree | 0a4ec3ad4b51d08b849a1a0ae2c64b6eb24c34a9 | |
| parent | cf38f902ee11efd0be101f9250b2bf2fce6c250d (diff) | |
| download | kde-86aebd4b29239befb98aa25f938e2d95da2cf2f0.tar.gz kde-86aebd4b29239befb98aa25f938e2d95da2cf2f0.tar.bz2 kde-86aebd4b29239befb98aa25f938e2d95da2cf2f0.zip | |
kde-frameworks/sonnet: 6.14.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
| -rw-r--r-- | kde-frameworks/sonnet/Manifest | 1 | ||||
| -rw-r--r-- | kde-frameworks/sonnet/sonnet-6.14.0.ebuild | 44 |
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..5dc779fe335 --- /dev/null +++ b/kde-frameworks/sonnet/Manifest @@ -0,0 +1 @@ +DIST sonnet-6.14.0.tar.xz 2434848 BLAKE2B e04e121ccccff96b50b3a78f0cfe3497288f2e7185c2a0df183994e7465242bf9f4ecc42858809f7fd0934df3300d5b0f821b00b608f55fd686cc41c4a963c00 SHA512 b41ad5e2fc71e770b74a3325250e7e64012dfe9ee75c531cb9e77a8d45f9454d987e9f8a04b9b1dec7cc725afe67de9d562a6ce90dae7d1603706b452ecc2ca1 diff --git a/kde-frameworks/sonnet/sonnet-6.14.0.ebuild b/kde-frameworks/sonnet/sonnet-6.14.0.ebuild new file mode 100644 index 00000000000..5a467857ea1 --- /dev/null +++ b/kde-frameworks/sonnet/sonnet-6.14.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 +} |
