From 13b41cd53c00823e4da64a768ac6282d4d0466a2 Mon Sep 17 00:00:00 2001 From: Christoph Junghans Date: Fri, 27 Oct 2017 07:20:18 -0600 Subject: comd: add v1.1 (#5994) * comd: add v1.1 * Update package.py * remove serial variant, now ~mpi * Update package.py --- var/spack/repos/builtin/packages/comd/package.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'var') 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: -- cgit v1.2.3-70-g09d2