summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-06-20 12:36:10 -0500
committerElizabeth Fischer <elizabeth.fischer@columbia.edu>2019-06-20 13:36:10 -0400
commit4858d8c275b73dfeb2f15c5d30eb894775c9742b (patch)
tree884d8ce25bebfb8cd4b04d24aeacdcdf81cd5352
parent0cec7c659003267941a60fe21f6b4bb99ba7338e (diff)
downloadspack-4858d8c275b73dfeb2f15c5d30eb894775c9742b.tar.gz
spack-4858d8c275b73dfeb2f15c5d30eb894775c9742b.tar.bz2
spack-4858d8c275b73dfeb2f15c5d30eb894775c9742b.tar.xz
spack-4858d8c275b73dfeb2f15c5d30eb894775c9742b.zip
Add GDL 0.9.9 (#11760)
* Add GDL 0.9.9 * Add comment on PROJ dependency
-rw-r--r--var/spack/repos/builtin/packages/gdl/package.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/gdl/package.py b/var/spack/repos/builtin/packages/gdl/package.py
index ecb318eb04..700720b7f9 100644
--- a/var/spack/repos/builtin/packages/gdl/package.py
+++ b/var/spack/repos/builtin/packages/gdl/package.py
@@ -14,8 +14,9 @@ class Gdl(CMakePackage):
"""
homepage = "https://github.com/gnudatalanguage/gdl"
- url = "https://github.com/gnudatalanguage/gdl/archive/v0.9.8.tar.gz"
+ url = "https://github.com/gnudatalanguage/gdl/archive/v0.9.9.tar.gz"
+ version('0.9.9', sha256='ad5de3fec095a5c58b46338dcc7367d2565c093794ab1bbcf180bba1a712cf14')
version('0.9.8', '447b0362e1df5ea8af814a969e89d3ec')
variant(
@@ -34,6 +35,7 @@ class Gdl(CMakePackage):
extends('python', when='+python')
+ depends_on('cmake@3:', type='build')
depends_on('graphicsmagick', when='+graphicsmagick')
depends_on('hdf', when='+hdf4')
depends_on('hdf5', when='+hdf5')
@@ -41,7 +43,9 @@ class Gdl(CMakePackage):
depends_on('plplot+wx', when='+wx@:5.11')
depends_on('plplot+wx+wxold', when='+wx@5.12:')
depends_on('plplot~wx', when='~wx')
- depends_on('proj', when='+proj')
+ # Too many dependencies to test if GDL supports PROJ.6,
+ # so restricting to old API
+ depends_on('proj@:5', when='+proj')
depends_on('py-numpy', type=('build', 'run'), when='+embed_python')
depends_on('python@2.7:2.8', type=('build', 'run'), when='+embed_python')
depends_on('wx', when='+wx')