diff options
author | Joonas Niilola <juippis@gentoo.org> | 2024-04-01 09:36:00 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-04-01 09:47:33 +0300 |
commit | 72b0c2bcb3a085f2ac80839113322e35144a6b3d (patch) | |
tree | ae5bcc25303a263e203612149ef53fe3fd5e3e29 /dev-util/hfstospell | |
parent | dev-libs/raft: drop 0.19.1 (diff) | |
download | gentoo-72b0c2bcb3a085f2ac80839113322e35144a6b3d.tar.gz gentoo-72b0c2bcb3a085f2ac80839113322e35144a6b3d.tar.bz2 gentoo-72b0c2bcb3a085f2ac80839113322e35144a6b3d.zip |
dev-util/hfstospell: drop 0.5.3-r1
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-util/hfstospell')
-rw-r--r-- | dev-util/hfstospell/Manifest | 1 | ||||
-rw-r--r-- | dev-util/hfstospell/files/hfstospell-0.5.3-gcc-13-fix.patch | 21 | ||||
-rw-r--r-- | dev-util/hfstospell/hfstospell-0.5.3-r1.ebuild | 52 |
3 files changed, 0 insertions, 74 deletions
diff --git a/dev-util/hfstospell/Manifest b/dev-util/hfstospell/Manifest index c2b700647a51..07bc9900e4f4 100644 --- a/dev-util/hfstospell/Manifest +++ b/dev-util/hfstospell/Manifest @@ -1,2 +1 @@ -DIST hfstospell-0.5.3.tar.gz 152654 BLAKE2B f77c86e18b9dcb098460bdaec2f6a148b4bf515670aad3d17002b3027026483658d0df924a5d71b12251128ba89bee3a9d7c1d03a5983830accf0340445a1331 SHA512 f25bae6c083894139ba1e3dbd24f010e1c4695bdfe4c2499d31f2f0bd2f5688b662ea15666b46f174fc75f0aa6f5cd114456f735b1d49bcf33322221b6f57ff5 DIST hfstospell-0.5.4.tar.gz 158435 BLAKE2B fdf044f23a020d412b4bbca269cfbafd89955535a76e20c6ce9500ce1295dc052352560779587c95c43d7a4e984dfc081b78b2e0fff7c57f587967682e022925 SHA512 989d218718010a3f1ad7c3284287f62cb5aeef9d0dcd14f5898d919d088b212977a3e98fc7faf4040a65c3a7791b6fd4a54e10c6ca4e9a68595dfbd0227555a3 diff --git a/dev-util/hfstospell/files/hfstospell-0.5.3-gcc-13-fix.patch b/dev-util/hfstospell/files/hfstospell-0.5.3-gcc-13-fix.patch deleted file mode 100644 index d5dc32d57a7e..000000000000 --- a/dev-util/hfstospell/files/hfstospell-0.5.3-gcc-13-fix.patch +++ /dev/null @@ -1,21 +0,0 @@ -From 7481bffbf622bc9aee3547183fbe8db9cf8b22ce Mon Sep 17 00:00:00 2001 -From: Tino Didriksen <mail@tinodidriksen.com> -Date: Sun, 3 Jul 2022 23:16:52 +0200 -Subject: [PATCH] Include cstdint (fixes #57) - ---- - hfst-ol.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/hfst-ol.h b/hfst-ol.h -index 0a83ec5..ee59b14 100644 ---- a/hfst-ol.h -+++ b/hfst-ol.h -@@ -28,6 +28,7 @@ - #include <climits> - #include <cstdio> - #include <cstdlib> -+#include <cstdint> - #include <iostream> - #include <cstring> - #include <set> diff --git a/dev-util/hfstospell/hfstospell-0.5.3-r1.ebuild b/dev-util/hfstospell/hfstospell-0.5.3-r1.ebuild deleted file mode 100644 index cef126d2e5af..000000000000 --- a/dev-util/hfstospell/hfstospell-0.5.3-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools toolchain-funcs - -DESCRIPTION="HFST spell checker library and command line tool" -HOMEPAGE="https://github.com/hfst/hfst-ospell" -SRC_URI="https://github.com/hfst/hfst-ospell/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~loong ~riscv x86" -IUSE="clang" - -DEPEND="app-arch/libarchive:= - dev-libs/icu:= - !clang? ( - dev-cpp/glibmm:2 - dev-cpp/libxmlpp:2.6 - dev-libs/glib:2 - dev-libs/libsigc++:2 - dev-libs/libxml2 - )" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -S="${WORKDIR}/hfst-ospell-${PV}" - -PATCHES=( "${FILESDIR}"/hfstospell-0.5.3-gcc-13-fix.patch ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # https://github.com/hfst/hfst-ospell/issues/48 - if tc-is-clang; then - econf --without-libxmlpp --without-tinyxml2 - elif use clang; then - econf --without-libxmlpp --without-tinyxml2 - else - default - fi -} - -src_install() { - default - find "${D}" -name '*.la' -delete -o -name '*.a' -delete || die -} |