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: app-text/xapian-omega/
Date: Wed, 30 Mar 2016 10:22:24
Message-Id: 1459333525.e6e2e8278b03ad82b84219c93142313dbad89bd7.blueness@gentoo
1 commit: e6e2e8278b03ad82b84219c93142313dbad89bd7
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 30 10:25:25 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 30 10:25:25 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6e2e827
7
8 app-text/xapian-omega: version bump to 1.2.23
9
10 Package-Manager: portage-2.2.26
11
12 app-text/xapian-omega/Manifest | 1 +
13 app-text/xapian-omega/xapian-omega-1.2.23.ebuild | 30 ++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/app-text/xapian-omega/Manifest b/app-text/xapian-omega/Manifest
17 index fe3ba9d..3f009bb 100644
18 --- a/app-text/xapian-omega/Manifest
19 +++ b/app-text/xapian-omega/Manifest
20 @@ -1,3 +1,4 @@
21 DIST xapian-omega-1.2.19.tar.xz 419804 SHA256 ca0a9afe2d1ced933408fc0b089c96cd55f90d7b06ae9708eb84294cd77e35ed SHA512 95be43eb25c7da59db7c396879a1bc35df70f0412a66d56c8ef1bc90d7f5930bc8e83fc5e1b3bc8a791fa92ea6e705fb0df5833265f4e95cd8bcce49dda7c976 WHIRLPOOL 101c34c2603d1287685a642b2d9be2aa1eb2779161b1f662f0ba7f91563b319eb0b0dd6def688122df991e56b6fe491cfec5ed93c10ee205948c5885c0d83f2f
22 DIST xapian-omega-1.2.22.tar.xz 437556 SHA256 a7d4b00f6830d003490c0f727fc03584e703cd6e96738e03930f135cd966381b SHA512 c90ef3658cfb7f0337aa946ad04a7173d0aa89e5179c8b9edbfd78156c11d93d6a9ef6055142d26ecd95af8b0cbdf3b061e505c75f37f5e1e3b2ffc272fbaa3b WHIRLPOOL fa500c681fe1c8b82c3d469183ce987b38cd91f110ed1cd7b4e5372525a503c28e310abb15afc31892f2fa4fbd8e74bce07c1b618996541500b3f8d114b06920
23 +DIST xapian-omega-1.2.23.tar.xz 437912 SHA256 55c790204fc0b1ddbd4bdae73aa55eed40671475e13252a71a53a01f80d172ef SHA512 1ea2b090b75f7ab530bbb6af79eb26931684796f9b0a987530f44e7f7f9527929644880f7528198e0ea22f69feabd014783c0b01edaa6673b54f83091e9a5428 WHIRLPOOL 522833f6dc47693885238caac1da80141d909a2c7c89bc5f302e064f5ebded132329000a223f9a11b412adea25c412ff4a99c0f5de9cf25582e62dca02a3bae6
24 DIST xapian-omega-1.3.4.tar.xz 482924 SHA256 f6f31bd46194703adc317cfdbd62ce423fc2f9c96b7b1c9fb2a6bfa2f88779d7 SHA512 5c675d756af271a237182ba0bfd11c453725800adde829bad453d2a3e01144cc12226fc7fcffde0c799fdfc697222ba64de7ebbf5834ec300e6f39985db269d9 WHIRLPOOL 7dfabc7a3fdd9a5d4dc59151862183e4655149c74a291ab585322214fb0caab2e172da11a1bc678ba7bbe352eac4212c785ad4152516b677a68360fac9d4aa37
25
26 diff --git a/app-text/xapian-omega/xapian-omega-1.2.23.ebuild b/app-text/xapian-omega/xapian-omega-1.2.23.ebuild
27 new file mode 100644
28 index 0000000..7de34fb
29 --- /dev/null
30 +++ b/app-text/xapian-omega/xapian-omega-1.2.23.ebuild
31 @@ -0,0 +1,30 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI="5"
37 +
38 +DESCRIPTION="An application built on Xapian, consisting of indexers and a CGI search frontend"
39 +SRC_URI="http://www.oligarchy.co.uk/xapian/${PV}/xapian-omega-${PV}.tar.xz"
40 +HOMEPAGE="http://www.xapian.org/"
41 +S="${WORKDIR}/xapian-omega-${PV}"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
46 +IUSE=""
47 +
48 +DEPEND="dev-libs/xapian:0/1.2.22
49 + dev-lang/perl
50 + dev-libs/libpcre
51 + sys-libs/zlib"
52 +RDEPEND="${DEPEND}"
53 +
54 +src_install () {
55 + emake DESTDIR="${D}" install
56 +
57 + #move docs to /usr/share/doc/${PF}.
58 + mv "${D}/usr/share/doc/xapian-omega" "${D}/usr/share/doc/${PF}"
59 +
60 + dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
61 +}