From 88b2d3c20707d3222cc29d1689ecf65323c43026 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20F=C3=B6rster?= Date: Sat, 6 Jul 2019 17:49:30 +0200 Subject: [PATCH] [dev-db/timescaledb] bump from lanodan overlay --- dev-db/timescaledb/Manifest | 1 + dev-db/timescaledb/timescaledb-1.3.2.ebuild | 42 +++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 dev-db/timescaledb/Manifest create mode 100644 dev-db/timescaledb/timescaledb-1.3.2.ebuild diff --git a/dev-db/timescaledb/Manifest b/dev-db/timescaledb/Manifest new file mode 100644 index 0000000..1190cd5 --- /dev/null +++ b/dev-db/timescaledb/Manifest @@ -0,0 +1 @@ +DIST timescaledb-1.3.2.tar.lzma 553599 BLAKE2B 8bd8685ddb2f6b2986108e71ec3d417c1f431562cca054a20dad65efa0b098c0e69458217509ec6622b79c22adc807708b45ede67244bf617299dd20b48488aa SHA512 931c02f6a68bce210f951b20b060d41ae5beecba73992c33e417a24b8164b4fbad3af2cdfa3efc176bfb24723f4f3be990f3304dcc7e00c2fe6b1a0312446c70 diff --git a/dev-db/timescaledb/timescaledb-1.3.2.ebuild b/dev-db/timescaledb/timescaledb-1.3.2.ebuild new file mode 100644 index 0000000..78ebf3e --- /dev/null +++ b/dev-db/timescaledb/timescaledb-1.3.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +POSTGRES_COMPAT=( 9.6 10 11 ) +POSTGRES_USEDEP="server" + +inherit cmake-utils postgres-multi + +DESCRIPTION="A time-series database optimized for fast ingest and complex queries" +HOMEPAGE="http://www.timescale.com/" +SRC_URI="https://github.com/timescale/${PN}/releases/download/${PV}/${P}.tar.lzma" + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="static-libs" +KEYWORDS="~amd64 ~x86" + +DEPEND="${POSTGRES_DEP}" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}" + +src_prepare() { + default + + postgres-multi_src_prepare +} +src_configure() { + postgres-multi_foreach cmake-utils_src_configure +} + +src_compile() { + postgres-multi_foreach cmake-utils_src_compile +} + +src_install() { + postgres-multi_foreach cmake-utils_src_install + + use static-libs || find "${ED}" -name '*.a' -delete +}