diff options
author | Joonas Niilola <juippis@gentoo.org> | 2020-11-15 08:36:20 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-11-15 09:18:16 +0200 |
commit | 281861b8789a5e8c8fb996bde7137bd615c64c03 (patch) | |
tree | 320c5377f1c3e1fe696ea52231250c40b4aa473f /dev-util/hfstospell | |
parent | dev-util/hfstospell: stabilize 0.5.2 on amd64 (diff) | |
download | gentoo-281861b8789a5e8c8fb996bde7137bd615c64c03.tar.gz gentoo-281861b8789a5e8c8fb996bde7137bd615c64c03.tar.bz2 gentoo-281861b8789a5e8c8fb996bde7137bd615c64c03.zip |
dev-util/hfstospell: remove old 0.5.1
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.1-gcc-10-fix.patch | 24 | ||||
-rw-r--r-- | dev-util/hfstospell/hfstospell-0.5.1.ebuild | 35 |
3 files changed, 0 insertions, 60 deletions
diff --git a/dev-util/hfstospell/Manifest b/dev-util/hfstospell/Manifest index d6cc1b658582..fd7d9e959c93 100644 --- a/dev-util/hfstospell/Manifest +++ b/dev-util/hfstospell/Manifest @@ -1,2 +1 @@ -DIST hfstospell-0.5.1.tar.gz 152056 BLAKE2B fa589908312bd4a4b40b88b221ee5f6bdc281d6151984a87b237372b0141157db87b3494e357d74a17f0ee137fd5ce35ec8caddb12d5bffe15930a74345cd3ee SHA512 bd8ffdd3ee822da2a57a3405b139ec1e635dc8bb293dbd9abd05912b8929df29633304e64b97522e4590a3907ddfa3aefec3e4da5ab709b9be1857cc2ecd2018 DIST hfstospell-0.5.2.tar.gz 152115 BLAKE2B 667c01672fd6fd6ee743a6542677ffe74e3900c27ab2754f8fa7dcc57081074bd98e8d82827fe176b2a6c9abc4565efcb3204df43110906f5a333405ec8a6bf2 SHA512 307aff3aec91ac6ffed3ebabdc2baa1a6e913431f57a80a0d0254be57fbd72e28d7592c35e0d72e5979f7e0b4c585f11b8eb91183b0877f9670a9cd5206c0140 diff --git a/dev-util/hfstospell/files/hfstospell-0.5.1-gcc-10-fix.patch b/dev-util/hfstospell/files/hfstospell-0.5.1-gcc-10-fix.patch deleted file mode 100644 index 0998beebe7d7..000000000000 --- a/dev-util/hfstospell/files/hfstospell-0.5.1-gcc-10-fix.patch +++ /dev/null @@ -1,24 +0,0 @@ -From a9d5afb14aa71893f142dfd3ae735e8930aa0f8a Mon Sep 17 00:00:00 2001 -From: Martin Liska <mliska@suse.cz> -Date: Mon, 16 Mar 2020 11:32:10 +0100 -Subject: [PATCH] Fix a typo in wide string conversion function (#49). - -Revert a hunk from: -04e4843e4c66beb61b756f3ceb2ac94628142185. ---- - main.cc | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/main.cc b/main.cc -index abecf46..e4fd676 100644 ---- a/main.cc -+++ b/main.cc -@@ -61,7 +61,7 @@ static bool suggest_reals = false; - #ifdef WINDOWS - static std::string wide_string_to_string(const std::wstring & wstr) - { -- int size_needed = WideCharToMultiByte(CP_UTF8, 0, &wstr[0], (int)§wstr.size(), NULL, 0, NULL, NULL); -+ int size_needed = WideCharToMultiByte(CP_UTF8, 0, &wstr[0], (int)wstr.size(), NULL, 0, NULL, NULL); - std::string str( size_needed, 0 ); - WideCharToMultiByte(CP_UTF8, 0, &wstr[0], (int)wstr.size(), &str[0], size_needed, NULL, NULL); - return str; diff --git a/dev-util/hfstospell/hfstospell-0.5.1.ebuild b/dev-util/hfstospell/hfstospell-0.5.1.ebuild deleted file mode 100644 index b3e56cf85239..000000000000 --- a/dev-util/hfstospell/hfstospell-0.5.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -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 x86" - -DEPEND="app-arch/libarchive - dev-cpp/libxmlpp:2.6 - dev-libs/icu:= - dev-libs/tinyxml2" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -S="${WORKDIR}/hfst-ospell-${PV}" - -PATCHES=( "${FILESDIR}/hfstospell-0.5.1-gcc-10-fix.patch" ) - -src_prepare() { - default - eautoreconf -} - -src_install() { - default - find "${D}" -name '*.la' -delete -o -name '*.a' -delete || die -} |