diff options
author | Francesco Di Natale <dinatale3@llnl.gov> | 2019-12-06 16:10:58 -0800 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-12-06 18:10:58 -0600 |
commit | 01d35a4f3b81cf6985092aef5f1b05639cca5deb (patch) | |
tree | f9ba1c36ece1496a938492d7feca41cabd07b698 | |
parent | 66a169e2a52306799b0f24e34cb6172959da7f8a (diff) | |
download | spack-01d35a4f3b81cf6985092aef5f1b05639cca5deb.tar.gz spack-01d35a4f3b81cf6985092aef5f1b05639cca5deb.tar.bz2 spack-01d35a4f3b81cf6985092aef5f1b05639cca5deb.tar.xz spack-01d35a4f3b81cf6985092aef5f1b05639cca5deb.zip |
Packages/py-maestrowf (#14010)
* Addition of repository branches to maestrowf.
* Addition of 1.1.5dev pre-release.
* Correction of a merge conflict.
* Addition of Maestro release 1.1.5
* Addition of Maestro release 1.1.6 (removal of 1.1.5)
* Sets 1.1.6 to the preferred version.
Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
* Tweak to the url to point to latest.
-rw-r--r-- | var/spack/repos/builtin/packages/py-maestrowf/package.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-maestrowf/package.py b/var/spack/repos/builtin/packages/py-maestrowf/package.py index 66e766536f..79c52b38ea 100644 --- a/var/spack/repos/builtin/packages/py-maestrowf/package.py +++ b/var/spack/repos/builtin/packages/py-maestrowf/package.py @@ -11,10 +11,22 @@ class PyMaestrowf(PythonPackage): simulation studies.""" homepage = "https://github.com/LLNL/maestrowf/" - url = "https://github.com/LLNL/maestrowf/archive/v1.1.2.tar.gz" + url = "https://github.com/LLNL/maestrowf/archive/v1.1.6.tar.gz" + git = "https://github.com/LLNL/maestrowf/" maintainers = ['FrankD412'] + # git branches + version('develop', branch='develop') + version('master', branch='master') + + # Pre-release candidates + version('1.1.5dev', sha256='eb3d6f31c233e2cde3b84e15c657002b83ff43d4d6b218b33d023a4f527b9e08') + version('1.1.4dev1.0', sha256='67f59eed6fa69fc71b88a0a769de9f080300497d3c30d3a0893eabd0702bc48e') + version('1.1.4dev1.1', sha256='c8612b5423b44f11e2a7c4fbc31eb741013245870512ee2dbf7367024517528f') + + # pypi releases + version('1.1.6', sha256='27a4ab9072c5b5e2edf91c192d9fe67f040dd45be7f3e44fd9a998ce4cb1e92d', preferred=True) version('1.1.4', sha256='2cb0fa6f6281d8618ac79217ea5f4fd8cb24955c4315e873657f96b815f171d5') version('1.1.2', sha256='ebb45bff54625435bc9f2462e1bdc3b5bdc4d943378c53e7810c11836794c5e0') version('1.1.1', sha256='a476ad4b40846d7b7f9540d6413df1b42eb655735e8d3c6c07e0baa68e20a8bb') |