redis-plus-plus: newer version and added TLS support (#34197)

Signed-off-by: Loïc Pottier <pottier1@llnl.gov>
This commit is contained in:
Loïc Pottier 2022-11-30 11:18:47 -08:00 committed by GitHub
parent 45c8d7f457
commit 472074cb7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,13 +30,18 @@ class RedisPlusPlus(CMakePackage):
description="Use Position Independent Code (-fPIC) to build the static library",
)
variant("test", default=False, description="Builds test suite")
variant("tls", default=False, description="Builds with TLS support")
version("1.3.6", sha256="87dcadca50c6f0403cde47eb1f79af7ac8dd5a19c3cad2bb54ba5a34f9173a3e")
version("1.3.5", sha256="a49a72fef26ed39d36a278fcc4e4d92822e111697b5992d8f26f70d16edc6c1f")
version("1.3.4", sha256="b9f2b3e0f084fe9a7360e44a9ae28aa42067fbaf027734989c778865c2d5dca5")
depends_on("cmake@3.18:", type="build")
depends_on("hiredis@0.14.1:", type=("build", "run", "link"))
depends_on("hiredis@1.0.0:", type=("build", "link"))
depends_on("hiredis@1.0.0:+ssl", type=("build", "link"), when="+tls")
depends_on("openssl@1.1:", type=("build", "link"), when="+tls")
conflicts("+tls", when="+static", msg="Static libraries cannot be built with TLS support.")
def cmake_args(self):
@ -45,6 +50,7 @@ def cmake_args(self):
args = [
self.define("REDIS_PLUS_PLUS_CXX_STANDARD", cxxstd),
self.define_from_variant("REDIS_PLUS_PLUS_USE_TLS", "tls"),
self.define_from_variant("REDIS_PLUS_PLUS_BUILD_TEST", "test"),
self.define_from_variant("REDIS_PLUS_PLUS_BUILD_STATIC", "static"),
self.define_from_variant("REDIS_PLUS_PLUS_BUILD_SHARED", "shared"),