diff --git a/dev-db/timescaledb/Manifest b/dev-db/timescaledb/Manifest index 0addb7e..840952e 100644 --- a/dev-db/timescaledb/Manifest +++ b/dev-db/timescaledb/Manifest @@ -1 +1 @@ -DIST timescaledb-1.4.2.tar.lzma 603213 BLAKE2B c4370ea7f6d5a514619b4a318a53cc84bff8f7d76726c249da8aa192300ef0b0b3408b67f41714d4dc62a93601e74650e9a9df2278188b1621a2c766af944fe6 SHA512 9c40efb4269b7dfc5fea74243d43efc5e260b666e4431cf4460f4931e9dac7b9b80b48ba1159ca4862312eb2ed81d1f2ee5bad321e62547fbeb65d870dff4c52 +DIST timescaledb-1.5.1.tar.lzma 759224 BLAKE2B 1acae94df6e5b0d94ab1c97b4c71c783916da20d60dc6779690198aa6a42e7e03c1a948d0d41d52bfcac2028e31e1f953c18596d51c45e4871a83528dfa91792 SHA512 a54b7bdb3e30feb6d30330fb5fbf7eb42fba420f8ff1b9b4323ef7f4193da69ee5f3d40df2e43a523102d6027363d7f23390179efaa87e7ff5c1e791ecd38107 diff --git a/dev-db/timescaledb/timescaledb-1.4.2.ebuild b/dev-db/timescaledb/timescaledb-1.5.1.ebuild similarity index 76% rename from dev-db/timescaledb/timescaledb-1.4.2.ebuild rename to dev-db/timescaledb/timescaledb-1.5.1.ebuild index 78ebf3e..ffd97f5 100644 --- a/dev-db/timescaledb/timescaledb-1.4.2.ebuild +++ b/dev-db/timescaledb/timescaledb-1.5.1.ebuild @@ -3,18 +3,18 @@ EAPI=6 -POSTGRES_COMPAT=( 9.6 10 11 ) -POSTGRES_USEDEP="server" +POSTGRES_COMPAT=( 9.6 {10..11} ) +POSTGRES_USEDEP="server,ssl?" inherit cmake-utils postgres-multi DESCRIPTION="A time-series database optimized for fast ingest and complex queries" -HOMEPAGE="http://www.timescale.com/" +HOMEPAGE="https://www.timescale.com/" SRC_URI="https://github.com/timescale/${PN}/releases/download/${PV}/${P}.tar.lzma" LICENSE="Apache-2.0" SLOT="0" -IUSE="static-libs" +IUSE="ssl static-libs" KEYWORDS="~amd64 ~x86" DEPEND="${POSTGRES_DEP}" @@ -28,6 +28,11 @@ src_prepare() { postgres-multi_src_prepare } src_configure() { + local mycmakeargs=( + -DUSE_OPENSSL=$(usex ssl ON OFF) + -DSEND_TELEMETRY_DEFAULT=OFF + -DREGRESS_CHECKS=OFF + ) postgres-multi_foreach cmake-utils_src_configure }