logo

overlay

My (experimental) gentoo overlay
commit: 3612200c20fa7fa171fc815fc622936552c44da7
parent: f415467ed45c071187cfc27cba29c47c70f8eff9
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Thu, 14 Feb 2019 22:09:00 +0100

dev-db/timescaledb: Bump to 1.2.1

Diffstat:

Mdev-db/timescaledb/Manifest1+
Adev-db/timescaledb/timescaledb-1.2.1.ebuild43+++++++++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+), 0 deletions(-)

diff --git a/dev-db/timescaledb/Manifest b/dev-db/timescaledb/Manifest @@ -1 +1,2 @@ DIST timescaledb-0.12.1.tar.gz 443232 BLAKE2B 09f72e4d1592046ba303ba9b7b271cf88d164884ae1112a0d42dfb50e457e16c35bdc2d7464c7898edf10716f092d0e99e1d2d93a3ec8ef03548fb9be67a6f39 SHA512 f29dfd85f555d6b42920c476eca86d6bf25c9c4f86574b210d4db535d268f80cf2c84917b0cb8f688e7874cf5d8cbbd6e1b4d1257bc33c9b67c78166cf759ce4 +DIST timescaledb-1.2.1.tar.gz 794419 BLAKE2B 3d9fa3a4080038222106fe24b43a182349d1c21009dc789178a7f3b6410071eb31709538503ea59f50ae96cafd2456037a878066e0a80f80b6eeda3d19b68aea SHA512 7b02a941069f09597fc484bf9efe57cb5c94802fa29edfa7299158804056530457ea92a2151fd9359478150d78be686abe90d6f2b68a8483393d925af09f8676 diff --git a/dev-db/timescaledb/timescaledb-1.2.1.ebuild b/dev-db/timescaledb/timescaledb-1.2.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2018 Gentoo Authors +# Copyright 2018-2019 Haelwenn (lanodan) Monnier <contact@hacktivis.me> +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +POSTGRES_COMPAT=( 9.6 10 ) +POSTGRES_USEDEP="server" + +inherit 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.gz" + +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 +}