app-text/libspelling: drop 0.4.8

Signed-off-by: Pacho Ramos <pacho@gentoo.org>
This commit is contained in:
Pacho Ramos
2026-05-15 14:46:01 +02:00
parent 2fdfd0f975
commit cee242b9af
2 changed files with 0 additions and 65 deletions

View File

@@ -1,3 +1,2 @@
DIST libspelling-0.4.10.tar.bz2 72853 BLAKE2B 2ae64c37c7f5668cf5ac194b9c291e8a9f6266b4b7cd5a431c496bb58e8450764ea82300d6f9ff3e5d4912e985eb9ec63544fbe3e378c74be3c303c4786c0332 SHA512 8003ec3d0c8430fadcf6a4af095ea11789d25c38425094e5c42d4d5a739bd869780c748071a35a5520ff96db9b185f05c326fc5c3ee864463009cb0b0f754b8b
DIST libspelling-0.4.8.tar.bz2 71982 BLAKE2B 9a1cfb2e56c1fecab12cafc337bf0e60e3729cb370e2238bb98506d23c8abeb0f3ed54c9c00fc3bee8956385c5dfc272dfb1512ae0076ca88f740f5d65038639 SHA512 bcdea4333232ff01aefd53f7f4d497dcbbed6f7564cd6a50549324ef028c6d996b021ad53d10f40908d71c922244bb4f8a9d99010855ebc94b317c669df4053c
DIST libspelling-0.4.9.tar.bz2 72446 BLAKE2B cc6efae54f947d04637628fe9733d15fcb178231c25ba995f1fe023cee59940de54013729de32d211d7c44727dda4b9a56ced9e040c45ad303de1ab1f9e0f838 SHA512 3810c42fed2b75ab28b35a4e062cc16c096552a854cf7d05f88020617c699589715c9e5d77c5982d0b23d0a8aa9b0c1fb6a6ff31d49c67f368c19c59b79486b6

View File

@@ -1,64 +0,0 @@
# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson vala
DESCRIPTION="A GNOME library for spellchecking"
HOMEPAGE="https://gitlab.gnome.org/GNOME/libspelling"
SRC_URI="https://gitlab.gnome.org/GNOME/${PN}/-/archive/${PV}/${P}.tar.bz2"
LICENSE="LGPL-2.1+"
SLOT="1"
KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
IUSE="gtk-doc sysprof vala"
RDEPEND="
dev-libs/glib:2
>=gui-libs/gtk-4.15.5:4
>=gui-libs/gtksourceview-5.10.0:5
app-text/enchant:2
dev-libs/icu:=
"
DEPEND="${RDEPEND}
sysprof? ( dev-util/sysprof-capture:4 )
vala? (
$(vala_depend)
>=gui-libs/gtksourceview-5.6:5[vala]
)
"
BDEPEND="
>=dev-libs/gobject-introspection-1.82.0-r2
virtual/pkgconfig
gtk-doc? ( dev-util/gi-docgen )
"
PATCHES=(
"${FILESDIR}/Disable-testsuite_test-engine.patch"
)
src_prepare() {
use vala && vala_setup
default
}
src_configure() {
local emesonargs=(
-Denchant=enabled
-Dinstall-static=false
$(meson_use gtk-doc docs)
$(meson_use sysprof)
$(meson_use vala vapi)
)
meson_src_configure
}
src_install() {
meson_src_install
if use gtk-doc; then
mkdir -p "${ED}"/usr/share/gtk-doc/html/ || die
mv "${ED}"/usr/share/doc/${PN}-${SLOT} "${ED}"/usr/share/gtk-doc/html/ || die
fi
}