commit: be935568c469524f153a05ff1ba43a58d12fe261 Author: Dave Hughes <davidhughes205 <AT> gmail <DOT> com> AuthorDate: Sat Mar 13 13:14:07 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Mar 13 21:02:39 2021 +0000 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=be935568
app-text/enchant: remove from overlay Package-Manager: Portage-3.0.17, Repoman-3.0.2 RepoMan-Options: --force Manifest-Sign-Key: 0xA1919C830E9498E0 Signed-off-by: Dave Hughes <davidhughes205 <AT> gmail.com> Closes: https://github.com/gentoo/musl/pull/407 Signed-off-by: Sam James <sam <AT> gentoo.org> app-text/enchant/Manifest | 1 - app-text/enchant/enchant-1.6.1.ebuild | 59 ---------------------- .../files/enchant-1.6.0-hunspell150_fix.patch | 12 ----- .../musl-compile-fix-add-cc-tag-libtool.patch | 15 ------ app-text/enchant/metadata.xml | 12 ----- 5 files changed, 99 deletions(-) diff --git a/app-text/enchant/Manifest b/app-text/enchant/Manifest deleted file mode 100644 index be84da7..0000000 --- a/app-text/enchant/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST enchant-1.6.1.tar.gz 642124 SHA256 bef0d9c0fef2e4e8746956b68e4d6c6641f6b85bd2908d91731efb68eba9e3f5 SHA512 26c62dfa89ee40150db502651a2f876fba00569b7015f205dae27a029557effacff335bbe36124dbe6686537da2305bcab02592179d03e95fdf9741d54b98036 WHIRLPOOL daffe1ee16e731d3d6ba56362f882c8f8bd7462a264fcf9caf05ed8093c0ca275977fb9c83c391d9e3287e6e98516b52e468c9bf9cc86532cf0b3eeba8f02fbd diff --git a/app-text/enchant/enchant-1.6.1.ebuild b/app-text/enchant/enchant-1.6.1.ebuild deleted file mode 100644 index 049ea1b..0000000 --- a/app-text/enchant/enchant-1.6.1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit versionator - -MY_PV="$(replace_all_version_separators '-')" -DESCRIPTION="Spellchecker wrapping library" -HOMEPAGE="https://abiword.github.io/enchant/" -SRC_URI="https://github.com/AbiWord/enchant/releases/download/${PN}-${MY_PV}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86" - -IUSE="aspell +hunspell static-libs test" -RESTRICT="!test? ( test )" -REQUIRED_USE="|| ( hunspell aspell )" - -# FIXME: depends on unittest++ but through pkgconfig which is a Debian hack, bug #629742 -COMMON_DEPENDS=" - >=dev-libs/glib-2.6:2 - aspell? ( app-text/aspell ) - hunspell? ( >=app-text/hunspell-1.2.1:0= )" -RDEPEND="${COMMON_DEPENDS}" - -DEPEND="${COMMON_DEPENDS} - virtual/pkgconfig -" -# test? ( dev-libs/unittest++ ) - -DOCS="AUTHORS BUGS ChangeLog HACKING MAINTAINERS NEWS README TODO" - -PATCHES=( - "${FILESDIR}"/${PN}-1.6.0-hunspell150_fix.patch -) - -src_prepare() { - default - eapply "${FILESDIR}/musl-compile-fix-add-cc-tag-libtool.patch" - sed -e "/SUBDIRS/ s/unittests//" -i "${S}"/Makefile.{am,in} || die -} - -src_configure() { - econf \ - $(use_enable aspell) \ - $(use_enable hunspell myspell) \ - $(use_enable static-libs static) \ - --disable-hspell \ - --disable-ispell \ - --disable-uspell \ - --disable-voikko \ - --with-myspell-dir="${EPREFIX}"/usr/share/myspell/ -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -} diff --git a/app-text/enchant/files/enchant-1.6.0-hunspell150_fix.patch b/app-text/enchant/files/enchant-1.6.0-hunspell150_fix.patch deleted file mode 100644 index bd40c81..0000000 --- a/app-text/enchant/files/enchant-1.6.0-hunspell150_fix.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -upr enchant-1.6.0.orig/src/myspell/myspell_checker.cpp enchant-1.6.0/src/myspell/myspell_checker.cpp ---- enchant-1.6.0.orig/src/myspell/myspell_checker.cpp 2016-11-26 16:04:05.689051339 +0200 -+++ enchant-1.6.0/src/myspell/myspell_checker.cpp 2016-11-26 16:05:11.380014568 +0200 -@@ -431,7 +431,7 @@ MySpellChecker::requestDictionary(const - if(myspell == NULL){ - return false; - } -- char *enc = myspell->get_dic_encoding(); -+ const char *enc = myspell->get_dic_encoding(); - - m_translate_in = g_iconv_open(enc, "UTF-8"); - m_translate_out = g_iconv_open("UTF-8", enc); diff --git a/app-text/enchant/files/musl-compile-fix-add-cc-tag-libtool.patch b/app-text/enchant/files/musl-compile-fix-add-cc-tag-libtool.patch deleted file mode 100644 index e13a769..0000000 --- a/app-text/enchant/files/musl-compile-fix-add-cc-tag-libtool.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/configure b/configure.new -old mode 100755 -new mode 100755 -index 7d641bf..307d433 ---- a/configure -+++ b/configure -@@ -11038,7 +11038,7 @@ esac - LIBTOOL_DEPS=$ltmain - - # Always use our own libtool. --LIBTOOL='$(SHELL) $(top_builddir)/libtool' -+LIBTOOL='$(SHELL) $(top_builddir)/libtool --tag=CC' - - - diff --git a/app-text/enchant/metadata.xml b/app-text/enchant/metadata.xml deleted file mode 100644 index 2b8b7cf..0000000 --- a/app-text/enchant/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>[email protected]</email> - <name>Gentoo GNOME Desktop</name> - </maintainer> - <use> - <flag name="aspell">Adds support for <pkg>app-text/aspell</pkg> spell checker</flag> - <flag name="hunspell">Adds support for <pkg>app-text/hunspell</pkg> spell checker</flag> - </use> -</pkgmetadata>
