Skip to content

Commit

Permalink
Add GDL 0.9.9 (spack#11760)
Browse files Browse the repository at this point in the history
* Add GDL 0.9.9

* Add comment on PROJ dependency
  • Loading branch information
adamjstewart authored and carsonwoods committed Jun 27, 2019
1 parent 1a587f3 commit 84b03b0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions var/spack/repos/builtin/packages/gdl/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -34,14 +35,17 @@ 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')
depends_on('libx11', when='+x11')
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')
Expand Down

0 comments on commit 84b03b0

Please sign in to comment.