diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2024-08-05 11:56:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-05 18:56:36 +0200 |
commit | 02063302c5422a2cb2480de1dca428afb38adfe3 (patch) | |
tree | 2492f7290fcc71c08d262a503d77eab193fdbbf0 | |
parent | b9125ae3e73c6c8d24b4a3b5670fb2005394ba5d (diff) | |
download | spack-02063302c5422a2cb2480de1dca428afb38adfe3.tar.gz spack-02063302c5422a2cb2480de1dca428afb38adfe3.tar.bz2 spack-02063302c5422a2cb2480de1dca428afb38adfe3.tar.xz spack-02063302c5422a2cb2480de1dca428afb38adfe3.zip |
fastor: add git attribute, verify language dependency (#45549)
-rw-r--r-- | var/spack/repos/builtin/packages/fastor/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/fastor/package.py b/var/spack/repos/builtin/packages/fastor/package.py index c6ff4fa6f9..348026f3e3 100644 --- a/var/spack/repos/builtin/packages/fastor/package.py +++ b/var/spack/repos/builtin/packages/fastor/package.py @@ -12,6 +12,7 @@ class Fastor(CMakePackage): homepage = "https://github.com/romeric/Fastor" url = "https://github.com/romeric/Fastor/archive/refs/tags/V0.6.4.tar.gz" + git = "https://github.com/romeric/Fastor.git" maintainers("wdconinc") @@ -19,7 +20,7 @@ class Fastor(CMakePackage): version("0.6.4", sha256="c97a3b9dbb92413be90689af9d942cddee12a74733cf42f1a8014965553a11f8") - depends_on("cxx", type="build") # generated + depends_on("cxx", type="build") depends_on("cmake@3.20:", type="build") |