commit: 59e2bf49bf18d7f3716f267a8f041d18f47301e3 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org> AuthorDate: Mon Jan 9 08:31:44 2023 +0000 Commit: 罗百科 <patrick <AT> gentoo <DOT> 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 <patrick <AT> 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 +}
