rabbitmq-c: add v0.14.0 (fix CVE) (#46648)

This commit is contained in:
Wouter Deconinck 2024-09-30 11:38:24 -05:00 committed by GitHub
parent 16410cda18
commit 59b5cb0962
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,12 +16,13 @@ class RabbitmqC(CMakePackage):
maintainers("lpottier")
license("MIT")
license("MIT", checked_by="wdconinc")
version("0.14.0", sha256="839b28eae20075ac58f45925fe991d16a3138cbde015db0ee11df1acb1c493df")
version("0.13.0", sha256="8b224e41bba504fc52b02f918d8df7e4bf5359d493cbbff36c06078655c676e6")
version("0.11.0", sha256="437d45e0e35c18cf3e59bcfe5dfe37566547eb121e69fca64b98f5d2c1c2d424")
depends_on("c", type="build") # generated
depends_on("c", type="build")
variant("ssl", default=True, description="Required to connect to RabbitMQ using SSL/TLS")
variant("shared", default=True, description="Build shared library")
@ -30,6 +31,7 @@ class RabbitmqC(CMakePackage):
variant("tools", default=False, description="Build the tools")
depends_on("cmake@3.12:", type="build")
depends_on("cmake@3.22:", type="build", when="@0.14:")
depends_on("openssl@1.1.1:", when="+ssl", type=("build", "link", "run"))
depends_on("doxygen", when="+doc", type="build")
depends_on("popt@1.14:", when="+tools", type=("build", "link", "run"))