[dev-db/timescaledb] bump from lanodan overlay

This commit is contained in:
Robert Förster 2019-07-06 17:49:30 +02:00
parent 103c1649ef
commit 88b2d3c207
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST timescaledb-1.3.2.tar.lzma 553599 BLAKE2B 8bd8685ddb2f6b2986108e71ec3d417c1f431562cca054a20dad65efa0b098c0e69458217509ec6622b79c22adc807708b45ede67244bf617299dd20b48488aa SHA512 931c02f6a68bce210f951b20b060d41ae5beecba73992c33e417a24b8164b4fbad3af2cdfa3efc176bfb24723f4f3be990f3304dcc7e00c2fe6b1a0312446c70

View File

@ -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
}