diff options
author | fpruvost <florent.pruvost@inria.fr> | 2024-06-25 22:58:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-25 13:58:54 -0700 |
commit | b081e0046f34f86d254508dc29634a737e53c8f7 (patch) | |
tree | d9c4ddf5a14b4ceae3e836a9825292c27076b07f /var | |
parent | baf82c0245864e2e6abd79c910151b0f27c4488c (diff) | |
download | spack-b081e0046f34f86d254508dc29634a737e53c8f7.tar.gz spack-b081e0046f34f86d254508dc29634a737e53c8f7.tar.bz2 spack-b081e0046f34f86d254508dc29634a737e53c8f7.tar.xz spack-b081e0046f34f86d254508dc29634a737e53c8f7.zip |
Move/rename maphyspp to composyx (#44836)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/composyx/package.py (renamed from var/spack/repos/builtin/packages/maphyspp/package.py) | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/maphyspp/package.py b/var/spack/repos/builtin/packages/composyx/package.py index fb440cad5a..e0628e3720 100644 --- a/var/spack/repos/builtin/packages/maphyspp/package.py +++ b/var/spack/repos/builtin/packages/composyx/package.py @@ -7,16 +7,16 @@ from spack.package import * -class Maphyspp(CMakePackage): +class Composyx(CMakePackage): """a Massively Parallel Hybrid Solver in C++""" - homepage = "https://gitlab.inria.fr/solverstack/maphys/maphyspp" - git = "https://gitlab.inria.fr/solverstack/maphys/maphyspp.git" - url = "https://gitlab.inria.fr/api/v4/projects/6194/packages/generic/source/v1.1.9/maphyspp-1.1.9.tar.gz" + homepage = "https://gitlab.inria.fr/composyx/composyx" + git = "https://gitlab.inria.fr/composyx/composyx.git" + url = "https://gitlab.inria.fr/api/v4/projects/52455/packages/generic/source/v1.0.1/composyx-1.0.1.tar.gz" maintainers("fpruvost") - version("master", branch="master", submodules=True) - version("1.1.9", sha256="472deef05f69c26337a6f8e769cf36cbe0a50e6ec096757389ed10286a0d7e04") + version("main", branch="main", submodules=True) + version("1.0.1", sha256="d97936e3b297fde435c165cbe29cb39e5d88ae368be451b1c45b8ee51486782c") # User options variant("armadillo", default=False, description="Enable Armadillo interface") |