Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-db/rum/
Date: Thu, 12 May 2022 09:14:55
Message-Id: 1652265761.b1d84eaabe01ac0091d1240b0d6d0b76ee8009b8.andrewammerlaan@gentoo
1 commit: b1d84eaabe01ac0091d1240b0d6d0b76ee8009b8
2 Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
3 AuthorDate: Wed May 11 10:39:45 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Wed May 11 10:42:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b1d84eaa
7
8 dev-db/rum: add 1.3.9
9
10 Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
11
12 dev-db/rum/Manifest | 1 +
13 dev-db/rum/rum-1.3.9.ebuild | 35 +++++++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-db/rum/Manifest b/dev-db/rum/Manifest
17 index 098691a62..f0cd0b78c 100644
18 --- a/dev-db/rum/Manifest
19 +++ b/dev-db/rum/Manifest
20 @@ -1 +1,2 @@
21 DIST rum-1.3.7.tar.gz 314685 BLAKE2B 0e54a935460b230dfc5ed26413118d0009d42feb823f19c094b738e737e4b6a23447a488cd6512bb854256c08e2797f58947c384dafb63d0d010c2686bfe11db SHA512 fecbeac6145e37f76e2425a1db40e2dae7912763be5150ef1f00daba176843f0c5ff32311d45819c2fb085ad8b15793bbd284797074d24c2bc0f4a331b24e82c
22 +DIST rum-1.3.9.tar.gz 315642 BLAKE2B ce80dcd10171b6cbe502da669ff7ba94a8971ff6a9494061d36ca9167fca24d3e4af87586babc6e0cfccd347ce8ead769c8cc79ce004374831797e82ead0f7b8 SHA512 7fb6afe44fe8829aa764bca51b9cc1d03bfdd99b3337ea4c5c1efbd00f66e14279e38139a8e6755e2d56ab1cb8cec754a1c4f40f51f7c7ee9ea813313ff31e5c
23
24 diff --git a/dev-db/rum/rum-1.3.9.ebuild b/dev-db/rum/rum-1.3.9.ebuild
25 new file mode 100644
26 index 000000000..49a290c57
27 --- /dev/null
28 +++ b/dev-db/rum/rum-1.3.9.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 2020-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +POSTGRES_COMPAT=( 9.6 10 11 12 13 14 )
36 +POSTGRES_USEDEP="server"
37 +
38 +inherit postgres-multi
39 +
40 +DESCRIPTION="RUM access method - inverted index with additional information in posting lists"
41 +HOMEPAGE="https://github.com/postgrespro/rum"
42 +SRC_URI="https://github.com/postgrespro/rum/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="POSTGRESQL"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +DEPEND="${POSTGRES_DEP}"
49 +RDEPEND="${DEPEND}"
50 +
51 +# Needs a running PostgreSQL server
52 +RESTRICT="test"
53 +
54 +src_compile() {
55 + postgres-multi_foreach emake USE_PGXS=1
56 +}
57 +
58 +src_test() {
59 + postgres-multi_foreach emake USE_PGXS=1 installcheck
60 +}
61 +
62 +src_install() {
63 + postgres-multi_foreach emake USE_PGXS=1 DESTDIR="${D}" install
64 +}