Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/sphinx/
Date: Fri, 27 Jul 2018 05:22:57
Message-Id: 1532668954.9221190bb5a3bd25e72facd428384abf98e9cf9f.graaff@gentoo
1 commit: 9221190bb5a3bd25e72facd428384abf98e9cf9f
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 27 04:25:57 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 27 05:22:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9221190b
7
8 app-misc/sphinx: cleanup
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-misc/sphinx/Manifest | 2 -
13 app-misc/sphinx/sphinx-2.0.10.ebuild | 103 -----------------------------------
14 2 files changed, 105 deletions(-)
15
16 diff --git a/app-misc/sphinx/Manifest b/app-misc/sphinx/Manifest
17 index 2e5519e7a36..311a7412d3d 100644
18 --- a/app-misc/sphinx/Manifest
19 +++ b/app-misc/sphinx/Manifest
20 @@ -1,4 +1,2 @@
21 -DIST libstemmer_c-20091122.tgz 129207 BLAKE2B 8ebf49f4d2b7dd5d0e56e5a032f16e807cc7c400b4c4a0e73601ace17908b441789ceca87c0258c17b4201b43751df5fad890fecc3a1aaeba60f83c80beecf32 SHA512 d1b2203dcc3d0f421526d3ec2f7e04889f93221222efe50501b4a1c7e74dfc51905141d4ada5a76feab5cec8dbc64f55dd55b53f6e89f658c67e72dc6667091d
22 -DIST sphinx-2.0.10-release.tar.gz 2016687 BLAKE2B 176a14c2e1ecc859f5499eab2b2ee9cb9047ec6d07b407c0dbd3a405a9ca6198e1480166a245f7f523e3c3555bf8fe7ad7f0733bce5371f1b35ce6894dfafa6c SHA512 d22a0ce261cd6decda2e9e91fc9806699c818bb45a9c9c5e11a0944a698d47b5862c577eb55e7b57dd208db982e7f8bfc7163af37aaedc1c537841aff1409952
23 DIST sphinx-2.1.9-release.tar.gz 2443797 BLAKE2B d741d0bc915ece01c3ddcbfacd44f34ef5d772d2bdf07aecb3a704dc0c5ef551e9d3829af200b1c96e41be2a037552c28a83647af78e827d7a9627f1d9d536a8 SHA512 7f4538011db5d68bd00c00978d476f780fc2d355113bd2819996bacbaef90b0de5b14c946a9aad83157b818d9b6b01ee0a26bc72862cfd151067ad9967c18f56
24 DIST sphinx-2.2.11-release.tar.gz 3061998 BLAKE2B 63abdf3d08046ebafcdfd67d3445325b9b127e4dd66ba9d36b3b7053ba80f1f3308b74fd1e01caae6174850e1db22c743454894584bad4a4bec78d533a002668 SHA512 cf1a262a5b0fbf0bd2827ec6ec629edeaf709ce855a6e7b509b65342baaeb26c02717ca63f1578d32c83d21e2fd6d1e92dceb34660e6351b93cd96fd4e623689
25
26 diff --git a/app-misc/sphinx/sphinx-2.0.10.ebuild b/app-misc/sphinx/sphinx-2.0.10.ebuild
27 deleted file mode 100644
28 index b33e16db846..00000000000
29 --- a/app-misc/sphinx/sphinx-2.0.10.ebuild
30 +++ /dev/null
31 @@ -1,103 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -WANT_AUTOMAKE=1.15
38 -
39 -inherit eutils autotools toolchain-funcs
40 -
41 -#MY_P=${P/_/-}
42 -MY_P=${P}-release
43 -
44 -# This has been added by Gentoo, to explicitly version libstemmer.
45 -# It is the date that http://snowball.tartarus.org/dist/libstemmer_c.tgz was
46 -# fetched.
47 -STEMMER_PV="20091122"
48 -DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL"
49 -HOMEPAGE="http://www.sphinxsearch.com/"
50 -SRC_URI="http://sphinxsearch.com/files/${MY_P}.tar.gz
51 - stemmer? ( mirror://gentoo/libstemmer_c-${STEMMER_PV}.tgz )"
52 -
53 -LICENSE="GPL-2"
54 -SLOT="0"
55 -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
56 -IUSE="debug id64 mysql odbc postgres stemmer test"
57 -
58 -RDEPEND="mysql? ( virtual/mysql )
59 - postgres? ( dev-db/postgresql:* )
60 - odbc? ( dev-db/unixODBC )
61 - virtual/libiconv"
62 -DEPEND="${RDEPEND}
63 - test? ( dev-lang/php )"
64 -
65 -S=${WORKDIR}/${MY_P}
66 -
67 -src_unpack() {
68 - unpack ${MY_P}.tar.gz
69 - if use stemmer; then
70 - cd "${S}"
71 - unpack libstemmer_c-${STEMMER_PV}.tgz
72 - fi
73 -}
74 -
75 -src_prepare() {
76 - epatch "${FILESDIR}"/${PN}-2.0.1_beta-darwin8.patch
77 -
78 - # drop nasty hardcoded search path breaking Prefix
79 - # We patch configure directly since otherwise we need to run
80 - # eautoreconf twice and that causes problems, bug 425380
81 - sed -i -e 's/\/usr\/local\//\/someplace\/nonexisting\//g' configure || die
82 -
83 - # Fix QA compilation warnings.
84 - sed -i -e '19i#include <string.h>' api/libsphinxclient/test.c || die
85 -
86 - pushd api/libsphinxclient || die
87 - eautoreconf
88 - popd || die
89 -}
90 -
91 -src_configure() {
92 - # fix libiconv detection
93 - use !elibc_glibc && export ac_cv_search_iconv=-liconv
94 -
95 - econf \
96 - --sysconfdir="${EPREFIX}/etc/${PN}" \
97 - $(use_enable id64) \
98 - $(use_with debug) \
99 - $(use_with mysql) \
100 - $(use_with odbc unixodbc) \
101 - $(use_with postgres pgsql) \
102 - $(use_with stemmer libstemmer)
103 -
104 - cd api/libsphinxclient || die
105 - econf STRIP=:
106 -}
107 -
108 -src_compile() {
109 - emake AR="$(tc-getAR)" || die "emake failed"
110 -
111 - emake -j 1 -C api/libsphinxclient || die "emake libsphinxclient failed"
112 -}
113 -
114 -src_test() {
115 - elog "Tests require access to a live MySQL database and may require configuration."
116 - elog "You will find them in /usr/share/${PN}/test and they require dev-lang/php"
117 -}
118 -
119 -src_install() {
120 - emake DESTDIR="${D}" install || die "install failed"
121 - emake DESTDIR="${D}" -C api/libsphinxclient install || die "install libsphinxclient failed"
122 -
123 - dodoc doc/*
124 -
125 - dodir /var/lib/sphinx
126 - dodir /var/log/sphinx
127 -
128 - newinitd "${FILESDIR}"/searchd.rc searchd
129 -
130 - if use test; then
131 - insinto /usr/share/${PN}
132 - doins -r test
133 - fi
134 -}