kde-frameworks/sonnet: drop 6.18.0

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2025-12-12 20:18:36 +01:00
parent 423916fe24
commit 50c17ac0ee
2 changed files with 0 additions and 45 deletions

View File

@@ -1,3 +1,2 @@
DIST sonnet-6.18.0.tar.xz 2413184 BLAKE2B 67e99e67800e4aecf6872c6c270375ce57095031b09fec08e8095af842ea9f800def1cfbdb44adcc794fba0574678beeac0c0add6a330e42826da098a37c6511 SHA512 885b308876c5055a5ad46153e7e3be06d2b454cd3e80f59ad3be597762130aadca3db3e025c8907ae2a83abf60986c414dd9afb33b7865868faaad54645e53df
DIST sonnet-6.20.0.tar.xz 2413704 BLAKE2B 76b5a935218be7269452be866e0080efa3f8bf7c9ea500ce1a5688299d59059a4131d055351a0593be0278203b93b6d4ac3918f137840b2c21c8041c935cf18d SHA512 7c8bb04a9a8257c79a6fd4234d81f7560ee6ff3f1e5d57c2ce6f8d9cac09757ac7017ead711596e86f4238ccf5af8c406da12654e87db26257287beec4bf3a8f
DIST sonnet-6.21.0.tar.xz 2414168 BLAKE2B 363421b33892c398e02f903fe94f0b6a7a458d3785ab13b30f72b3ee9a2700d887062c7e1c5f4e03078d5c12eab9026acc7e9d1adc8c83f4b176171aa0f5221e SHA512 57c5b66c73315dd4731a89f442b5b41932fdc2a32250eedc3785fac3c17e76d1c69ca67c25ee7ebbe382e842a2ec666befbb41e5fa4575c40b2cd61161f419bf

View File

@@ -1,44 +0,0 @@
# 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
}