diff options
author | Michio Ogawa <michioga@users.noreply.github.com> | 2020-06-18 00:45:51 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-17 17:45:51 +0200 |
commit | ad18933ef400ecbb879feebb32368ab7cc898493 (patch) | |
tree | 322c6639bf3edb59ab51c4781d33b7b38b2045eb | |
parent | eca08c77e383692d0c00c964f1c129b0996f5bc1 (diff) | |
download | spack-ad18933ef400ecbb879feebb32368ab7cc898493.tar.gz spack-ad18933ef400ecbb879feebb32368ab7cc898493.tar.bz2 spack-ad18933ef400ecbb879feebb32368ab7cc898493.tar.xz spack-ad18933ef400ecbb879feebb32368ab7cc898493.zip |
FrontISTR: various updates to the package (#17089)
* Added maintainers
* Refined dependencies
* Changed git url
-rw-r--r-- | var/spack/repos/builtin/packages/frontistr/package.py | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/frontistr/package.py b/var/spack/repos/builtin/packages/frontistr/package.py index 0a0cf7d628..ebdfa0a3e3 100644 --- a/var/spack/repos/builtin/packages/frontistr/package.py +++ b/var/spack/repos/builtin/packages/frontistr/package.py @@ -11,18 +11,25 @@ class Frontistr(CMakePackage): """Open-Source Large-Scale Parallel FEM Program for Nonlinear Structural Analysis""" - homepage = "https://github.com/FrontISTR/FrontISTR" - git = "https://github.com/FrontISTR/FrontISTR.git" + homepage = "https://www.frontistr.com/" + git = "https://gitlab.com/FrontISTR-Commons/FrontISTR.git" + maintainers = ['hiroshi.okuda', 'kgoto', 'morita', 'inagaki', 'michioga'] version('5.0', tag='v5.0') + version('master', tag='master') + + variant('build_type', default='RELEASE', + description='CMake build type', + values=('DEBUG', 'RELEASE')) depends_on('mpi') - depends_on('revocap-refiner') - depends_on('revocap-coupler') depends_on('blas') - depends_on('metis') + depends_on('lapack') depends_on('scalapack') - depends_on('mumps +mpi') + depends_on('revocap-refiner') + # depends_on('revocap-coupler') + depends_on('metis') + depends_on('mumps') depends_on('trilinos') def cmake_args(self): |