diff options
author | G-Ragghianti <33492707+G-Ragghianti@users.noreply.github.com> | 2020-06-22 08:21:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 14:21:46 +0200 |
commit | 54cfec025f084632be28f2a9166df0028069dc82 (patch) | |
tree | 3c20e937c981713bc42d85b3c84dc5637442b6bf /var | |
parent | a76545b813d2c7f0e7c174cf1f78755b137e0f60 (diff) | |
download | spack-54cfec025f084632be28f2a9166df0028069dc82.tar.gz spack-54cfec025f084632be28f2a9166df0028069dc82.tar.bz2 spack-54cfec025f084632be28f2a9166df0028069dc82.tar.xz spack-54cfec025f084632be28f2a9166df0028069dc82.zip |
blaspp: moved to new git repo (#17184)
Extended the list of maintainers
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/blaspp/package.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/blaspp/package.py b/var/spack/repos/builtin/packages/blaspp/package.py index 702c33a51f..bcc5e80292 100644 --- a/var/spack/repos/builtin/packages/blaspp/package.py +++ b/var/spack/repos/builtin/packages/blaspp/package.py @@ -7,14 +7,15 @@ from spack import * class Blaspp(CMakePackage): - """BLAS++: C++ API for the Basic Linear Algebra Subroutines (University of - Texas).""" + """C++ API for the Basic Linear Algebra Subroutines. Developed by the + Innovative Computing Laboratory at the University of Tennessee, + Knoxville.""" homepage = "https://bitbucket.org/icl/blaspp" - hg = "https://bitbucket.org/icl/blaspp" - maintainers = ['teonnik', 'Sely85'] + git = "https://bitbucket.org/icl/blaspp" + maintainers = ['teonnik', 'Sely85', 'G-Ragghianti', 'mgates3'] - version('develop', hg=hg, revision="5191c9d") + version('develop', commit='6293d96') variant('gfort', default=False, |