diff options
author | Patrick Lauer <patrick@gentoo.org> | 2024-02-20 10:35:41 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2024-02-20 10:36:29 +0000 |
commit | 1b8d6beb927e57794d53a5f6fb8da915ae70395a (patch) | |
tree | 569c26f75b3603a69d9270dc0933c4f3afb1f723 /dev-db/citus/citus-11.3.1.ebuild | |
parent | dev-db/timescaledb: add 2.14.2, remove old (diff) | |
download | gentoo-1b8d6beb927e57794d53a5f6fb8da915ae70395a.tar.gz gentoo-1b8d6beb927e57794d53a5f6fb8da915ae70395a.tar.bz2 gentoo-1b8d6beb927e57794d53a5f6fb8da915ae70395a.zip |
dev-db/citus: Bump
Signed-off-by: Patrick Lauer <patrick@gentoo.org>
Diffstat (limited to 'dev-db/citus/citus-11.3.1.ebuild')
-rw-r--r-- | dev-db/citus/citus-11.3.1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-db/citus/citus-11.3.1.ebuild b/dev-db/citus/citus-11.3.1.ebuild new file mode 100644 index 000000000000..196628d1bd19 --- /dev/null +++ b/dev-db/citus/citus-11.3.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2024 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 +} |