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: Sat, 27 Oct 2018 14:18:12
Message-Id: 1540649881.1d7ed8b848a4f7ceba77fc20f923bfc02eba4fea.blueness@gentoo
1 commit: 1d7ed8b848a4f7ceba77fc20f923bfc02eba4fea
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 27 14:17:35 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 27 14:18:01 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d7ed8b8
7
8 app-text/xapian-omega: version bump to 1.4.8
9
10 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 app-text/xapian-omega/Manifest | 1 +
14 app-text/xapian-omega/xapian-omega-1.4.8.ebuild | 42 +++++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/app-text/xapian-omega/Manifest b/app-text/xapian-omega/Manifest
18 index 52407ddbc0c..09e482166c5 100644
19 --- a/app-text/xapian-omega/Manifest
20 +++ b/app-text/xapian-omega/Manifest
21 @@ -4,3 +4,4 @@ DIST xapian-omega-1.4.4.tar.xz 501712 BLAKE2B d46a463c323bf75db6d426e0ac2057f4cd
22 DIST xapian-omega-1.4.5.tar.xz 502820 BLAKE2B 3077a9a4fd177daa7f8470bea0b8dde25402235fee280118a90930888543b2da7821ad7d30143d04d35dccfb0de6c375231f2db4a4f4dcbaeeaf5d4e54045cfc SHA512 895da1e1a3ddf2e5e8576fd41853cc5cb7c6e4f0223a0d25f6303fd01ca26f64c8e41616d6d66b2309a4ca5763b2b20b208dbf6054f0498411f2678422c07893
23 DIST xapian-omega-1.4.6.tar.xz 510012 BLAKE2B 2c6d3479fe02eb3b44ef0995b0dfc2ce47012104bc860532967f234ccb7bb2a3357337419fbf5b79b42d0f598608fe9a071edca2195e4f025fb69760091c78ec SHA512 9376145c9c7c728bf444f5891777fe946bc574a4c91ef65779aae4cd2f40c76b33cde1231f654f23de32df8a4eea4aa0c69868d269ec79fba3abad2567ffb80d
24 DIST xapian-omega-1.4.7.tar.xz 510644 BLAKE2B e2106b07a0ccf765dad25c3e83a745936156b002e638fbd9cbd1fd194f507ad663c305fc4981d72f92a74f645601aa83b1bc3133d10d8d4c308f28657a90a356 SHA512 e7e2c7dfa3e76ccdde103b34aa1b0732033e9f218346a81f1b0b865c6e2d17c356b96a4522a3a2273fb55eb2fbd2dd57e835368771f46c9fb458c0c11329893b
25 +DIST xapian-omega-1.4.8.tar.xz 521352 BLAKE2B 01d914c0dcd7e8a8cf7ec4b997af49c01883d83a5c9bd1c59da058d3329dab5f517bb4d3aa243a3e47ad36311acafd64505fda1ecf86d3605a38ef70760d8711 SHA512 5d27c03891ff941b23c899b1a293ed9be0129de08ff46156380638408360ea6e4aa2dfb4fe0ffb13726807849802fe8d19f6dc817a52ec5bf50c2bf94ed94c2f
26
27 diff --git a/app-text/xapian-omega/xapian-omega-1.4.8.ebuild b/app-text/xapian-omega/xapian-omega-1.4.8.ebuild
28 new file mode 100644
29 index 00000000000..2790bf5b9f0
30 --- /dev/null
31 +++ b/app-text/xapian-omega/xapian-omega-1.4.8.ebuild
32 @@ -0,0 +1,42 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="6"
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="https://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/30
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 + # Protect /etc/omega.conf
58 + echo "CONFIG_PROTECT=\"/etc/omega.conf\"" > "${T}"/20xapian-omega
59 + doenvd "${T}"/20xapian-omega
60 + dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
61 +
62 + # Directory containing Xapian databases:
63 + keepdir /var/lib/omega/data
64 +
65 + # Directory containing OmegaScript templates:
66 + keepdir /var/lib/omega/templates
67 + mv "${S}"/templates/* "${D}"/var/lib/omega/templates || die
68 +
69 + # Directory to write Omega logs to:
70 + keepdir /var/log/omega
71 +
72 + # Directory containing any cdb files for the $lookup OmegaScript command:
73 + keepdir /var/lib/omega/cdb
74 +}