summaryrefslogtreecommitdiff
path: root/kde-frameworks/sonnet/sonnet-6.15.0.ebuild
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-06-15 19:57:22 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-06-15 19:57:22 +0200
commit01432ef554c93adf58be4bb2fd5bc522837a717d (patch)
tree8c5dbbcbec9701d8a5557ec2ef279472afcb9737 /kde-frameworks/sonnet/sonnet-6.15.0.ebuild
parent3840e9700e355bf9cd0dc398cf217695a0d1287d (diff)
downloadkde-01432ef554c93adf58be4bb2fd5bc522837a717d.tar.gz
kde-01432ef554c93adf58be4bb2fd5bc522837a717d.tar.bz2
kde-01432ef554c93adf58be4bb2fd5bc522837a717d.zip
kde-frameworks/sonnet: drop 6.15.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/sonnet/sonnet-6.15.0.ebuild')
-rw-r--r--kde-frameworks/sonnet/sonnet-6.15.0.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/kde-frameworks/sonnet/sonnet-6.15.0.ebuild b/kde-frameworks/sonnet/sonnet-6.15.0.ebuild
deleted file mode 100644
index 5a467857ea1..00000000000
--- a/kde-frameworks/sonnet/sonnet-6.15.0.ebuild
+++ /dev/null
@@ -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
-}