diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-06-04 13:44:05 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-06-04 13:44:05 +0000 |
commit | 2ce58a2eba62d08acd4c27e21eac7ed08a8db788 (patch) | |
tree | 6957c8671b4a353141827a24c7034ed6812d3168 /app-misc/sphinx | |
parent | Fix problems with sessions in integration tests according to https://rails.li... (diff) | |
download | gentoo-2-2ce58a2eba62d08acd4c27e21eac7ed08a8db788.tar.gz gentoo-2-2ce58a2eba62d08acd4c27e21eac7ed08a8db788.tar.bz2 gentoo-2-2ce58a2eba62d08acd4c27e21eac7ed08a8db788.zip |
Remove old versions.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/sphinx')
-rw-r--r-- | app-misc/sphinx/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/sphinx/sphinx-0.9.8.ebuild | 56 | ||||
-rw-r--r-- | app-misc/sphinx/sphinx-0.9.9_rc1.ebuild | 56 | ||||
-rw-r--r-- | app-misc/sphinx/sphinx-0.9.9_rc2-r1.ebuild | 58 | ||||
-rw-r--r-- | app-misc/sphinx/sphinx-0.9.9_rc2-r2.ebuild | 66 | ||||
-rw-r--r-- | app-misc/sphinx/sphinx-0.9.9_rc2.ebuild | 56 |
6 files changed, 6 insertions, 293 deletions
diff --git a/app-misc/sphinx/ChangeLog b/app-misc/sphinx/ChangeLog index a3023bcf8c58..0b3b645dac5d 100644 --- a/app-misc/sphinx/ChangeLog +++ b/app-misc/sphinx/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/sphinx # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/ChangeLog,v 1.23 2010/06/02 17:56:07 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/ChangeLog,v 1.24 2010/06/04 13:44:05 graaff Exp $ + + 04 Jun 2010; Hans de Graaff <graaff@gentoo.org> -sphinx-0.9.8.ebuild, + -sphinx-0.9.9_rc1.ebuild, -sphinx-0.9.9_rc2.ebuild, + -sphinx-0.9.9_rc2-r1.ebuild, -sphinx-0.9.9_rc2-r2.ebuild: + Remove old versions. 02 Jun 2010; Hans de Graaff <graaff@gentoo.org> metadata.xml: Take over maintainership. diff --git a/app-misc/sphinx/sphinx-0.9.8.ebuild b/app-misc/sphinx/sphinx-0.9.8.ebuild deleted file mode 100644 index 5574f32e68e2..000000000000 --- a/app-misc/sphinx/sphinx-0.9.8.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/sphinx-0.9.8.ebuild,v 1.4 2009/07/23 21:48:24 gengor Exp $ - -inherit eutils autotools - -MY_P=${P/_/-} - -DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL" -HOMEPAGE="http://www.sphinxsearch.com/" -SRC_URI="http://sphinxsearch.com/downloads/${MY_P}.tar.gz - stemmer? ( http://snowball.tartarus.org/dist/libstemmer_c.tgz )" -RESTRICT="mirror" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="debug id64 mysql postgres stemmer test" - -DEPEND="mysql? ( virtual/mysql ) - postgres? ( virtual/postgresql-base )" -RDEPEND="${DEPEND} - test? ( dev-lang/php )" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${MY_P}.tar.gz - if use stemmer; then - cd "${S}" - unpack libstemmer_c.tgz - fi - cd "${S}" - eautoreconf -} - -src_compile() { - econf \ - --sysconfdir="/etc/${PN}" \ - $(use_enable id64) \ - $(use_with debug) \ - $(use_with mysql) \ - $(use_with postgres pgsql) \ - $(use_with stemmer libstemmer) - - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "install failed" - dodoc doc/* - - dodir /var/lib/sphinx - dodir /var/log/sphinx - dodir /var/run/sphinx -} diff --git a/app-misc/sphinx/sphinx-0.9.9_rc1.ebuild b/app-misc/sphinx/sphinx-0.9.9_rc1.ebuild deleted file mode 100644 index d815edae0037..000000000000 --- a/app-misc/sphinx/sphinx-0.9.9_rc1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/sphinx-0.9.9_rc1.ebuild,v 1.2 2009/07/23 21:48:24 gengor Exp $ - -inherit eutils autotools - -MY_P=${P/_/-} - -DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL" -HOMEPAGE="http://www.sphinxsearch.com/" -SRC_URI="http://sphinxsearch.com/downloads/${MY_P}.tar.gz - stemmer? ( http://snowball.tartarus.org/dist/libstemmer_c.tgz )" -RESTRICT="mirror" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug id64 mysql postgres stemmer test" - -DEPEND="mysql? ( virtual/mysql ) - postgres? ( virtual/postgresql-base )" -RDEPEND="${DEPEND} - test? ( dev-lang/php )" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${MY_P}.tar.gz - if use stemmer; then - cd "${S}" - unpack libstemmer_c.tgz - fi - cd "${S}" - eautoreconf -} - -src_compile() { - econf \ - --sysconfdir="/etc/${PN}" \ - $(use_enable id64) \ - $(use_with debug) \ - $(use_with mysql) \ - $(use_with postgres pgsql) \ - $(use_with stemmer libstemmer) - - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "install failed" - dodoc doc/* - - dodir /var/lib/sphinx - dodir /var/log/sphinx - dodir /var/run/sphinx -} diff --git a/app-misc/sphinx/sphinx-0.9.9_rc2-r1.ebuild b/app-misc/sphinx/sphinx-0.9.9_rc2-r1.ebuild deleted file mode 100644 index a00b3628df6b..000000000000 --- a/app-misc/sphinx/sphinx-0.9.9_rc2-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/sphinx-0.9.9_rc2-r1.ebuild,v 1.1 2009/11/05 15:41:57 graaff Exp $ - -inherit eutils autotools - -MY_P=${P/_/-} - -DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL" -HOMEPAGE="http://www.sphinxsearch.com/" -SRC_URI="http://sphinxsearch.com/downloads/${MY_P}.tar.gz - stemmer? ( http://snowball.tartarus.org/dist/libstemmer_c.tgz )" -RESTRICT="mirror" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug id64 mysql postgres stemmer test" - -DEPEND="mysql? ( virtual/mysql ) - postgres? ( virtual/postgresql-base )" -RDEPEND="${DEPEND} - test? ( dev-lang/php )" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${MY_P}.tar.gz - if use stemmer; then - cd "${S}" - unpack libstemmer_c.tgz - fi - cd "${S}" - eautoreconf -} - -src_compile() { - econf \ - --sysconfdir="/etc/${PN}" \ - $(use_enable id64) \ - $(use_with debug) \ - $(use_with mysql) \ - $(use_with postgres pgsql) \ - $(use_with stemmer libstemmer) - - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "install failed" - dodoc doc/* - - dodir /var/lib/sphinx - dodir /var/log/sphinx - dodir /var/run/sphinx - - newinitd "${FILESDIR}"/searchd.rc searchd -} diff --git a/app-misc/sphinx/sphinx-0.9.9_rc2-r2.ebuild b/app-misc/sphinx/sphinx-0.9.9_rc2-r2.ebuild deleted file mode 100644 index f6ebad84acdd..000000000000 --- a/app-misc/sphinx/sphinx-0.9.9_rc2-r2.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/sphinx-0.9.9_rc2-r2.ebuild,v 1.2 2009/11/22 22:05:20 robbat2 Exp $ - -EAPI=2 -inherit eutils autotools - -MY_P=${P/_/-} - -# This has been added by Gentoo, to explicitly version libstemmer. -# It is the date that http://snowball.tartarus.org/dist/libstemmer_c.tgz was -# fetched. -STEMMER_PV="20091122" -DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL" -HOMEPAGE="http://www.sphinxsearch.com/" -SRC_URI="http://sphinxsearch.com/downloads/${MY_P}.tar.gz - stemmer? ( mirror://gentoo/libstemmer_c-${STEMMER_PV}.tgz )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug id64 mysql postgres stemmer test" - -RDEPEND="mysql? ( virtual/mysql ) - postgres? ( virtual/postgresql-base )" -DEPEND="${RDEPEND} - test? ( dev-lang/php )" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${MY_P}.tar.gz - if use stemmer; then - cd "${S}" - unpack libstemmer_c-${STEMMER_PV}.tgz - fi -} - -src_prepare() { - eautoreconf -} - -src_configure() { - econf \ - --sysconfdir="/etc/${PN}" \ - $(use_enable id64) \ - $(use_with debug) \ - $(use_with mysql) \ - $(use_with postgres pgsql) \ - $(use_with stemmer libstemmer) -} - -src_compile() { - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "install failed" - dodoc doc/* - - dodir /var/lib/sphinx - dodir /var/log/sphinx - dodir /var/run/sphinx - - newinitd "${FILESDIR}"/searchd.rc searchd -} diff --git a/app-misc/sphinx/sphinx-0.9.9_rc2.ebuild b/app-misc/sphinx/sphinx-0.9.9_rc2.ebuild deleted file mode 100644 index 96617f57ee4f..000000000000 --- a/app-misc/sphinx/sphinx-0.9.9_rc2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/sphinx/sphinx-0.9.9_rc2.ebuild,v 1.1 2009/07/23 21:48:24 gengor Exp $ - -inherit eutils autotools - -MY_P=${P/_/-} - -DESCRIPTION="Full-text search engine with support for MySQL and PostgreSQL" -HOMEPAGE="http://www.sphinxsearch.com/" -SRC_URI="http://sphinxsearch.com/downloads/${MY_P}.tar.gz - stemmer? ( http://snowball.tartarus.org/dist/libstemmer_c.tgz )" -RESTRICT="mirror" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug id64 mysql postgres stemmer test" - -DEPEND="mysql? ( virtual/mysql ) - postgres? ( virtual/postgresql-base )" -RDEPEND="${DEPEND} - test? ( dev-lang/php )" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${MY_P}.tar.gz - if use stemmer; then - cd "${S}" - unpack libstemmer_c.tgz - fi - cd "${S}" - eautoreconf -} - -src_compile() { - econf \ - --sysconfdir="/etc/${PN}" \ - $(use_enable id64) \ - $(use_with debug) \ - $(use_with mysql) \ - $(use_with postgres pgsql) \ - $(use_with stemmer libstemmer) - - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "install failed" - dodoc doc/* - - dodir /var/lib/sphinx - dodir /var/log/sphinx - dodir /var/run/sphinx -} |