summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-12-16 23:37:04 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-12-16 23:37:04 +0100
commit45abb530c98cd507194777c2ad940ebf5e4867cd (patch)
tree2cf33aed872f01c1b16e1fec5e9b24418e65cd50
parente04976cc13c52d59997795a3e2784eb554926100 (diff)
downloadkde-45abb530c98cd507194777c2ad940ebf5e4867cd.tar.gz
kde-45abb530c98cd507194777c2ad940ebf5e4867cd.tar.bz2
kde-45abb530c98cd507194777c2ad940ebf5e4867cd.zip
kde-frameworks/sonnet: drop 6.9.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-frameworks/sonnet/Manifest1
-rw-r--r--kde-frameworks/sonnet/sonnet-6.9.0.ebuild44
2 files changed, 0 insertions, 45 deletions
diff --git a/kde-frameworks/sonnet/Manifest b/kde-frameworks/sonnet/Manifest
deleted file mode 100644
index 57cfca18827..00000000000
--- a/kde-frameworks/sonnet/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sonnet-6.9.0.tar.xz 2433648 BLAKE2B ccad4b673a61b28dcd3e854b680fd2193f5d1f5be778bd165b12e389592a1e98289aa90d0dba573872913a6cb4cb0ab631d2a0d70add3ef51231e5659c4b18ef SHA512 24c1eda93fb6d4e540f0dd6518eabcc37a00ec4ddc2fedae8b4f53a0618a9b4e1051b20041bd6113de6ea321719ede45d7efdd7f27c1bf0a3f4def11c34598a3
diff --git a/kde-frameworks/sonnet/sonnet-6.9.0.ebuild b/kde-frameworks/sonnet/sonnet-6.9.0.ebuild
deleted file mode 100644
index c9d221cc0d9..00000000000
--- a/kde-frameworks/sonnet/sonnet-6.9.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2024 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
-}