From 3be784dbc2acf1e9084574a442b5af015421cb80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20F=C3=B6rster?= Date: Wed, 24 Jul 2024 14:30:40 +0200 Subject: [PATCH] [dev-db/timescaledb] remove old --- dev-db/timescaledb/Manifest | 1 - dev-db/timescaledb/timescaledb-2.14.2.ebuild | 55 -------------------- 2 files changed, 56 deletions(-) delete mode 100644 dev-db/timescaledb/timescaledb-2.14.2.ebuild diff --git a/dev-db/timescaledb/Manifest b/dev-db/timescaledb/Manifest index 024851f..f2f6335 100644 --- a/dev-db/timescaledb/Manifest +++ b/dev-db/timescaledb/Manifest @@ -1,2 +1 @@ -DIST timescaledb-2.14.2.tar.gz 7319288 BLAKE2B aa6d56939a4647f9276743cabece77c33760e7f9d451b90aaa03c9391fcfad94afcd315b65c0c589c7188073884bf7ab65f9c796e35f634b8704f334ffa4ac34 SHA512 5a7ab4df5d89b83d423be5d6770098ab0303b22e29166afd3ab91ac2199571df20e33ec9f40bfa90ddf44829571fe696f311d81d27b46d569f2d75e75970e4f9 DIST timescaledb-2.15.3.tar.gz 7441097 BLAKE2B 35d6edb31be79045ab8b8b409e4fcd28acac261f96be946dfa079bc544890391a6fe1f4695b0c88c8d56aca674563b4f347bb1f5519923b38aeb992e4a527f1c SHA512 c259bea088a03286a392812b23eda05ba7e5c714f9b52cd25b39ea9a280c5147e43d13a71027c43a5029df03e021a0022feb1ae311baae577ec3c56f1d7dfcae diff --git a/dev-db/timescaledb/timescaledb-2.14.2.ebuild b/dev-db/timescaledb/timescaledb-2.14.2.ebuild deleted file mode 100644 index 3c85285..0000000 --- a/dev-db/timescaledb/timescaledb-2.14.2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -POSTGRES_COMPAT=( {13..16} ) -POSTGRES_USEDEP="ssl" - -inherit cmake postgres-multi - -DESCRIPTION="Open-source time-series SQL database" -HOMEPAGE="https://www.timescale.com/" -SRC_URI="https://github.com/timescale/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0 - tsl? ( timescale )" -SLOT="0" -IUSE="+tsl" -KEYWORDS="~amd64 ~x86" -RESTRICT="test" - -DEPEND="${POSTGRES_DEP}" -RDEPEND="${DEPEND}" - -CMAKE_BUILD_TYPE=RelWithDebInfo - -src_prepare() { - postgres-multi_src_prepare - postgres-multi_foreach cmake_src_prepare -} - -src_configure() { - pg_src_configure () { - local mycmakeargs=( - -DAPACHE_ONLY=$(usex tsl OFF ON) - -DUSE_OPENSSL=ON - -DWARNINGS_AS_ERRORS=OFF - -DSEND_TELEMETRY_DEFAULT=OFF - -DREGRESS_CHECKS=OFF - -DPG_CONFIG=${PG_CONFIG} - ) - cmake_src_configure - } - postgres-multi_foreach pg_src_configure -} - -src_compile() { - postgres-multi_foreach cmake_src_compile -} - -src_install() { - postgres-multi_foreach cmake_src_install - - find "${ED}" -name '*.a' -delete -}