diff options
author | Greg Sjaardema <gsjaardema@gmail.com> | 2020-09-15 15:43:45 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 16:43:45 -0500 |
commit | 6a3583f1818ea5c7125a7d550ef6fb49d4fbc17e (patch) | |
tree | 5549b276d249874de4e5368ee4ae35a7b940c3ad | |
parent | bad9f2bc2844b84b188b5be9fef360bc6848c608 (diff) | |
download | spack-6a3583f1818ea5c7125a7d550ef6fb49d4fbc17e.tar.gz spack-6a3583f1818ea5c7125a7d550ef6fb49d4fbc17e.tar.bz2 spack-6a3583f1818ea5c7125a7d550ef6fb49d4fbc17e.tar.xz spack-6a3583f1818ea5c7125a7d550ef6fb49d4fbc17e.zip |
MatIO: Update repository and add new versions (#18683)
MatIO development has switched to github from sourceforge. Updated the `git` and `url` variables and added the four new versions (1.5.14 -- 1.5.17) that have been released since the last update of this package.
-rw-r--r-- | var/spack/repos/builtin/packages/matio/package.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/matio/package.py b/var/spack/repos/builtin/packages/matio/package.py index 69732a333b..08eb23771d 100644 --- a/var/spack/repos/builtin/packages/matio/package.py +++ b/var/spack/repos/builtin/packages/matio/package.py @@ -9,10 +9,13 @@ from spack import * class Matio(AutotoolsPackage): """matio is an C library for reading and writing Matlab MAT files""" homepage = "https://sourceforge.net/projects/matio/" - url = "https://sourceforge.net/projects/matio/files/matio/1.5.9/matio-1.5.9.tar.gz" - list_url = "https://sourceforge.net/projects/matio/files/matio" - list_depth = 1 + git = "https://github.com/tbeu/matio" + url = "https://github.com/tbeu/matio/releases/download/v1.5.9/matio-1.5.9.tar.gz" + version('1.5.17', sha256='5e455527d370ab297c4abe5a2ab4d599c93ac7c1a0c85d841cc5c22f8221c400') + version('1.5.16', sha256='47ba3d5d269d5709b8d9a7385c88c8b5fb5ff875ef781a1ced4892b5b03c4f44') + version('1.5.15', sha256='21bf4587bb7f0231dbb4fcc88728468f1764c06211d5a0415cd622036f09b1cf') + version('1.5.14', sha256='0b3abb98f5cd75627122a72522db4e4280eb580bdbeafe90a8a0d2df22801f6e') version('1.5.13', sha256='feadb2f54ba7c9db6deba8c994e401d7a1a8e7afd0fe74487691052b8139e5cb') version('1.5.12', sha256='8695e380e465056afa5b5e20128935afe7d50e03830f9f7778a72e1e1894d8a9') version('1.5.11', sha256='0ccced0c55c9c2cdc21348b7e16447843402d729ffaadd6135767faad7c9cf0b') |