zig: add v0.13.0 (#44912)

This commit is contained in:
Massimiliano Culpo 2024-06-27 19:38:12 +02:00 committed by GitHub
parent 9b08296236
commit fdb8d565aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,12 +17,10 @@ class Zig(CMakePackage):
license("MIT")
version("0.13.0", tag="0.13.0", commit="cf90dfd3098bef5b3c22d5ab026173b3c357f2dd")
version("0.12.0", tag="0.12.0", commit="a685ab1499d6560c523f0dbce2890dc140671e43")
version("0.11.0", tag="0.11.0", commit="67709b638224ac03820226c6744d8b6ead59184c")
version("0.10.1", tag="0.10.1", commit="b57081f039bd3f8f82210e8896e336e3c3a6869b")
version(
"0.9.1", tag="0.9.1", commit="6d44a6222d6eba600deb7f16c124bfa30628fb60", deprecated=True
)
variant(
"build_type",
@ -32,10 +30,10 @@ class Zig(CMakePackage):
)
depends_on("llvm targets=all")
depends_on("llvm@13", when="@0.9.1")
depends_on("llvm@15", when="@0.10.1")
depends_on("llvm@16", when="@0.11.0")
depends_on("llvm@17", when="@0.12.0")
depends_on("llvm@18", when="@0.13.0")
depends_on("git", type="build")
depends_on("ccache")