From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D9785138350 for ; Mon, 27 Apr 2020 17:32:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 171D5E095F; Mon, 27 Apr 2020 17:32:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F2030E095F for ; Mon, 27 Apr 2020 17:32:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CCB0E34FD32 for ; Mon, 27 Apr 2020 17:32:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B403C1E4 for ; Mon, 27 Apr 2020 17:32:48 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1588000951.31b179f6cb02416ba67ae9ee1e8b3c937ce6a1ab.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-db/rum/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-db/rum/Manifest dev-db/rum/metadata.xml dev-db/rum/rum-1.3.6.ebuild X-VCS-Directories: dev-db/rum/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 31b179f6cb02416ba67ae9ee1e8b3c937ce6a1ab X-VCS-Branch: master Date: Mon, 27 Apr 2020 17:32:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0079dfb8-f090-45c8-b05c-1fbca65825c9 X-Archives-Hash: 343e5fd89cd16324eedbc676e84fb7c2 commit: 31b179f6cb02416ba67ae9ee1e8b3c937ce6a1ab Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Mon Apr 27 15:20:05 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Mon Apr 27 15:22:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=31b179f6 dev-db/rum: New package Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> dev-db/rum/Manifest | 1 + dev-db/rum/metadata.xml | 8 ++++++++ dev-db/rum/rum-1.3.6.ebuild | 34 ++++++++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+) diff --git a/dev-db/rum/Manifest b/dev-db/rum/Manifest new file mode 100644 index 0000000..b7982a7 --- /dev/null +++ b/dev-db/rum/Manifest @@ -0,0 +1 @@ +DIST rum-1.3.6.tar.gz 306580 BLAKE2B 0462067b7d49deabefb1b2f220e96cf33ea14990f66ee3d62e8d14a8cd4898fc3e8892fa588be39f4c24e063e6ae64789b31f971d0ca75c377aded7370ac031b SHA512 decdf649b7742d082fce6d7151b9f73fe526e444bcec6c1c639740630a5149d63fdbc119a52e03b3ef5bc828d19dab3eb18d12dab24c48f9be3be8f99f5cb295 diff --git a/dev-db/rum/metadata.xml b/dev-db/rum/metadata.xml new file mode 100644 index 0000000..c698af2 --- /dev/null +++ b/dev-db/rum/metadata.xml @@ -0,0 +1,8 @@ + + + + + contact@hacktivis.me + Haelwenn (lanodan) Monnier + + diff --git a/dev-db/rum/rum-1.3.6.ebuild b/dev-db/rum/rum-1.3.6.ebuild new file mode 100644 index 0000000..fe4cc3e --- /dev/null +++ b/dev-db/rum/rum-1.3.6.ebuild @@ -0,0 +1,34 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +POSTGRES_COMPAT=( 9.6 10 11 12 ) +POSTGRES_USEDEP="server" + +inherit postgres-multi + +DESCRIPTION="RUM access method - inverted index with additional information in posting lists" +HOMEPAGE="https://github.com/postgrespro/rum" +SRC_URI="https://github.com/postgrespro/rum/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="POSTGRESQL" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="${POSTGRES_DEP}" +RDEPEND="${DEPEND}" + +USE_PGXS=1 + +src_compile() { + postgres-multi_foreach emake USE_PGXS=1 +} + +src_test() { + postgres-multi_foreach emake USE_PGXS=1 installcheck +} + +src_install() { + postgres-multi_foreach emake USE_PGXS=1 DESTDIR="${D}" install +}