Swift/T Release 1.3 (#4641)

New release of Swift/T along with turbine, adlbx, and exmcutils
dependencies. Update URLs for archive downloads.
This commit is contained in:
Justin M Wozniak
2018-10-12 19:32:27 -05:00
committed by Peter Scheibel
parent 028391c0a3
commit ec81ec5f54
4 changed files with 42 additions and 10 deletions

View File

@@ -30,12 +30,21 @@ class Adlbx(AutotoolsPackage):
"""ADLB/X: Master-worker library + work stealing and data dependencies"""
homepage = 'http://swift-lang.org/Swift-T'
url = 'http://swift-lang.github.io/swift-t-downloads/adlbx-0.8.0.tar.gz'
url = 'http://swift-lang.github.io/swift-t-downloads/spack/adlbx-0.0.0.tar.gz'
version('0.9.1', '07151ddef5fb83d8f4b40700013d9daf')
version('0.8.0', '34ade59ce3be5bc296955231d47a27dd')
depends_on('exmcutils')
depends_on('exmcutils@:0.5.3', when='@:0.8.0')
depends_on('exmcutils', when='@0.9.1:')
depends_on('mpi')
def setup_environment(self, spack_env, run_env):
spec = self.spec
spack_env.set('CC', spec['mpi'].mpicc)
spack_env.set('CXX', spec['mpi'].mpicxx)
spack_env.set('CXXLD', spec['mpi'].mpicxx)
def configure_args(self):
args = ['--with-c-utils=' + self.spec['exmcutils'].prefix]
return args