From a3a7b7c493e1ed658bf5f586b890008ed68782fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20F=C3=B6rster?= Date: Thu, 14 May 2020 17:55:33 +0200 Subject: [PATCH] [dev-db/timescaledb] forgot to remove old --- dev-db/timescaledb/timescaledb-1.6.0.ebuild | 49 --------------------- 1 file changed, 49 deletions(-) delete mode 100644 dev-db/timescaledb/timescaledb-1.6.0.ebuild diff --git a/dev-db/timescaledb/timescaledb-1.6.0.ebuild b/dev-db/timescaledb/timescaledb-1.6.0.ebuild deleted file mode 100644 index 03e7a40..0000000 --- a/dev-db/timescaledb/timescaledb-1.6.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -POSTGRES_COMPAT=( 9.6 {10..11} ) -POSTGRES_USEDEP="server,ssl?" - -inherit cmake postgres-multi - -DESCRIPTION="A time-series database optimized for fast ingest and complex queries" -HOMEPAGE="https://www.timescale.com/" -SRC_URI="https://github.com/timescale/${PN}/releases/download/${PV}/${P}.tar.lzma" - -LICENSE="Apache-2.0" -SLOT="0" -IUSE="ssl static-libs" -KEYWORDS="~amd64 ~x86" - -DEPEND="${POSTGRES_DEP}" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}" - -src_prepare() { - default - - postgres-multi_src_prepare - postgres-multi_foreach cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DUSE_OPENSSL=$(usex ssl ON OFF) - -DSEND_TELEMETRY_DEFAULT=OFF - -DREGRESS_CHECKS=OFF - ) - postgres-multi_foreach cmake_src_configure -} - -src_compile() { - postgres-multi_foreach cmake_src_compile -} - -src_install() { - postgres-multi_foreach cmake_src_install - - use static-libs || find "${ED}" -name '*.a' -delete -}