From da90405e2552f6719e93948634c47d565382538a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20F=C3=B6rster?= Date: Thu, 3 Sep 2020 17:09:42 +0200 Subject: [PATCH] [dev-db/timescaledb] bump, fix the stupid multibuild junk once and for all --- dev-db/timescaledb/Manifest | 2 +- ...-1.7.2.ebuild => timescaledb-1.7.3.ebuild} | 26 +++++++++---------- 2 files changed, 14 insertions(+), 14 deletions(-) rename dev-db/timescaledb/{timescaledb-1.7.2.ebuild => timescaledb-1.7.3.ebuild} (70%) diff --git a/dev-db/timescaledb/Manifest b/dev-db/timescaledb/Manifest index bed6461..5e9724e 100644 --- a/dev-db/timescaledb/Manifest +++ b/dev-db/timescaledb/Manifest @@ -1 +1 @@ -DIST timescaledb-1.7.2.tar.lzma 847899 BLAKE2B 478f527ec5f8e2f58318ea0ad7983f5a2fd7ed1b2249be47c335123dc1af4bbf42fb52c1559cd94776a82b3a7734c2b3ec57e1d80235908f46d1992ff6c86b26 SHA512 2c2cf7901eae67f4059369bd1181ea4f651d00dbe9f71b4c019c3054f86abb9d3a6dca47be7a7e2e4ca46a91a58a1af0f3c70cccc90c6b55594ae24b26fd3ffa +DIST timescaledb-1.7.3.tar.lzma 854202 BLAKE2B 84847b31a8b9a19f2a2888f627f41061e52611faf41ecc8b1b25deb4435dc5b94a6fb0832b7a06cadcdac1d42334dda3e6885419c9c43594a4bbd23f784f7d82 SHA512 180fad45dc91a7e9e9dae5967bfeb99b5d82fc78d327dfcd8494d9d2458419150a4805bd884c34f001308f9eec0f2d10e94f14305081a9b847f8a6a89ecf67f7 diff --git a/dev-db/timescaledb/timescaledb-1.7.2.ebuild b/dev-db/timescaledb/timescaledb-1.7.3.ebuild similarity index 70% rename from dev-db/timescaledb/timescaledb-1.7.2.ebuild rename to dev-db/timescaledb/timescaledb-1.7.3.ebuild index 2fe5952..f292d15 100644 --- a/dev-db/timescaledb/timescaledb-1.7.2.ebuild +++ b/dev-db/timescaledb/timescaledb-1.7.3.ebuild @@ -4,7 +4,7 @@ EAPI=7 POSTGRES_COMPAT=( 9.6 {10..12} ) -POSTGRES_USEDEP="server,ssl?" +POSTGRES_USEDEP="server,ssl?,static-libs?" inherit cmake postgres-multi @@ -13,7 +13,7 @@ HOMEPAGE="https://www.timescale.com/" SRC_URI="https://github.com/timescale/${PN}/releases/download/${PV}/${P}.tar.lzma" LICENSE="Apache-2.0 - tsl? ( TIMESCALE )" + tsl? ( TIMESCALE )" SLOT="0" IUSE="ssl +tsl static-libs" KEYWORDS="~amd64 ~x86" @@ -22,23 +22,23 @@ DEPEND="${POSTGRES_DEP}" RDEPEND="${DEPEND}" S="${WORKDIR}/${PN}" -BUILD_DIR="${S}" src_prepare() { - default - postgres-multi_foreach cmake_src_prepare } src_configure() { - local mycmakeargs=( - -DPG_CONFIG="$PG_CONFIG" - -DUSE_OPENSSL=$(usex ssl ON OFF) - -DAPACHE_ONLY=$(usex tsl OFF ON) - -DSEND_TELEMETRY_DEFAULT=OFF - -DREGRESS_CHECKS=OFF - ) - postgres-multi_foreach cmake_src_configure + pg_src_configure () { + local mycmakeargs=( + -DUSE_OPENSSL=$(usex ssl ON OFF) + -DAPACHE_ONLY=$(usex tsl OFF ON) + -DSEND_TELEMETRY_DEFAULT=OFF + -DREGRESS_CHECKS=OFF + -DPG_CONFIG=${PG_CONFIG} + ) + cmake_src_configure + } + postgres-multi_foreach pg_src_configure } src_compile() {