summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorFrancesco Di Natale <frank.dinatale1988@gmail.com>2018-09-04 13:33:55 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2018-09-04 14:33:55 -0500
commite85f737d1f343afea36c53ebc20882521ffc4ae6 (patch)
tree63dfe1f95e7d5918693a4cd8a2c1b0492d624274 /var
parentdd27662b401e2852f22eafecdd4532155deca3d6 (diff)
downloadspack-e85f737d1f343afea36c53ebc20882521ffc4ae6.tar.gz
spack-e85f737d1f343afea36c53ebc20882521ffc4ae6.tar.bz2
spack-e85f737d1f343afea36c53ebc20882521ffc4ae6.tar.xz
spack-e85f737d1f343afea36c53ebc20882521ffc4ae6.zip
py-maestrowf: Addition of new releases. (#9135)
* Addition of latest maestrowf releases. * Addition of filelock to dependencies. * Addition of when clause to depends_on for filelock and tabulate. * Correction of the tar url.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-maestrowf/package.py7
1 files changed, 6 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 fbecbcd1a7..7a5ab5f975 100644
--- a/var/spack/repos/builtin/packages/py-maestrowf/package.py
+++ b/var/spack/repos/builtin/packages/py-maestrowf/package.py
@@ -30,11 +30,16 @@ class PyMaestrowf(PythonPackage):
simulation studies."""
homepage = "https://github.com/LLNL/maestrowf/"
- url = "https://github.com/LLNL/maestrowf/archive/v1.0.1.tar.gz"
+ url = "https://github.com/LLNL/maestrowf/archive/v1.1.2.tar.gz"
+ version('1.1.2', 'a9e05d82910cd2dd077321fb9b0c8dcd')
+ version('1.1.1', 'd38bbf634de4f29fd01d1864ba2f70e0')
+ version('1.1.0', '3c20bf36fbb85d14c3bfdb865944a409')
version('1.0.1', '6838fc8bdc7ca0c1adbb6a0333f005b4')
depends_on('py-setuptools', type='build')
depends_on('py-pyyaml', type=('build', 'run'))
depends_on('py-six', type=('build', 'run'))
depends_on('py-enum34', type=('build', 'run'))
+ depends_on('py-tabulate', type=('build', 'run'), when='@1.1.0:')
+ depends_on('py-filelock', type=('build', 'run'), when='@1.1.0:')