Gentoo Archives: gentoo-commits

From: "罗百科" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/timescaledb/
Date: Sun, 28 Nov 2021 06:46:13
Message-Id: 1638081958.633380bbbfb5dddab9063793e162e80464ab64f5.patrick@gentoo
1 commit: 633380bbbfb5dddab9063793e162e80464ab64f5
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 28 06:45:58 2021 +0000
4 Commit: 罗百科 <patrick <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 28 06:45:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=633380bb
7
8 dev-db/timescaledb: Bump to 2.5.0
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
12
13 dev-db/timescaledb/Manifest | 1 +
14 dev-db/timescaledb/timescaledb-2.5.0.ebuild | 67 +++++++++++++++++++++++++++++
15 2 files changed, 68 insertions(+)
16
17 diff --git a/dev-db/timescaledb/Manifest b/dev-db/timescaledb/Manifest
18 index f031319b9686..3d9fa0d69cac 100644
19 --- a/dev-db/timescaledb/Manifest
20 +++ b/dev-db/timescaledb/Manifest
21 @@ -6,3 +6,4 @@ DIST timescaledb-2.2.1.tar.gz 2637225 BLAKE2B 4ab37bb5c45a3f7550c2694c8757fff3e8
22 DIST timescaledb-2.3.1.tar.gz 2699256 BLAKE2B 5949245d4a2bf52558b3f646d3723b0571745226fcc0de236c21ad7f32316eaeb0780aa94f8ccacd420cd0b0e47c8e048172b9f9355cf01797398b7f2fc85a6a SHA512 431f716ecd98504ce8e5b85e6fd10bf87ed39aac0244b7e968383537caae965ece09f016fed8ea010f5d42b392aed2d75b012deafd807d107f3dc75cbde287ec
23 DIST timescaledb-2.4.1.tar.gz 2401410 BLAKE2B 752d484b03a59cde22f295d47a90d05bfc0674428dd2d03152dbf6604e10c0fb6780815666f65f4d2df58075f7911636c13a671504eed78642e211ceda8aba3d SHA512 54baced28eb20aa14c78605ce7828f7c48210125d9193c3e1c88e9ae81616b2baf37a1eb97c5eb0ddc9b6820d534d134ad047f3c7ace374e29191a42142f35a1
24 DIST timescaledb-2.4.2.tar.gz 2409324 BLAKE2B 387f8ba3f446af227e7bd578177a6391c6ad6b1f889eb305499dc420805ad84041bf09b48cf7087727a5d111a7b374a5a5b9b83c0c97a69dc09d9c2c5d3ee9ca SHA512 56a0ff981e7374e2845d949c5bde2f157063b36cb7f9c54c6627c35ae8a8a5e5a3637fb66c6fd5c61a25b86f80a204ab7a6071b9705646bfee6a9b252c805b2d
25 +DIST timescaledb-2.5.0.tar.gz 2737786 BLAKE2B 3c3af86e016e2a2d2484b65cd7754eb0c2561358a51f2d3887aa9c0fce8ec2e8598751423b2858fa25955a0744a32ac40c40766d4abe91751701fe053e6c7498 SHA512 fcb3130b472d7ebbaabcce6259b5585ceff2c2b39abeb68f13f2bf5e715afb6a5ccab8534ea9e8eea0c7aef31045680e17f48ff46465d7e693450f1cd77001e4
26
27 diff --git a/dev-db/timescaledb/timescaledb-2.5.0.ebuild b/dev-db/timescaledb/timescaledb-2.5.0.ebuild
28 new file mode 100644
29 index 000000000000..122047bcdea4
30 --- /dev/null
31 +++ b/dev-db/timescaledb/timescaledb-2.5.0.ebuild
32 @@ -0,0 +1,67 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +POSTGRES_COMPAT=( 12 13 14 )
39 +
40 +inherit postgres-multi cmake
41 +
42 +DESCRIPTION="Open-source time-series SQL database"
43 +HOMEPAGE="https://www.timescale.com/"
44 +SRC_URI="https://github.com/timescale/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +IUSE="proprietary-extensions"
47 +LICENSE="POSTGRESQL Apache-2.0 proprietary-extensions? ( timescale )"
48 +
49 +KEYWORDS="~amd64"
50 +
51 +SLOT=0
52 +
53 +RESTRICT="test"
54 +
55 +DEPEND="${POSTGRES_DEP}
56 + dev-libs/openssl:="
57 +RDEPEND="${DEPEND}"
58 +
59 +CMAKE_IN_SOURCE_BUILD=yes
60 +CMAKE_BUILD_TYPE="RelWithDebInfo"
61 +BUILD_DIR=${WORKDIR}/${P}
62 +
63 +src_prepare() {
64 + postgres-multi_src_prepare
65 + postgres-multi_foreach cmake_src_prepare
66 +}
67 +
68 +timescale_configure() {
69 + local CMAKE_USE_DIR=$BUILD_DIR
70 + local mycmakeargs=( "-DPG_CONFIG=/usr/bin/pg_config${MULTIBUILD_VARIANT}" "-DREGRESS_CHECKS=OFF" )
71 +
72 + # licensing is tied to features, this useflag disables the non-apache2 licensed bits
73 + if ! use proprietary-extensions ; then
74 + mycmakeargs+=("-DAPACHE_ONLY=ON")
75 + fi
76 + cmake_src_configure
77 +}
78 +
79 +src_configure() {
80 + postgres-multi_foreach timescale_configure
81 +}
82 +
83 +timescale_src_compile() {
84 + local CMAKE_USE_DIR=$BUILD_DIR
85 + cmake_src_compile
86 +}
87 +
88 +src_compile() {
89 + postgres-multi_foreach timescale_src_compile
90 +}
91 +
92 +timescale_src_install() {
93 + local CMAKE_USE_DIR=$BUILD_DIR
94 + cmake_src_install
95 +}
96 +
97 +src_install() {
98 + postgres-multi_foreach timescale_src_install
99 +}