From d98f0bbc04d136dfdcd8dfb97cc7e03035e444e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20F=C3=B6rster?= Date: Sat, 12 Mar 2022 22:25:46 +0100 Subject: [PATCH] [dev-db/timescaledb] bump, remove old --- dev-db/timescaledb/Manifest | 3 +- dev-db/timescaledb/timescaledb-2.3.1.ebuild | 57 ------------------- ...-2.4.2.ebuild => timescaledb-2.6.0.ebuild} | 17 +++--- 3 files changed, 9 insertions(+), 68 deletions(-) delete mode 100644 dev-db/timescaledb/timescaledb-2.3.1.ebuild rename dev-db/timescaledb/{timescaledb-2.4.2.ebuild => timescaledb-2.6.0.ebuild} (74%) diff --git a/dev-db/timescaledb/Manifest b/dev-db/timescaledb/Manifest index b8c7d2f..2ac5b68 100644 --- a/dev-db/timescaledb/Manifest +++ b/dev-db/timescaledb/Manifest @@ -1,2 +1 @@ -DIST timescaledb-2.3.1.tar.lzma 1256454 BLAKE2B 43ec4a5a5f802f2e096bfa126765b4e9b3f5b80bb08cae80f5a005767f4063c844b2b17a20de5cc494a9d9d19d2f8ff62af450cde2efbbb386e6c5ab0031dbaf SHA512 68c5af6265979d418559db3454adb75c83862bedba20f5a7014599374da659902d7c57a3f016e17c1e56a4907ab85b7bac7bfc97246ae895e01c48a4df1d3627 -DIST timescaledb-2.4.2.tar.gz 2409324 BLAKE2B 387f8ba3f446af227e7bd578177a6391c6ad6b1f889eb305499dc420805ad84041bf09b48cf7087727a5d111a7b374a5a5b9b83c0c97a69dc09d9c2c5d3ee9ca SHA512 56a0ff981e7374e2845d949c5bde2f157063b36cb7f9c54c6627c35ae8a8a5e5a3637fb66c6fd5c61a25b86f80a204ab7a6071b9705646bfee6a9b252c805b2d +DIST timescaledb-2.6.0.tar.gz 2863860 BLAKE2B 14b7bbfcfe1ca874ef24a7d31f3855f78cde0be57022251e1b1eb141819e19af45a2269123583a2d97c08c778aed38d9662cd4a6ff9c44281a605b8c0faed1ec SHA512 b076a44e3b30e99986dba710079cdc1a38b59a9d65ecd9f78fa16f3b762f253d7a9236a34a4d7e7beb29c1051113ea8877973e07ed3116012c9d2175a77e2edc diff --git a/dev-db/timescaledb/timescaledb-2.3.1.ebuild b/dev-db/timescaledb/timescaledb-2.3.1.ebuild deleted file mode 100644 index 34044e4..0000000 --- a/dev-db/timescaledb/timescaledb-2.3.1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -POSTGRES_COMPAT=( {11..13} ) -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 - tsl? ( timescale )" -SLOT="0" -IUSE="ssl +tsl" -KEYWORDS="~amd64 ~x86" - -DEPEND="${POSTGRES_DEP} - ssl? ( dev-libs/openssl ) - " -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}" - -CMAKE_BUILD_TYPE=RelWithDebInfo - -src_prepare() { - postgres-multi_foreach cmake_src_prepare -} - -src_configure() { - pg_src_configure () { - local mycmakeargs=( - -DUSE_OPENSSL=$(usex ssl ON OFF) - -DAPACHE_ONLY=$(usex tsl OFF 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 -} diff --git a/dev-db/timescaledb/timescaledb-2.4.2.ebuild b/dev-db/timescaledb/timescaledb-2.6.0.ebuild similarity index 74% rename from dev-db/timescaledb/timescaledb-2.4.2.ebuild rename to dev-db/timescaledb/timescaledb-2.6.0.ebuild index ee8f18b..130f3c5 100644 --- a/dev-db/timescaledb/timescaledb-2.4.2.ebuild +++ b/dev-db/timescaledb/timescaledb-2.6.0.ebuild @@ -1,26 +1,25 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -POSTGRES_COMPAT=( {12..13} ) -POSTGRES_USEDEP="server,ssl?" +POSTGRES_COMPAT=( {12..14} ) +POSTGRES_USEDEP="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}/archive/refs/tags//${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/timescale/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0 tsl? ( timescale )" SLOT="0" -IUSE="ssl +tsl" +IUSE="+tsl" KEYWORDS="~amd64 ~x86" +RESTRICT="test" -DEPEND="${POSTGRES_DEP} - ssl? ( dev-libs/openssl ) - " +DEPEND="${POSTGRES_DEP}" RDEPEND="${DEPEND}" CMAKE_BUILD_TYPE=RelWithDebInfo @@ -32,8 +31,8 @@ src_prepare() { src_configure() { pg_src_configure () { local mycmakeargs=( - -DUSE_OPENSSL=$(usex ssl ON OFF) -DAPACHE_ONLY=$(usex tsl OFF ON) + -DUSE_OPENSSL=ON -DWARNINGS_AS_ERRORS=OFF -DSEND_TELEMETRY_DEFAULT=OFF -DREGRESS_CHECKS=OFF