yara: add v4.5.2 (fix CVE) (#46998)

* yara: add v4.5.2

* yara: deprecate 3.9.0
This commit is contained in:
Wouter Deconinck 2024-10-15 18:50:56 -05:00 committed by GitHub
parent b0314faa3d
commit e3afe9a364
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,10 @@ class Yara(AutotoolsPackage):
license("BSD-3-Clause")
version("3.9.0", sha256="ebe7fab0abadb90449a62afbd24e196e18b177efe71ffd8bf22df95c5386f64d")
version("4.5.2", sha256="1f87056fcb10ee361936ee7b0548444f7974612ebb0e681734d8de7df055d1ec")
with default_args(deprecated=True):
# https://nvd.nist.gov/vuln/detail/CVE-2021-3402
version("3.9.0", sha256="ebe7fab0abadb90449a62afbd24e196e18b177efe71ffd8bf22df95c5386f64d")
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
@ -24,3 +27,4 @@ class Yara(AutotoolsPackage):
depends_on("automake", type="build")
depends_on("libtool", type="build")
depends_on("m4", type="build")
depends_on("pkgconfig", type="build", when="@4:")