diff options
author | G-Ragghianti <33492707+G-Ragghianti@users.noreply.github.com> | 2020-06-19 12:10:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-19 11:10:03 -0500 |
commit | 844312f2135169b9e329710e178177df0553e412 (patch) | |
tree | cd0ec646365072e0201d7e96d015c7b56e373e74 /var | |
parent | b73536b4ad15fbbac3a99908fb6db40a68642066 (diff) | |
download | spack-844312f2135169b9e329710e178177df0553e412.tar.gz spack-844312f2135169b9e329710e178177df0553e412.tar.bz2 spack-844312f2135169b9e329710e178177df0553e412.tar.xz spack-844312f2135169b9e329710e178177df0553e412.zip |
Updated slate package to use new git repo. Added maintainer. (#17165)
* Updated slate package to use new git repo. Added maintainer.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/slate/package.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/slate/package.py b/var/spack/repos/builtin/packages/slate/package.py index 67264d3bc9..cae0a0e8df 100644 --- a/var/spack/repos/builtin/packages/slate/package.py +++ b/var/spack/repos/builtin/packages/slate/package.py @@ -16,10 +16,10 @@ class Slate(Package): solvers.""" homepage = "https://icl.utk.edu/slate/" - hg = "https://bitbucket.org/icl/slate" - maintainers = ['G-Ragghianti'] + git = "https://bitbucket.org/icl/slate" + maintainers = ['G-Ragghianti', 'mgates3'] - version('develop', hg=hg) + version('develop', submodules=True) variant('cuda', default=True, description='Build with CUDA support.') variant('mpi', default=True, description='Build with MPI support.') @@ -27,7 +27,6 @@ class Slate(Package): depends_on('cuda@9:', when='+cuda') depends_on('intel-mkl') - depends_on('mercurial', type='build') depends_on('mpi', when='+mpi') conflicts('%gcc@:5') |