Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xapian-omega/
Date: Sat, 26 Sep 2020 19:40:43
Message-Id: 1601149227.22038ab0bb79825046cb689a09e0ca68672decd7.bman@gentoo
1 commit: 22038ab0bb79825046cb689a09e0ca68672decd7
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 26 19:39:31 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 26 19:40:27 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22038ab0
7
8 app-text/xapian-omega: drop old EAPI=5
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 app-text/xapian-omega/Manifest | 1 -
13 app-text/xapian-omega/xapian-omega-1.2.25.ebuild | 45 ------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/app-text/xapian-omega/Manifest b/app-text/xapian-omega/Manifest
17 index 2a62c29bf1f..aad10012056 100644
18 --- a/app-text/xapian-omega/Manifest
19 +++ b/app-text/xapian-omega/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST xapian-omega-1.2.25.tar.xz 440224 BLAKE2B 1e67cff0ed1796349df5da7d33c07febba2d8c79906fd98c66becd59d7d387174728551785ca42db1f69662cc157bbfc35c0e29f96958ddb76670797d9a4bcf7 SHA512 f412538cd50c82d7af28f2620c1e377afd3f03186259a145f9a37cd64d05837b7cc6f205627a3c8e4c25ec19efc2a81a6fe3a415d00b7a6f4df847d6ff2d453c
22 DIST xapian-omega-1.4.14.tar.xz 540532 BLAKE2B 193e03bfea5cf7cb5fc5bfca57f80b1390ba63ca999f235a10a7ab9bf4db378273cf6f7f6b3107c80c1ebb44bdb1a94ce3c00585f83ac0bec188163633be843b SHA512 27059d13bbdfc2ee9e8f4f6e74479bac0885cabab97d7eb1ebdc57eacbff1724b2684ba72efdf6d35f608e2e8f0891d47c626aaa100c713f4c2f66f923d841b7
23 DIST xapian-omega-1.4.15.tar.xz 545916 BLAKE2B be89c817d13888bc8de28973be15a512992dc1e6c23ea55f0470b179c9b29b82f2f2988c6ac430d62c3e45e6502555a3497bf3f3ce7bebf832fc8cf8e3dc9f1d SHA512 99ffe32c37b22db4557cae214a157d3b1bda27b2eb86f99862ca59ac326e5ba3f044fbd58a0ec9db7098700dd6a2422634c80987c9152536ec217e48d9694679
24 DIST xapian-omega-1.4.16.tar.xz 546360 BLAKE2B 990eab976833854d2a172e1584383b71375fe2e0b83a8ff0a150f4c9fdb6e99cbd42e58720e81698292843918112426d3b445efe14d9ee5f76e85304439475de SHA512 7f8c3d4e372c49f89e28da999ee49f0754052a339bbc4492b50f8134cf29b2c433ddae9e58ef3a2468898b711b4510ea87687a247ce21e83eba2f8daaa2910c4
25
26 diff --git a/app-text/xapian-omega/xapian-omega-1.2.25.ebuild b/app-text/xapian-omega/xapian-omega-1.2.25.ebuild
27 deleted file mode 100644
28 index aee8e82c215..00000000000
29 --- a/app-text/xapian-omega/xapian-omega-1.2.25.ebuild
30 +++ /dev/null
31 @@ -1,45 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI="5"
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 ~ia64 ~mips ppc ppc64 ~sparc ~x86"
45 -IUSE=""
46 -
47 -DEPEND="dev-libs/xapian:0/1.2.22
48 - dev-lang/perl
49 - dev-libs/libpcre
50 - sys-libs/zlib"
51 -RDEPEND="${DEPEND}"
52 -
53 -src_install() {
54 - emake DESTDIR="${D}" 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 - #move docs to /usr/share/doc/${PF}.
62 - mv "${D}/usr/share/doc/xapian-omega" "${D}/usr/share/doc/${PF}" || die
63 -
64 - # Directory containing Xapian databases:
65 - keepdir /var/lib/omega/data
66 -
67 - # Directory containing OmegaScript templates:
68 - keepdir /var/lib/omega/templates
69 - mv "${S}"/templates/* "${D}"/var/lib/omega/templates || die
70 -
71 - # Directory to write Omega logs to:
72 - keepdir /var/log/omega
73 -
74 - # Directory containing any cdb files for the $lookup OmegaScript command:
75 - keepdir /var/lib/omega/cdb
76 -}