public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "罗百科" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/timescaledb/
Date: Tue, 27 Jul 2021 11:09:06 +0000 (UTC)	[thread overview]
Message-ID: <1627384119.d6106738e592139a894e86c22142da9ba45a13cb.patrick@gentoo> (raw)

commit:     d6106738e592139a894e86c22142da9ba45a13cb
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 27 11:08:39 2021 +0000
Commit:     罗百科 <patrick <AT> gentoo <DOT> org>
CommitDate: Tue Jul 27 11:08:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6106738

dev-db/timescaledb: Bump to 2.3.1

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>

 dev-db/timescaledb/Manifest                 |  1 +
 dev-db/timescaledb/timescaledb-2.3.1.ebuild | 67 +++++++++++++++++++++++++++++
 2 files changed, 68 insertions(+)

diff --git a/dev-db/timescaledb/Manifest b/dev-db/timescaledb/Manifest
index f6386920814..97fe7c40644 100644
--- a/dev-db/timescaledb/Manifest
+++ b/dev-db/timescaledb/Manifest
@@ -3,3 +3,4 @@ DIST timescaledb-2.0.2.tar.gz 2237429 BLAKE2B 58c5e68daf5a3c1fade48b2ce8f625496e
 DIST timescaledb-2.1.0.tar.gz 2527250 BLAKE2B 6f257c4b1afc0869c8e309f9b3080dbcdda4b50debc1a5b3848b9d6e59744ff52902b475aca0bc8820aa2edebe9847d62e500a8cd19f7ab8050d9586d95d3a66 SHA512 53fddb9fe4c4ab51ebc020e90eea5b032b41259d3bd45e8a03a86451acd7f8864b5a6ecba1b82b7c78e230f62cfddf1da75ff27e6629ad5fe8178839ac411ce4
 DIST timescaledb-2.1.1.tar.gz 2534361 BLAKE2B d0aa5b231cbc9a75bb65eae395ffc0063a94bd3d9c47fe2b1f80bdf59c7624c83e3d4343f3d4ea402654627b8396936614f105fc7d01612f3ea03124471b44a3 SHA512 53bd8f9006741af834cc2598efe95b94e6ebf00df770ac3a4e0a087af83c8ba5ac2b1f421fd108e6609fde6bea725f05e2d590c3f341030a0f31edb6a3cf6cd5
 DIST timescaledb-2.2.1.tar.gz 2637225 BLAKE2B 4ab37bb5c45a3f7550c2694c8757fff3e8dafe122aa9aea1e31d33931367b6b6bf8aa190444cd9472c3ba0aed087fa68d007ce52de24c78add3a53038a1d24ef SHA512 5dae0ed0b71309598bfc9605e838f2d8b4179ccf7098396315153c4044c7bdaaa411fd11ee70ca7807afde4b609faab281dcb1aa2f8d65330ca95e13fbe24582
+DIST timescaledb-2.3.1.tar.gz 2699256 BLAKE2B 5949245d4a2bf52558b3f646d3723b0571745226fcc0de236c21ad7f32316eaeb0780aa94f8ccacd420cd0b0e47c8e048172b9f9355cf01797398b7f2fc85a6a SHA512 431f716ecd98504ce8e5b85e6fd10bf87ed39aac0244b7e968383537caae965ece09f016fed8ea010f5d42b392aed2d75b012deafd807d107f3dc75cbde287ec

diff --git a/dev-db/timescaledb/timescaledb-2.3.1.ebuild b/dev-db/timescaledb/timescaledb-2.3.1.ebuild
new file mode 100644
index 00000000000..eba5dbffb77
--- /dev/null
+++ b/dev-db/timescaledb/timescaledb-2.3.1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+POSTGRES_COMPAT=( 11 12 13 )
+
+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}
+	dev-libs/openssl:="
+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
+}


             reply	other threads:[~2021-07-27 11:09 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-27 11:09 罗百科 [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-27  5:30 罗百科
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-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=1627384119.d6106738e592139a894e86c22142da9ba45a13cb.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