cassandra: add v5.0.1 (fix CVEs) (#47058)
* cassandra: add v5.0.1 * [@spackbot] updating style on behalf of wdconinc --------- Co-authored-by: wdconinc <wdconinc@users.noreply.github.com>
This commit is contained in:
parent
7678635d36
commit
1d25275bd1
@ -12,25 +12,30 @@ class Cassandra(Package):
|
|||||||
organized into tables with a required primary key.
|
organized into tables with a required primary key.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
homepage = "https://github.com/apache/cassandra"
|
homepage = "https://cassandra.apache.org/"
|
||||||
url = "https://archive.apache.org/dist/cassandra/4.0.1/apache-cassandra-4.0.1-bin.tar.gz"
|
url = "https://archive.apache.org/dist/cassandra/4.0.1/apache-cassandra-4.0.1-bin.tar.gz"
|
||||||
|
|
||||||
license("Apache-2.0")
|
license("Apache-2.0", checked_by="wdconinc")
|
||||||
|
|
||||||
version("4.0.1", sha256="ed7022e30d9b77d9ce1072f8de95ab01ef7c5c6ed30f304e413dd5a3f92a52f8")
|
version("5.0.1", sha256="73f4c807b0aa4036500d5dc54e30ef82bcf549ab1917eff2bbc7189b0337ea84")
|
||||||
version("3.11.11", sha256="a5639af781005410995a96f512d505c1def7b70cf5bbbec52e7cd5ff31b6cea3")
|
with default_args(deprecated=True):
|
||||||
version(
|
# https://nvd.nist.gov/vuln/detail/CVE-2021-44521
|
||||||
"3.11.6",
|
version("4.0.1", sha256="ed7022e30d9b77d9ce1072f8de95ab01ef7c5c6ed30f304e413dd5a3f92a52f8")
|
||||||
sha256="ce34edebd1b6bb35216ae97bd06d3efc338c05b273b78267556a99f85d30e45b",
|
version(
|
||||||
deprecated=True,
|
"3.11.11", sha256="a5639af781005410995a96f512d505c1def7b70cf5bbbec52e7cd5ff31b6cea3"
|
||||||
)
|
)
|
||||||
version(
|
version(
|
||||||
"3.11.5",
|
"3.11.6", sha256="ce34edebd1b6bb35216ae97bd06d3efc338c05b273b78267556a99f85d30e45b"
|
||||||
sha256="a765adcaa42a6c881f5e79d030854d082900992cc11da40eee413bb235970a6a",
|
)
|
||||||
deprecated=True,
|
version(
|
||||||
)
|
"3.11.5", sha256="a765adcaa42a6c881f5e79d030854d082900992cc11da40eee413bb235970a6a"
|
||||||
version("2.2.19", sha256="5496c0254a66b6d50bde7999d1bab9129b0406b71ad3318558f4d7dbfbed0ab9")
|
)
|
||||||
|
# https://nvd.nist.gov/vuln/detail/CVE-2020-17516
|
||||||
|
version(
|
||||||
|
"2.2.19", sha256="5496c0254a66b6d50bde7999d1bab9129b0406b71ad3318558f4d7dbfbed0ab9"
|
||||||
|
)
|
||||||
|
|
||||||
|
depends_on("java@11:", type=("build", "run"), when="@5:")
|
||||||
depends_on("java@9:", type=("build", "run"), when="@4.0.0:")
|
depends_on("java@9:", type=("build", "run"), when="@4.0.0:")
|
||||||
depends_on("java@:8", type=("build", "run"), when="@:3.11.11")
|
depends_on("java@:8", type=("build", "run"), when="@:3.11.11")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user