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, 02 Jul 2018 17:49:20
Message-Id: 1530553751.d115260a036c552483a19ce9d540952491574f08.blueness@gentoo
1 commit: d115260a036c552483a19ce9d540952491574f08
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 2 17:48:42 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 2 17:49:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d115260a
7
8 dev-libs/xapian: version bump to 1.4.6
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-libs/xapian/Manifest | 1 +
13 dev-libs/xapian/xapian-1.4.6.ebuild | 78 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 79 insertions(+)
15
16 diff --git a/dev-libs/xapian/Manifest b/dev-libs/xapian/Manifest
17 index c622f225314..6008dd0b604 100644
18 --- a/dev-libs/xapian/Manifest
19 +++ b/dev-libs/xapian/Manifest
20 @@ -2,3 +2,4 @@ DIST xapian-core-1.2.24.tar.xz 3210192 BLAKE2B 062f0c15ce87fb64b0eec5e5e54b76c44
21 DIST xapian-core-1.2.25.tar.xz 3253292 BLAKE2B a130e26188c949d0433d017e8d13e7ecf6241a232d00125699ba8ed63eab9cb1651e02182fcc152f960f4e122709958632779daaaf5760fe50953a3b5b07a243 SHA512 a15b5d9b5770337519f671732f53f0642b31f08206824500d589ba309c9e91a05a30353d66ebf70a4c1cb1824b44e1c7b7630e799de3b15d645cf951a6017bfe
22 DIST xapian-core-1.4.4.tar.xz 2807952 BLAKE2B 92f30c063dca4bd7806c1ab025d6b75564acc3a33a129bdc2cbf496518897addb2b63bd772b648a7a199041ea7b90534fb5c4692e94e1e3ef0a7f20301e28e8e SHA512 dc88bab1d82c68b29d51c2113319ddb5d16840f3544b9d5fcc7a3671f97d58f16ddff58b865ad3521ea778cbaacf73fe7346bb514a1275f1f739283a4128d001
23 DIST xapian-core-1.4.5.tar.xz 2810612 BLAKE2B 7784e69e3ca064751d829173949fcde65661c2c2070fdc8392cf2b6d40874a3e5b1265e61f25dd39b33e179b3fe3842b67f33a55523c3a18e9b65528e6a23a1e SHA512 cff97a856a406583ca81164ddb704a0eeae7d8d6f94ce3b3f53d5208d657423e87dd06bdc7acb5e5904765bce1cefbc98365cde315c1d46f7b18cfba7b022ae6
24 +DIST xapian-core-1.4.6.tar.xz 2839964 BLAKE2B ab35e3098d8cf99656539968171073683811dc9a98b7d26e389c0cb1e8d1b70f9007e0ba61defe496713cb0f304a0fed7afa253174e900c0756084ab40721573 SHA512 f08168eba26a24ea00c2219d2cdfac1d904b51162fdd98d437564786375245e00010986a7d6e9c8c7548ae19aab80434b5cb0051252f902b40db2976b1008fe2
25
26 diff --git a/dev-libs/xapian/xapian-1.4.6.ebuild b/dev-libs/xapian/xapian-1.4.6.ebuild
27 new file mode 100644
28 index 00000000000..564cf8ba016
29 --- /dev/null
30 +++ b/dev-libs/xapian/xapian-1.4.6.ebuild
31 @@ -0,0 +1,78 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="6"
36 +
37 +inherit eutils multilib-minimal
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/30" # ABI version of libxapian.so
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x64-solaris"
48 +IUSE="doc static-libs -cpu_flags_x86_sse +cpu_flags_x86_sse2 +glass +chert +inmemory"
49 +
50 +DEPEND="sys-libs/zlib"
51 +RDEPEND="${DEPEND}"
52 +
53 +REQUIRED_USE="inmemory? ( chert )"
54 +
55 +S="${WORKDIR}/${MY_P}"
56 +
57 +multilib_src_configure() {
58 + local myconf=""
59 +
60 + if use cpu_flags_x86_sse2; then
61 + myconf="${myconf} --enable-sse=sse2"
62 + else
63 + if use cpu_flags_x86_sse; then
64 + myconf="${myconf} --enable-sse=sse"
65 + else
66 + myconf="${myconf} --disable-sse"
67 + fi
68 + fi
69 +
70 + myconf="${myconf} $(use_enable static-libs static)"
71 +
72 + use glass || myconf="${myconf} --disable-backend-glass"
73 + use chert || myconf="${myconf} --disable-backend-chert"
74 + use inmemory || myconf="${myconf} --disable-backend-inmemory"
75 +
76 + myconf="${myconf} --enable-backend-remote --program-suffix="
77 +
78 + ECONF_SOURCE=${S} econf $myconf
79 +}
80 +
81 +MULTILIB_WRAPPED_HEADERS=(
82 + /usr/include/xapian/postingsource.h
83 + /usr/include/xapian/attributes.h
84 + /usr/include/xapian/valuesetmatchdecider.h
85 + /usr/include/xapian/version.h
86 + /usr/include/xapian/version.h
87 + /usr/include/xapian/types.h
88 + /usr/include/xapian/positioniterator.h
89 + /usr/include/xapian/registry.h
90 +)
91 +
92 +multilib_src_install() {
93 + emake DESTDIR="${D}" install
94 +}
95 +
96 +multilib_src_install_all() {
97 + # bug #573466
98 + ln -sf "${D}usr/bin/xapian-config" "${D}usr/bin/xapian-config-1.3"
99 +
100 + use doc || rm -rf "${D}usr/share/doc/xapian-core-${PV}"
101 +
102 + dodoc AUTHORS HACKING PLATFORMS README NEWS
103 +
104 + prune_libtool_files --all
105 +}
106 +
107 +multilib_src_test() {
108 + emake check VALGRIND=
109 +}