diff options
author | Christoph Junghans <christoph.junghans@gmail.com> | 2017-10-27 07:20:18 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-27 07:20:18 -0600 |
commit | 13b41cd53c00823e4da64a768ac6282d4d0466a2 (patch) | |
tree | 12902f6c3a1f910a92ef878169b5883a768db843 | |
parent | 222fee1cb3daedf20a805f4e4d403260a1bbe228 (diff) | |
download | spack-13b41cd53c00823e4da64a768ac6282d4d0466a2.tar.gz spack-13b41cd53c00823e4da64a768ac6282d4d0466a2.tar.bz2 spack-13b41cd53c00823e4da64a768ac6282d4d0466a2.tar.xz spack-13b41cd53c00823e4da64a768ac6282d4d0466a2.zip |
comd: add v1.1 (#5994)
* comd: add v1.1
* Update package.py
* remove serial variant, now ~mpi
* Update package.py
-rw-r--r-- | var/spack/repos/builtin/packages/comd/package.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/comd/package.py b/var/spack/repos/builtin/packages/comd/package.py index c49e2575a8..5939d14f16 100644 --- a/var/spack/repos/builtin/packages/comd/package.py +++ b/var/spack/repos/builtin/packages/comd/package.py @@ -37,14 +37,14 @@ class Comd(MakefilePackage): versions of CoMD will be released to incorporate the lessons learned from the co-design process.""" - tags = ['proxy-app'] + tags = ['proxy-app', 'ecp-proxy-app'] homepage = "http://www.exmatex.org/comd.html" - url = "https://github.com/exmatex/CoMD/archive/master.tar.gz" + url = "https://github.com/exmatex/CoMD/archive/v1.1.tar.gz" - version('master', git='https://github.com/exmatex/CoMD.git', branch='master') + version('1.1', '5051310a8d2c93cccba63de40bcfaa78') + version('develop', git='https://github.com/exmatex/CoMD.git', branch='master') - variant('serial', default=False, description='Build without MPI support') variant('mpi', default=True, description='Build with MPI support') variant('openmp', default=False, description='Build with OpenMP support') variant('precision', default=True, description='Toggle Precesion Options') @@ -53,7 +53,7 @@ class Comd(MakefilePackage): depends_on('mpi', when='+mpi') depends_on('graphviz', when='+graphs') - conflicts('+openmp', when='~serial') + conflicts('+openmp', when='+mpi') def edit(self, spec, prefix): with working_dir('src-mpi') or working_dir('src-openmp'): @@ -80,7 +80,7 @@ class Comd(MakefilePackage): else: targets.append('--directory=src-mpi') - if '+serial' in self.spec: + if '~mpi' in self.spec: comd_variant += '-serial' targets.append('CC = {0}'.format(cc)) else: |