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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 87EA915800F for ; Mon, 9 Jan 2023 08:32:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2017E07D8; Mon, 9 Jan 2023 08:32:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9E38DE07D8 for ; Mon, 9 Jan 2023 08:32:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A2357340DF8 for ; Mon, 9 Jan 2023 08:32:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01E08804 for ; Mon, 9 Jan 2023 08:32:42 +0000 (UTC) From: "罗百科" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "罗百科" Message-ID: <1673253157.59e2bf49bf18d7f3716f267a8f041d18f47301e3.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/citus/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/citus/citus-11.0.7.ebuild X-VCS-Directories: dev-db/citus/ X-VCS-Committer: patrick X-VCS-Committer-Name: 罗百科 X-VCS-Revision: 59e2bf49bf18d7f3716f267a8f041d18f47301e3 X-VCS-Branch: master Date: Mon, 9 Jan 2023 08:32:42 +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: 62eb7372-b1a8-4336-81d6-466b5ba7d3f4 X-Archives-Hash: bb9c3a1490793b3a81e5c4c8e0fecb28 commit: 59e2bf49bf18d7f3716f267a8f041d18f47301e3 Author: Patrick Lauer gentoo org> AuthorDate: Mon Jan 9 08:31:44 2023 +0000 Commit: 罗百科 gentoo org> CommitDate: Mon Jan 9 08:32:37 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59e2bf49 dev-db/citus: add 11.0.7 Signed-off-by: Patrick Lauer gentoo.org> dev-db/citus/citus-11.0.7.ebuild | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-db/citus/citus-11.0.7.ebuild b/dev-db/citus/citus-11.0.7.ebuild new file mode 100644 index 000000000000..1b91866bc2b8 --- /dev/null +++ b/dev-db/citus/citus-11.0.7.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +POSTGRES_COMPAT=( 13 14 15 ) + +inherit postgres-multi + +DESCRIPTION="Open-source postgresql extension for clustering/multi-node setups" +HOMEPAGE="https://www.citusdata.com/" + +MY_PV="${PV/beta0/beta}" +SRC_URI="https://github.com/citusdata/citus/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.tar.gz" + +S="${WORKDIR}/${PN}-${MY_PV}" + +IUSE="" +LICENSE="POSTGRESQL AGPL-3" + +KEYWORDS="~amd64" + +SLOT=0 + +RESTRICT="test" + +DEPEND="${POSTGRES_DEP} + app-arch/lz4 + app-arch/zstd + " +RDEPEND="${DEPEND}" + +src_configure() { + postgres-multi_foreach econf +}