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: Thu, 23 Apr 2020 18:22:50
Message-Id: 1587666160.0f692afd4b28099fff29a928fbaf27954d27ef69.blueness@gentoo
1 commit: 0f692afd4b28099fff29a928fbaf27954d27ef69
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 23 18:12:56 2020 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 23 18:22:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f692afd
7
8 app-text/xapian-omega: remove older version
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
12
13 app-text/xapian-omega/Manifest | 1 -
14 app-text/xapian-omega/xapian-omega-1.4.7.ebuild | 42 -------------------------
15 2 files changed, 43 deletions(-)
16
17 diff --git a/app-text/xapian-omega/Manifest b/app-text/xapian-omega/Manifest
18 index cf9e7386ee1..bdcb5dc10ac 100644
19 --- a/app-text/xapian-omega/Manifest
20 +++ b/app-text/xapian-omega/Manifest
21 @@ -1,4 +1,3 @@
22 DIST xapian-omega-1.2.25.tar.xz 440224 BLAKE2B 1e67cff0ed1796349df5da7d33c07febba2d8c79906fd98c66becd59d7d387174728551785ca42db1f69662cc157bbfc35c0e29f96958ddb76670797d9a4bcf7 SHA512 f412538cd50c82d7af28f2620c1e377afd3f03186259a145f9a37cd64d05837b7cc6f205627a3c8e4c25ec19efc2a81a6fe3a415d00b7a6f4df847d6ff2d453c
23 DIST xapian-omega-1.4.14.tar.xz 540532 BLAKE2B 193e03bfea5cf7cb5fc5bfca57f80b1390ba63ca999f235a10a7ab9bf4db378273cf6f7f6b3107c80c1ebb44bdb1a94ce3c00585f83ac0bec188163633be843b SHA512 27059d13bbdfc2ee9e8f4f6e74479bac0885cabab97d7eb1ebdc57eacbff1724b2684ba72efdf6d35f608e2e8f0891d47c626aaa100c713f4c2f66f923d841b7
24 DIST xapian-omega-1.4.15.tar.xz 545916 BLAKE2B be89c817d13888bc8de28973be15a512992dc1e6c23ea55f0470b179c9b29b82f2f2988c6ac430d62c3e45e6502555a3497bf3f3ce7bebf832fc8cf8e3dc9f1d SHA512 99ffe32c37b22db4557cae214a157d3b1bda27b2eb86f99862ca59ac326e5ba3f044fbd58a0ec9db7098700dd6a2422634c80987c9152536ec217e48d9694679
25 -DIST xapian-omega-1.4.7.tar.xz 510644 BLAKE2B e2106b07a0ccf765dad25c3e83a745936156b002e638fbd9cbd1fd194f507ad663c305fc4981d72f92a74f645601aa83b1bc3133d10d8d4c308f28657a90a356 SHA512 e7e2c7dfa3e76ccdde103b34aa1b0732033e9f218346a81f1b0b865c6e2d17c356b96a4522a3a2273fb55eb2fbd2dd57e835368771f46c9fb458c0c11329893b
26
27 diff --git a/app-text/xapian-omega/xapian-omega-1.4.7.ebuild b/app-text/xapian-omega/xapian-omega-1.4.7.ebuild
28 deleted file mode 100644
29 index 1829fc6f9d3..00000000000
30 --- a/app-text/xapian-omega/xapian-omega-1.4.7.ebuild
31 +++ /dev/null
32 @@ -1,42 +0,0 @@
33 -# Copyright 1999-2020 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 -}