nim: add v2.0.4 (#44375)

* Add nim 2.0.4
* Use install instead of copy

---------

Co-authored-by: dialvarezs <dialvarezs@users.noreply.github.com>
This commit is contained in:
Diego Alvarez S 2024-05-29 22:05:11 -03:00 committed by GitHub
parent 11869ff872
commit 0601d6a0c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,6 @@
# Spack Project Developers. See the top-level COPYRIGHT file for details. # Spack Project Developers. See the top-level COPYRIGHT file for details.
# #
# SPDX-License-Identifier: (Apache-2.0 OR MIT) # SPDX-License-Identifier: (Apache-2.0 OR MIT)
import os.path
from spack.package import * from spack.package import *
@ -18,6 +17,7 @@ class Nim(Package):
license("MIT") license("MIT")
version("2.0.4", sha256="71526bd07439dc8e378fa1a6eb407eda1298f1f3d4df4476dca0e3ca3cbe3f09")
version("1.9.3", sha256="d8de7515db767f853d9b44730f88ee113bfe9c38dcccd5afabc773e2e13bf87c") version("1.9.3", sha256="d8de7515db767f853d9b44730f88ee113bfe9c38dcccd5afabc773e2e13bf87c")
version("1.4.4", sha256="6d73729def143f72fc2491ca937a9cab86d2a8243bd845a5d1403169ad20660e") version("1.4.4", sha256="6d73729def143f72fc2491ca937a9cab86d2a8243bd845a5d1403169ad20660e")
version("1.4.2", sha256="03a47583777dd81380a3407aa6a788c9aa8a67df4821025770c9ac4186291161") version("1.4.2", sha256="03a47583777dd81380a3407aa6a788c9aa8a67df4821025770c9ac4186291161")
@ -42,18 +42,20 @@ class Nim(Package):
depends_on("openssl") depends_on("openssl")
def patch(self): def patch(self):
install_sh_path = os.path.join(self.stage.source_path, "install.sh") install_sh_path = join_path(self.stage.source_path, "install.sh")
filter_file("1/nim", "1", install_sh_path) filter_file("1/nim", "1", install_sh_path)
def install(self, spec, prefix): def install(self, spec, prefix):
bash = which("bash") bash = which("bash")
bash("./build.sh") bash("./build.sh")
nim = Executable(os.path.join("bin", "nim")) nim = Executable(join_path("bin", "nim"))
nim("c", "koch") nim("c", "koch")
koch = Executable("./koch") koch = Executable("./koch")
koch("boot", "-d:release") koch("boot", "-d:release")
koch("tools") koch("tools")
koch("nimble")
bash("./install.sh", prefix) bash("./install.sh", prefix)
install(join_path("bin", "nimble"), join_path(prefix, "bin"))