Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/enchant/, app-text/enchant/files/
Date: Sat, 24 Mar 2018 15:18:00
Message-Id: 1521904236.c2f2346d2e643c00c90ddf75a3a4fc39b24cf1c3.leio@gentoo
1 commit: c2f2346d2e643c00c90ddf75a3a4fc39b24cf1c3
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 24 15:10:36 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 24 15:10:36 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2f2346d
7
8 app-text/enchant: remove old
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 app-text/enchant/Manifest | 1 -
13 app-text/enchant/enchant-1.6.0.ebuild | 62 ----------------------
14 .../files/enchant-1.6.0-hunspell140_fix.patch | 16 ------
15 3 files changed, 79 deletions(-)
16
17 diff --git a/app-text/enchant/Manifest b/app-text/enchant/Manifest
18 index a2f5158eb44..e9f343b8ca0 100644
19 --- a/app-text/enchant/Manifest
20 +++ b/app-text/enchant/Manifest
21 @@ -1,4 +1,3 @@
22 -DIST enchant-1.6.0.tar.gz 607018 BLAKE2B 623473ddc9fdddbfd7ce4861ec22ab8d4d4f790ee29b189056a809783fbd2a4f42c45ac3865a5533d9ea8be26a6825bc7ae957ee6e8a04db693791d1a9070a30 SHA512 0ca1634bb783df51512df4abecc89abdadee6baf7330d6e5f90cc15d10779896a3521a1c079ecc07e4df4f7a018ce398cca9d0125a7845a314a059840ebc9137
23 DIST enchant-1.6.1.tar.gz 642124 BLAKE2B d41aa9b313e7fe8b0887728b55f3c5218e270c7359b4edcdc8d9180af68687230bcc9f7d1abb9f85ac673478530e5674366c9bc7d08b983e7226725b2cdd73d3 SHA512 26c62dfa89ee40150db502651a2f876fba00569b7015f205dae27a029557effacff335bbe36124dbe6686537da2305bcab02592179d03e95fdf9741d54b98036
24 DIST enchant-2.1.0.tar.gz 962857 BLAKE2B f1ee729f20f06c14cbe81c27eeff5ff3bfe9e815bdf278c0c5e27ab48a78301e0731cfc2a55d065cfc702b5939623e352817a3fa6102636bca6779a8903ce537 SHA512 5dee7c5693ffc4ca0933e0881ca6e1f6bab1553af79cadf29733589790c6626db524cf33b0008b3de4c48e122ed93929478cce35608d9a52ab71edb51f598f27
25 DIST enchant-2.1.1.tar.gz 961821 BLAKE2B 1aaedc16e2108a382390c9401233d6a77dcff8732fb0af1a35816993b8eb127f22f9e6f4359b997f6793f53dd37c50c1c69d2aa09cf53bb5c47baa47277e044e SHA512 5cb57198ea826da6d9ed9042edca87fcca9b811e8e75b382ed1568c5b1d8d4f8d6ba732a167c8d52261cfce540f23f84bd4d2889a4beafd2db1d8509c0b6bc15
26
27 diff --git a/app-text/enchant/enchant-1.6.0.ebuild b/app-text/enchant/enchant-1.6.0.ebuild
28 deleted file mode 100644
29 index 5a4e593dc79..00000000000
30 --- a/app-text/enchant/enchant-1.6.0.ebuild
31 +++ /dev/null
32 @@ -1,62 +0,0 @@
33 -# Copyright 1999-2017 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -inherit eutils autotools
38 -
39 -DESCRIPTION="Spellchecker wrapping library"
40 -HOMEPAGE="http://www.abisource.com/enchant/"
41 -SRC_URI="http://www.abisource.com/downloads/${PN}/${PV}/${P}.tar.gz"
42 -
43 -LICENSE="LGPL-2.1"
44 -SLOT="0"
45 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
46 -
47 -IUSE="aspell +hunspell static-libs zemberek"
48 -REQUIRED_USE="|| ( hunspell aspell zemberek )"
49 -
50 -COMMON_DEPENDS="
51 - dev-libs/glib:2
52 - aspell? ( app-text/aspell )
53 - hunspell? ( >=app-text/hunspell-1.2.1:0= )
54 - zemberek? ( dev-libs/dbus-glib )
55 -"
56 -RDEPEND="${COMMON_DEPENDS}
57 - zemberek? ( app-text/zemberek-server )
58 -"
59 -DEPEND="${COMMON_DEPENDS}
60 - virtual/pkgconfig
61 -"
62 -
63 -DOCS="AUTHORS BUGS ChangeLog HACKING MAINTAINERS NEWS README TODO"
64 -
65 -PATCHES=(
66 - # http://bugzilla.abisource.com/show_bug.cgi?id=13772
67 - "${FILESDIR}/${P}-hunspell140_fix.patch"
68 - "${FILESDIR}/${P}-hunspell150_fix.patch"
69 -)
70 -
71 -src_prepare() {
72 - default
73 - sed -i \
74 - -e 's:noinst_PROGRAMS:check_PROGRAMS:' \
75 - tests/Makefile.am || die
76 - mv configure.in configure.ac || die
77 - AT_M4DIR=ac-helpers eautoreconf
78 -}
79 -
80 -src_configure() {
81 - econf \
82 - $(use_enable aspell) \
83 - $(use_enable hunspell myspell) \
84 - $(use_with hunspell system-myspell) \
85 - $(use_enable static-libs static) \
86 - $(use_enable zemberek) \
87 - --disable-ispell \
88 - --with-myspell-dir="${EPREFIX}"/usr/share/myspell/
89 -}
90 -
91 -src_install() {
92 - default
93 - prune_libtool_files --modules
94 -}
95
96 diff --git a/app-text/enchant/files/enchant-1.6.0-hunspell140_fix.patch b/app-text/enchant/files/enchant-1.6.0-hunspell140_fix.patch
97 deleted file mode 100644
98 index 5d58ab7f540..00000000000
99 --- a/app-text/enchant/files/enchant-1.6.0-hunspell140_fix.patch
100 +++ /dev/null
101 @@ -1,16 +0,0 @@
102 -https://bugs.gentoo.org/583486
103 -http://bugzilla.abisource.com/show_bug.cgi?id=13772
104 -
105 ---- enchant-1.6.0/src/myspell/myspell_checker.cpp
106 -+++ enchant-1.6.0/src/myspell/myspell_checker.cpp
107 -@@ -148,6 +148,10 @@
108 - g_iconv_close(m_translate_out);
109 - }
110 -
111 -+#ifndef MAXWORDLEN
112 -+# define MAXWORDLEN 100
113 -+#endif
114 -+
115 - bool
116 - MySpellChecker::checkWord(const char *utf8Word, size_t len)
117 - {