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: Tue, 09 Feb 2021 15:24:58
Message-Id: 1612884292.7a2cdbbee5b236e8ebda9ccec8d9a805d02d6a60.patrick@gentoo
1 commit: 7a2cdbbee5b236e8ebda9ccec8d9a805d02d6a60
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 9 15:24:37 2021 +0000
4 Commit: 罗百科 <patrick <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 9 15:24:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a2cdbbe
7
8 dev-db/timescaledb: Fix syntax
9
10 Fixes #769749
11
12 Package-Manager: Portage-3.0.14, Repoman-3.0.2
13 Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>
14
15 .../{timescaledb-2.0.1.ebuild => timescaledb-2.0.1-r1.ebuild} | 6 ++++--
16 1 file changed, 4 insertions(+), 2 deletions(-)
17
18 diff --git a/dev-db/timescaledb/timescaledb-2.0.1.ebuild b/dev-db/timescaledb/timescaledb-2.0.1-r1.ebuild
19 similarity index 92%
20 rename from dev-db/timescaledb/timescaledb-2.0.1.ebuild
21 rename to dev-db/timescaledb/timescaledb-2.0.1-r1.ebuild
22 index 26e21a09813..9e97e6124c1 100644
23 --- a/dev-db/timescaledb/timescaledb-2.0.1.ebuild
24 +++ b/dev-db/timescaledb/timescaledb-2.0.1-r1.ebuild
25 @@ -36,8 +36,10 @@ timescale_configure() {
26 local CMAKE_USE_DIR=$BUILD_DIR
27 local mycmakeargs=( "-DPG_CONFIG=/usr/bin/pg_config${MULTIBUILD_VARIANT}" "-DREGRESS_CHECKS=OFF" )
28
29 - # licensing is tied to features, this useflag disables the non-apache2 licensed bits"
30 - use proprietary-extensions || mycmakeargs += "-DAPACHE_ONLY=ON"
31 + # licensing is tied to features, this useflag disables the non-apache2 licensed bits
32 + if ! use proprietary-extensions ; then
33 + mycmakeargs+=("-DAPACHE_ONLY=ON")
34 + fi
35 cmake_src_configure
36 }