Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/xapian/
Date: Mon, 20 Nov 2017 12:31:49
Message-Id: 1511181099.c486ea61f8752fed6e0075e214f21c5cc2d01781.blueness@gentoo
1 commit: c486ea61f8752fed6e0075e214f21c5cc2d01781
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 20 12:30:33 2017 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 20 12:31:39 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c486ea61
7
8 dev-libs/xapian: remove older stable version
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11
12 dev-libs/xapian/Manifest | 1 -
13 dev-libs/xapian/xapian-1.2.22.ebuild | 66 ------------------------------------
14 2 files changed, 67 deletions(-)
15
16 diff --git a/dev-libs/xapian/Manifest b/dev-libs/xapian/Manifest
17 index 56250630561..eaba29e03c6 100644
18 --- a/dev-libs/xapian/Manifest
19 +++ b/dev-libs/xapian/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST xapian-core-1.2.22.tar.xz 3204096 SHA256 269b87ca3faf79d444e8bb82ed58a96f1955008d7702f9966dec68608588527f SHA512 cb6bd565eb307f9bc8f801fc9cda0cc6ad5d7cb8bf0af2ab6e42d48ca4ea4169f08621db810ab87d15957d0f873bcb0336e16b12fdb6026375d9c0192781e0d6 WHIRLPOOL 580c16889a6c3e99a00f8bb791f878a08ff3522c3dffb18ace18d54575247332f0fff8866f46475513dde7544205fe08971cbd284ec3714ce0d6b9b445e8746e
22 DIST xapian-core-1.2.24.tar.xz 3210192 SHA256 57a82717ba07e9777958b6ef48d94b81ea41ac4c74d544f74da597fab1e1f87b SHA512 1f8ae5848f94b5f0bee03024f12ae8c336b6d85e58f7b36e885fe604f9fb962c0525e1f44e6cfcd183e811226c61b23f0f2fcc35c7d2e63544b19347a0f96c80 WHIRLPOOL fef6db7f393d4563828e1650eecd02e30d37f5837042b6a8992cfddb962593675f9c3af4eb5d387db71f99468235905bdbe5666f91975b260cb649fd422425ae
23 DIST xapian-core-1.2.25.tar.xz 3253292 SHA256 7c77ff259bc92414c620015d6798f5f3e2c52907936096ec97c23c17fc0d6403 SHA512 a15b5d9b5770337519f671732f53f0642b31f08206824500d589ba309c9e91a05a30353d66ebf70a4c1cb1824b44e1c7b7630e799de3b15d645cf951a6017bfe WHIRLPOOL 6b6335fcf2beff23930ea20822fdd1251307d095f09424b36734a9ba001cecbf7398d525022c37b1d8b8d7d612f509946469dcbacc207cd51e68ce8bb75ce3d1
24 DIST xapian-core-1.4.4.tar.xz 2807952 SHA256 a6a985a9841a452d75cf2169196b7ca6ebeef27da7c607078cd401ad041732d9 SHA512 dc88bab1d82c68b29d51c2113319ddb5d16840f3544b9d5fcc7a3671f97d58f16ddff58b865ad3521ea778cbaacf73fe7346bb514a1275f1f739283a4128d001 WHIRLPOOL f1b89b0a5ad47111eb4fe068a5aee29033b694fdd6405041972ebfcc81333662ce74bfc0251a37be9a0d04d7cc232681173e1443840277eedac814b46d9bc728
25
26 diff --git a/dev-libs/xapian/xapian-1.2.22.ebuild b/dev-libs/xapian/xapian-1.2.22.ebuild
27 deleted file mode 100644
28 index 64943e9c15d..00000000000
29 --- a/dev-libs/xapian/xapian-1.2.22.ebuild
30 +++ /dev/null
31 @@ -1,66 +0,0 @@
32 -# Copyright 1999-2016 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI="5"
36 -
37 -inherit eutils
38 -
39 -MY_P="${PN}-core-${PV}"
40 -
41 -DESCRIPTION="Xapian Probabilistic Information Retrieval library"
42 -HOMEPAGE="http://www.xapian.org/"
43 -SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0/1.2.22" # ABI version of libxapian.so, prefixed with 1.2.
47 -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86"
48 -IUSE="doc static-libs -cpu_flags_x86_sse +cpu_flags_x86_sse2 +brass +chert +inmemory"
49 -
50 -DEPEND="sys-libs/zlib"
51 -RDEPEND="${DEPEND}"
52 -
53 -S="${WORKDIR}/${MY_P}"
54 -
55 -src_configure() {
56 - local myconf=""
57 -
58 - einfo
59 - if use cpu_flags_x86_sse2; then
60 - einfo "Using sse2"
61 - myconf="${myconf} --enable-sse=sse2"
62 - else
63 - if use cpu_flags_x86_sse; then
64 - einfo "Using sse"
65 - myconf="${myconf} --enable-sse=sse"
66 - else
67 - einfo "Disabling sse and sse2"
68 - myconf="${myconf} --disable-sse"
69 - fi
70 - fi
71 - einfo
72 -
73 - myconf="${myconf} $(use_enable static-libs static)"
74 -
75 - use brass || myconf="${myconf} --disable-backend-brass"
76 - use chert || myconf="${myconf} --disable-backend-chert"
77 - use inmemory || myconf="${myconf} --disable-backend-inmemory"
78 -
79 - myconf="${myconf} --enable-backend-flint --enable-backend-remote"
80 -
81 - econf $myconf
82 -}
83 -
84 -src_install() {
85 - emake DESTDIR="${D}" install
86 -
87 - mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}" || die
88 - use doc || rm -rf "${D}usr/share/doc/${PF}"
89 -
90 - dodoc AUTHORS HACKING PLATFORMS README NEWS
91 -
92 - prune_libtool_files --all
93 -}
94 -
95 -src_test() {
96 - emake check VALGRIND=
97 -}