commit:     c486ea61f8752fed6e0075e214f21c5cc2d01781
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 20 12:30:33 2017 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Nov 20 12:31:39 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c486ea61

dev-libs/xapian: remove older stable version

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-libs/xapian/Manifest             |  1 -
 dev-libs/xapian/xapian-1.2.22.ebuild | 66 ------------------------------------
 2 files changed, 67 deletions(-)

diff --git a/dev-libs/xapian/Manifest b/dev-libs/xapian/Manifest
index 56250630561..eaba29e03c6 100644
--- a/dev-libs/xapian/Manifest
+++ b/dev-libs/xapian/Manifest
@@ -1,4 +1,3 @@
-DIST xapian-core-1.2.22.tar.xz 3204096 SHA256 
269b87ca3faf79d444e8bb82ed58a96f1955008d7702f9966dec68608588527f SHA512 
cb6bd565eb307f9bc8f801fc9cda0cc6ad5d7cb8bf0af2ab6e42d48ca4ea4169f08621db810ab87d15957d0f873bcb0336e16b12fdb6026375d9c0192781e0d6
 WHIRLPOOL 
580c16889a6c3e99a00f8bb791f878a08ff3522c3dffb18ace18d54575247332f0fff8866f46475513dde7544205fe08971cbd284ec3714ce0d6b9b445e8746e
 DIST xapian-core-1.2.24.tar.xz 3210192 SHA256 
57a82717ba07e9777958b6ef48d94b81ea41ac4c74d544f74da597fab1e1f87b SHA512 
1f8ae5848f94b5f0bee03024f12ae8c336b6d85e58f7b36e885fe604f9fb962c0525e1f44e6cfcd183e811226c61b23f0f2fcc35c7d2e63544b19347a0f96c80
 WHIRLPOOL 
fef6db7f393d4563828e1650eecd02e30d37f5837042b6a8992cfddb962593675f9c3af4eb5d387db71f99468235905bdbe5666f91975b260cb649fd422425ae
 DIST xapian-core-1.2.25.tar.xz 3253292 SHA256 
7c77ff259bc92414c620015d6798f5f3e2c52907936096ec97c23c17fc0d6403 SHA512 
a15b5d9b5770337519f671732f53f0642b31f08206824500d589ba309c9e91a05a30353d66ebf70a4c1cb1824b44e1c7b7630e799de3b15d645cf951a6017bfe
 WHIRLPOOL 
6b6335fcf2beff23930ea20822fdd1251307d095f09424b36734a9ba001cecbf7398d525022c37b1d8b8d7d612f509946469dcbacc207cd51e68ce8bb75ce3d1
 DIST xapian-core-1.4.4.tar.xz 2807952 SHA256 
a6a985a9841a452d75cf2169196b7ca6ebeef27da7c607078cd401ad041732d9 SHA512 
dc88bab1d82c68b29d51c2113319ddb5d16840f3544b9d5fcc7a3671f97d58f16ddff58b865ad3521ea778cbaacf73fe7346bb514a1275f1f739283a4128d001
 WHIRLPOOL 
f1b89b0a5ad47111eb4fe068a5aee29033b694fdd6405041972ebfcc81333662ce74bfc0251a37be9a0d04d7cc232681173e1443840277eedac814b46d9bc728

diff --git a/dev-libs/xapian/xapian-1.2.22.ebuild 
b/dev-libs/xapian/xapian-1.2.22.ebuild
deleted file mode 100644
index 64943e9c15d..00000000000
--- a/dev-libs/xapian/xapian-1.2.22.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils
-
-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/1.2.22" # ABI version of libxapian.so, prefixed with 1.2.
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86"
-IUSE="doc static-libs -cpu_flags_x86_sse +cpu_flags_x86_sse2 +brass +chert 
+inmemory"
-
-DEPEND="sys-libs/zlib"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-       local myconf=""
-
-       einfo
-       if use cpu_flags_x86_sse2; then
-               einfo "Using sse2"
-               myconf="${myconf} --enable-sse=sse2"
-       else
-               if use cpu_flags_x86_sse; then
-                       einfo "Using sse"
-                       myconf="${myconf} --enable-sse=sse"
-               else
-                       einfo "Disabling sse and sse2"
-                       myconf="${myconf} --disable-sse"
-               fi
-       fi
-       einfo
-
-       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}" || die
-       use doc || rm -rf "${D}usr/share/doc/${PF}"
-
-       dodoc AUTHORS HACKING PLATFORMS README NEWS
-
-       prune_libtool_files --all
-}
-
-src_test() {
-       emake check VALGRIND=
-}

Reply via email to