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: Mon, 26 Sep 2022 01:19:54
Message-Id: 1664155165.0e47c7fdca046db5ec0b34553ba103f2ae26e92b.blueness@gentoo
1 commit: 0e47c7fdca046db5ec0b34553ba103f2ae26e92b
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 26 01:19:25 2022 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 26 01:19:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e47c7fd
7
8 app-text/xapian-omega: version bump 1.4.21
9
10 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
11
12 app-text/xapian-omega/Manifest | 1 +
13 app-text/xapian-omega/xapian-omega-1.4.21.ebuild | 42 ++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/app-text/xapian-omega/Manifest b/app-text/xapian-omega/Manifest
17 index 8fb023090246..b8778a8c7620 100644
18 --- a/app-text/xapian-omega/Manifest
19 +++ b/app-text/xapian-omega/Manifest
20 @@ -2,3 +2,4 @@ DIST xapian-omega-1.4.17.tar.xz 547372 BLAKE2B d164ee2f96d395e2a45919aea821d1bae
21 DIST xapian-omega-1.4.18.tar.xz 549892 BLAKE2B 440f7ac93acca5803c80d905a90db854f36a5fb1e486d5178c25db0490bc01812f2173feb8abb97a2e399449950524db7b557b303c671d1e9a50f062f332008a SHA512 35da36bdaa6997353554604db5ced3f3a05d0862ce5cf357fae639ca88a65ea83bf0be039629e6aedd67f8cb369a7eaeba7f279980c9e2f585083c737c61ea43
22 DIST xapian-omega-1.4.19.tar.xz 553680 BLAKE2B 1008376d2ba6d72d3cc267ee3bda78a1d37491d706417010e0f4ca7dddf78ddd3d9ad07108874eabfffd0280016ce1fad49c86ee89eed9b37ae571586f838c9b SHA512 82b682bc9d244256afffc2ab1b12b0f577184296a979dc42b2865b689c6d46eca6b838b95a5d040dc228de0c2e2261e81279e0a748eaff2d018732ce4bc07fae
23 DIST xapian-omega-1.4.20.tar.xz 563324 BLAKE2B 3836cc1f219f228edbd910dd92eb5bf7f91c6e0e5a1be2fad271dc9246ef0e5dd68d99d48f15c8ac9c449112d492e3becd501413a8c190d0b611d2506f8d82cb SHA512 026ca234d072da39a29d47b5b53033ec7677d51f93a6fedffb2a57ff5b788cc08d94d1dc43ff8c0062639470b8fe3150781008e4b50abd3ec5526b2b98a3a676
24 +DIST xapian-omega-1.4.21.tar.xz 568440 BLAKE2B 445152c23f58471402d8017906083123c0a0e55eb8feed8908dae46680148471a65c51ef146c693cbbb807ce7a70d6589c0a77c2508c39417b95f292d5e8b9f1 SHA512 a313725084c3c336655a3beaa2c1e6c9186027bf6c90f0c5261f748a08e1e8d1ef9d43b0c6bad5bbd5a5af9d1f3db49b915435e5e815f9e97d452590522e85ec
25
26 diff --git a/app-text/xapian-omega/xapian-omega-1.4.21.ebuild b/app-text/xapian-omega/xapian-omega-1.4.21.ebuild
27 new file mode 100644
28 index 000000000000..91ff25791e25
29 --- /dev/null
30 +++ b/app-text/xapian-omega/xapian-omega-1.4.21.ebuild
31 @@ -0,0 +1,42 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="8"
36 +
37 +DESCRIPTION="An application built on Xapian, consisting of indexers and a CGI search frontend"
38 +SRC_URI="http://www.oligarchy.co.uk/xapian/${PV}/xapian-omega-${PV}.tar.xz"
39 +HOMEPAGE="https://xapian.org/"
40 +S="${WORKDIR}/xapian-omega-${PV}"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
45 +IUSE=""
46 +
47 +DEPEND="~dev-libs/xapian-${PV}:0/30
48 + dev-lang/perl
49 + dev-libs/libpcre
50 + sys-libs/zlib"
51 +RDEPEND="${DEPEND}"
52 +
53 +src_install() {
54 + emake DESTDIR="${D}" PREFIX="${EPREFIX}" install
55 +
56 + # Protect /etc/omega.conf
57 + echo "CONFIG_PROTECT=\"/etc/omega.conf\"" > "${T}"/20xapian-omega
58 + doenvd "${T}"/20xapian-omega
59 + dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
60 +
61 + # Directory containing Xapian databases:
62 + keepdir /var/lib/omega/data
63 +
64 + # Directory containing OmegaScript templates:
65 + keepdir /var/lib/omega/templates
66 + mv "${S}"/templates/* "${ED}"/var/lib/omega/templates || die
67 +
68 + # Directory to write Omega logs to:
69 + keepdir /var/log/omega
70 +
71 + # Directory containing any cdb files for the $lookup OmegaScript command:
72 + keepdir /var/lib/omega/cdb
73 +}