summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2014-10-21 21:18:29 +0000
committerAnthony G. Basile <blueness@gentoo.org>2014-10-21 21:18:29 +0000
commite581ee2603416a188976093807ae6a84d51a3dd9 (patch)
tree0b8b355887e4eefeca5f09f6c62921d3dbbb9a17 /dev-libs/xapian
parentRemove older versions (diff)
downloadgentoo-2-e581ee2603416a188976093807ae6a84d51a3dd9.tar.gz
gentoo-2-e581ee2603416a188976093807ae6a84d51a3dd9.tar.bz2
gentoo-2-e581ee2603416a188976093807ae6a84d51a3dd9.zip
Remove older versions
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'dev-libs/xapian')
-rw-r--r--dev-libs/xapian/ChangeLog6
-rw-r--r--dev-libs/xapian/xapian-1.2.13.ebuild63
-rw-r--r--dev-libs/xapian/xapian-1.2.15.ebuild63
-rw-r--r--dev-libs/xapian/xapian-1.2.16.ebuild63
4 files changed, 5 insertions, 190 deletions
diff --git a/dev-libs/xapian/ChangeLog b/dev-libs/xapian/ChangeLog
index af3963606829..69fea6d0d82f 100644
--- a/dev-libs/xapian/ChangeLog
+++ b/dev-libs/xapian/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/xapian
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.123 2014/10/21 20:44:11 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.124 2014/10/21 21:18:29 blueness Exp $
+
+ 21 Oct 2014; Anthony G. Basile <blueness@gentoo.org> -xapian-1.2.13.ebuild,
+ -xapian-1.2.15.ebuild, -xapian-1.2.16.ebuild:
+ Remove older versions
*xapian-1.2.19 (21 Oct 2014)
diff --git a/dev-libs/xapian/xapian-1.2.13.ebuild b/dev-libs/xapian/xapian-1.2.13.ebuild
deleted file mode 100644
index e730001669fb..000000000000
--- a/dev-libs/xapian/xapian-1.2.13.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.13.ebuild,v 1.6 2013/02/15 22:02:33 ago Exp $
-
-EAPI="4"
-
-MY_P="${PN}-core-${PV}"
-
-DESCRIPTION="Xapian Probabilistic Information Retrieval library"
-HOMEPAGE="http://www.xapian.org/"
-SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86"
-IUSE="doc static-libs -sse +sse2 +brass +chert +inmemory"
-
-DEPEND="sys-libs/zlib"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- local myconf=""
-
- ewarn
- if use sse2; then
- ewarn "Using sse2"
- myconf="${myconf} --enable-sse=sse2"
- else
- if use sse; then
- ewarn "Using sse"
- myconf="${myconf} --enable-sse=sse"
- else
- ewarn "Disabling sse and sse2"
- myconf="${myconf} --disable-sse"
- fi
- fi
- ewarn
-
- myconf="${myconf} $(use_enable static-libs static)"
-
- use brass || myconf="${myconf} --disable-backend-brass"
- use chert || myconf="${myconf} --disable-backend-chert"
- use inmemory || myconf="${myconf} --disable-backend-inmemory"
-
- myconf="${myconf} --enable-backend-flint --enable-backend-remote"
-
- econf $myconf
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}"
- use doc || rm -rf "${D}usr/share/doc/${PF}"
-
- dodoc AUTHORS HACKING PLATFORMS README NEWS
-}
-
-src_test() {
- emake check VALGRIND=
-}
diff --git a/dev-libs/xapian/xapian-1.2.15.ebuild b/dev-libs/xapian/xapian-1.2.15.ebuild
deleted file mode 100644
index 2944d7d5d26d..000000000000
--- a/dev-libs/xapian/xapian-1.2.15.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.15.ebuild,v 1.1 2013/08/12 11:56:55 blueness Exp $
-
-EAPI="5"
-
-MY_P="${PN}-core-${PV}"
-
-DESCRIPTION="Xapian Probabilistic Information Retrieval library"
-HOMEPAGE="http://www.xapian.org/"
-SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc static-libs -sse +sse2 +brass +chert +inmemory"
-
-DEPEND="sys-libs/zlib"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- local myconf=""
-
- ewarn
- if use sse2; then
- ewarn "Using sse2"
- myconf="${myconf} --enable-sse=sse2"
- else
- if use sse; then
- ewarn "Using sse"
- myconf="${myconf} --enable-sse=sse"
- else
- ewarn "Disabling sse and sse2"
- myconf="${myconf} --disable-sse"
- fi
- fi
- ewarn
-
- myconf="${myconf} $(use_enable static-libs static)"
-
- use brass || myconf="${myconf} --disable-backend-brass"
- use chert || myconf="${myconf} --disable-backend-chert"
- use inmemory || myconf="${myconf} --disable-backend-inmemory"
-
- myconf="${myconf} --enable-backend-flint --enable-backend-remote"
-
- econf $myconf
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}"
- use doc || rm -rf "${D}usr/share/doc/${PF}"
-
- dodoc AUTHORS HACKING PLATFORMS README NEWS
-}
-
-src_test() {
- emake check VALGRIND=
-}
diff --git a/dev-libs/xapian/xapian-1.2.16.ebuild b/dev-libs/xapian/xapian-1.2.16.ebuild
deleted file mode 100644
index be247a7890f8..000000000000
--- a/dev-libs/xapian/xapian-1.2.16.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.16.ebuild,v 1.1 2013/12/05 18:36:55 blueness Exp $
-
-EAPI="5"
-
-MY_P="${PN}-core-${PV}"
-
-DESCRIPTION="Xapian Probabilistic Information Retrieval library"
-HOMEPAGE="http://www.xapian.org/"
-SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc static-libs -sse +sse2 +brass +chert +inmemory"
-
-DEPEND="sys-libs/zlib"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- local myconf=""
-
- ewarn
- if use sse2; then
- ewarn "Using sse2"
- myconf="${myconf} --enable-sse=sse2"
- else
- if use sse; then
- ewarn "Using sse"
- myconf="${myconf} --enable-sse=sse"
- else
- ewarn "Disabling sse and sse2"
- myconf="${myconf} --disable-sse"
- fi
- fi
- ewarn
-
- myconf="${myconf} $(use_enable static-libs static)"
-
- use brass || myconf="${myconf} --disable-backend-brass"
- use chert || myconf="${myconf} --disable-backend-chert"
- use inmemory || myconf="${myconf} --disable-backend-inmemory"
-
- myconf="${myconf} --enable-backend-flint --enable-backend-remote"
-
- econf $myconf
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}"
- use doc || rm -rf "${D}usr/share/doc/${PF}"
-
- dodoc AUTHORS HACKING PLATFORMS README NEWS
-}
-
-src_test() {
- emake check VALGRIND=
-}