From: "罗百科" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/timescaledb/
Date: Fri, 27 May 2022 05:30:52 +0000 (UTC) [thread overview]
Message-ID: <1653629439.a67b5843750d3ad08e296fcc60a1cb406c979f4f.patrick@gentoo> (raw)
commit: a67b5843750d3ad08e296fcc60a1cb406c979f4f
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Fri May 27 05:30:39 2022 +0000
Commit: 罗百科 <patrick <AT> gentoo <DOT> org>
CommitDate: Fri May 27 05:30:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a67b5843
dev-db/timescaledb: Add 2.7.0
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
dev-db/timescaledb/Manifest | 1 +
dev-db/timescaledb/timescaledb-2.7.0.ebuild | 67 +++++++++++++++++++++++++++++
2 files changed, 68 insertions(+)
diff --git a/dev-db/timescaledb/Manifest b/dev-db/timescaledb/Manifest
index 6cde88ea9aba..9b38b5ee499a 100644
--- a/dev-db/timescaledb/Manifest
+++ b/dev-db/timescaledb/Manifest
@@ -1,3 +1,4 @@
DIST timescaledb-2.5.2.tar.gz 2773859 BLAKE2B 918768e21ea43de2678c2ce12c5ea9faa9794eb48d4f1003c898d5510330d25c319b30323692facff78f95ee417a4cd4ec0e78363de17c4746aeb3f42c0b5bba SHA512 28cc4b4a786c62651aa9e499bb82bbc079307ed237a8c2478d5fbd4d6aaa9bb43bf3c1df971f76921d25112761a79dc9dec31d663fa31caca38b0c822f2026b0
DIST timescaledb-2.6.0.tar.gz 2863860 BLAKE2B 14b7bbfcfe1ca874ef24a7d31f3855f78cde0be57022251e1b1eb141819e19af45a2269123583a2d97c08c778aed38d9662cd4a6ff9c44281a605b8c0faed1ec SHA512 b076a44e3b30e99986dba710079cdc1a38b59a9d65ecd9f78fa16f3b762f253d7a9236a34a4d7e7beb29c1051113ea8877973e07ed3116012c9d2175a77e2edc
DIST timescaledb-2.6.1.tar.gz 2876847 BLAKE2B 6053e69fd6f7b86287c0ae54966a9e7528cf371d2952b6edfe80c0c616c4fcaccf04fa1f3af5f7ed787e85b7b12ac00e709664552c79561f7b4e503891cb5dd4 SHA512 edcc84c37af9670c1a7bf527f5c430405e9b04e9a35e676d04e7ac70b20184032f992d05545a180b50ac2346b076aac4fc98348c355006345394910978864a8f
+DIST timescaledb-2.7.0.tar.gz 2962972 BLAKE2B 37a0c3c7f51936d888492b7be59d2abc635bead3681a0414c5b7bfaca6b70a162638d5f9cf8368bfd49e2a8a03bbcdbf4fde853466edebbbc8a38d57ef567674 SHA512 fb07e06be36c2a59fbbaa77c7cbc3b564ce26b8f508211ec10b19b2e9bf08afed2e734b9a578b97ed99af95936a8f722cbc4cf2b5c6952df739e777ea96bf414
diff --git a/dev-db/timescaledb/timescaledb-2.7.0.ebuild b/dev-db/timescaledb/timescaledb-2.7.0.ebuild
new file mode 100644
index 000000000000..b6b5d265256d
--- /dev/null
+++ b/dev-db/timescaledb/timescaledb-2.7.0.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+POSTGRES_COMPAT=( 12 13 14 )
+POSTGRES_USEDEP="ssl"
+
+inherit postgres-multi cmake
+
+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"
+
+IUSE="proprietary-extensions"
+LICENSE="POSTGRESQL Apache-2.0 proprietary-extensions? ( timescale )"
+
+KEYWORDS="~amd64"
+
+SLOT=0
+
+RESTRICT="test"
+
+DEPEND="${POSTGRES_DEP}"
+RDEPEND="${DEPEND}"
+
+CMAKE_IN_SOURCE_BUILD=yes
+CMAKE_BUILD_TYPE="RelWithDebInfo"
+BUILD_DIR=${WORKDIR}/${P}
+
+src_prepare() {
+ postgres-multi_src_prepare
+ postgres-multi_foreach cmake_src_prepare
+}
+
+timescale_configure() {
+ local CMAKE_USE_DIR=$BUILD_DIR
+ local mycmakeargs=( "-DPG_CONFIG=/usr/bin/pg_config${MULTIBUILD_VARIANT}" "-DREGRESS_CHECKS=OFF" )
+
+ # licensing is tied to features, this useflag disables the non-apache2 licensed bits
+ if ! use proprietary-extensions ; then
+ mycmakeargs+=("-DAPACHE_ONLY=ON")
+ fi
+ cmake_src_configure
+}
+
+src_configure() {
+ postgres-multi_foreach timescale_configure
+}
+
+timescale_src_compile() {
+ local CMAKE_USE_DIR=$BUILD_DIR
+ cmake_src_compile
+}
+
+src_compile() {
+ postgres-multi_foreach timescale_src_compile
+}
+
+timescale_src_install() {
+ local CMAKE_USE_DIR=$BUILD_DIR
+ cmake_src_install
+}
+
+src_install() {
+ postgres-multi_foreach timescale_src_install
+}
next reply other threads:[~2022-05-27 5:30 UTC|newest]
Thread overview: 59+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-27 5:30 罗百科 [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-19 10:52 [gentoo-commits] repo/gentoo:master commit in: dev-db/timescaledb/ Patrick Lauer
2025-03-19 10:52 Patrick Lauer
2025-03-12 10:54 Patrick Lauer
2025-02-12 17:54 Patrick Lauer
2025-02-07 13:43 Patrick Lauer
2025-02-07 13:43 Patrick Lauer
2024-11-17 7:17 Miroslav Šulc
2024-11-01 7:34 Patrick Lauer
2024-11-01 7:34 Patrick Lauer
2024-10-17 11:34 Patrick Lauer
2024-08-07 6:58 Patrick Lauer
2024-08-07 6:58 Patrick Lauer
2024-07-07 6:03 Patrick Lauer
2024-06-12 16:36 Patrick Lauer
2024-06-10 12:31 Patrick Lauer
2024-05-15 13:34 Patrick Lauer
2024-02-20 10:36 Patrick Lauer
2024-02-13 7:54 Patrick Lauer
2024-02-13 7:54 Patrick Lauer
2024-01-15 14:41 罗百科
2023-12-04 8:32 罗百科
2023-11-18 17:13 罗百科
2023-10-30 7:08 罗百科
2023-10-30 7:08 罗百科
2023-09-26 13:25 罗百科
2023-09-04 11:08 罗百科
2023-07-01 16:34 罗百科
2023-05-29 6:30 罗百科
2023-05-29 6:30 罗百科
2023-04-29 19:05 John Helmert III
2023-04-29 10:27 罗百科
2023-03-12 15:38 罗百科
2023-03-04 7:25 罗百科
2023-02-14 7:41 罗百科
2023-02-14 7:41 罗百科
2023-02-05 8:19 罗百科
2023-02-05 8:19 罗百科
2023-01-09 8:37 罗百科
2022-12-17 8:08 罗百科
2022-10-06 15:30 罗百科
2022-09-03 13:35 罗百科
2022-08-19 9:30 罗百科
2022-07-17 7:36 罗百科
2022-05-04 7:30 罗百科
2022-03-14 14:04 罗百科
2022-02-19 18:59 罗百科
2022-02-12 6:42 罗百科
2021-12-18 9:06 罗百科
2021-12-18 9:06 罗百科
2021-11-28 6:46 罗百科
2021-09-30 17:33 罗百科
2021-09-14 18:46 罗百科
2021-07-27 11:09 罗百科
2021-05-13 13:42 罗百科
2021-04-15 5:18 罗百科
2021-03-02 9:14 罗百科
2021-02-09 15:24 罗百科
2021-02-09 9:29 罗百科
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1653629439.a67b5843750d3ad08e296fcc60a1cb406c979f4f.patrick@gentoo \
--to=patrick@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox