Skip to content
Snippets Groups Projects
Commit 25129d4a authored by Lukasz's avatar Lukasz Committed by Adam J. Stewart
Browse files

fix moab installation for version 5.0.2 removed from ftp (#10201)

* moab install from git repository, fix version 5.0.2 removed from ftp server

* add moab dependencies above verson 5.0.1
parent 39589065
No related branches found
No related tags found
No related merge requests found
......@@ -17,9 +17,15 @@ class Moab(AutotoolsPackage):
versatile enough to support individual entity access."""
homepage = "https://bitbucket.org/fathomteam/moab"
git = "https://bitbucket.org/fathomteam/moab.git"
url = "http://ftp.mcs.anl.gov/pub/fathom/moab-5.0.0.tar.gz"
version('5.0.2', '00a6f96f2e6591ab087548839fa3825e')
version('develop', branch='develop')
version('master', branch='master')
# Version 5.0.2 disappeared from FTP server. Instead set temporary version
# of MoAB to 5.0.2 set to current head of the master branch.
version('5.0.2', commit='01d05b1805236ef44da36f67eb2701095f2e33c7')
version('5.0.1', commit='6cc12bd4ae3fa7c9ad81c595e4d38fa84f0884be')
version('5.0.0', '1840ca02366f4d3237d44af63e239e3b')
version('4.9.2', '540931a604c180bbd3c1bb3ee8c51dd0')
version('4.9.1', '19cc2189fa266181ad9109b18d0b2ab8')
......@@ -62,6 +68,10 @@ class Moab(AutotoolsPackage):
# depends_on('cgns', when='+cgns')
# depends_on('vtk', when='+vtk')
depends_on('autoconf', type='build', when='@master,5.0.1:')
depends_on('automake', type='build', when='@master,5.0.1:')
depends_on('libtool', type='build', when='@master,5.0.1:')
depends_on('m4', type='build', when='@master,5.0.1:')
depends_on('blas')
depends_on('lapack')
depends_on('mpi', when='+mpi')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment