fds: add 6.9.0,6.9.1 and openmp (#46717)

* fds: add 6.9.0,6.9.1 and openmp
* typo and style fix
This commit is contained in:
kjrstory 2024-10-03 02:47:12 +09:00 committed by GitHub
parent 1da7d3bfe3
commit 787863e176
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,8 +21,14 @@ class Fds(MakefilePackage):
url = "https://github.com/firemodels/fds/archive/refs/tags/FDS-6.8.0.tar.gz"
git = "https://github.com/firemodels/fds.git"
version("6.9.1", commit="889da6ae08d08dae680f7c0d8de66a3ad1c65375")
version("6.9.0", commit="63395692607884566fdedb5db4b5b4d98d3bcafb")
version("6.8.0", commit="886e0096535519b7358a3c4393c91da3caee5072")
variant("openmp", default=False, description="Enable OpenMP support")
conflicts("%gcc", when="+openmp", msg="GCC already provides OpenMP support")
depends_on("fortran", type="build") # generated
depends_on("mpi")
@ -86,11 +92,12 @@ def build_targets(self):
mpi_prefix = mpi_mapping[spec["mpi"].name]
compiler_prefix = compiler_mapping[spec.compiler.name]
platform_prefix = platform_mapping[spec.architecture.platform]
return ["{}_{}_{}".format(mpi_prefix, compiler_prefix, platform_prefix)]
openmp_prefix = "_openmp" if "+openmp" in spec else ""
return [f"{mpi_prefix}_{compiler_prefix}_{platform_prefix}{openmp_prefix}"]
def install(self, spec, prefix):
mkdirp(prefix.bin)
with working_dir(self.build_directory):
install("*.mod", prefix.bin)
install("*.o", prefix.bin)
install("fds_" + self.build_targets[0], prefix.bin + "/fds")
install("fds_" + self.build_targets[0], join_path(prefix.bin, "fds"))