lfortran: add v0.30.0 (#42000)

This commit is contained in:
Christoph Junghans 2024-01-09 08:03:32 -07:00 committed by GitHub
parent 651b63d0bb
commit 13e8029904
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,7 @@ class Lfortran(CMakePackage):
# The build process uses 'git describe --tags' to get the package version
version("main", branch="main", get_full_repo=True)
version("0.30.0", sha256="aafdfbfe81d69ceb3650ae1cf9bcd8a1f1532d895bf88f3071fe9610859bcd6f")
version("0.19.0", sha256="d496f61d7133b624deb3562677c0cbf98e747262babd4ac010dbd3ab4303d805")
variant("llvm", default=True, description="Build with LLVM support")
@ -25,7 +26,8 @@ class Lfortran(CMakePackage):
depends_on("python@3:", type="build", when="@main")
depends_on("cmake", type="build")
depends_on("llvm@11:15", type=("build", "run"), when="+llvm")
depends_on("llvm@11:15", type=("build", "run"), when="@0.19.0+llvm")
depends_on("llvm@11:16", type=("build", "run"), when="@0.30.0:+llvm")
depends_on("zlib-api")
depends_on("re2c", type="build", when="@main")
depends_on("bison@:3.4", type="build", when="@main")