diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-06-17 19:58:43 -0500 |
---|---|---|
committer | Elizabeth Fischer <rpf2116@columbia.edu> | 2019-06-17 20:58:43 -0400 |
commit | b0cf2b58556a12d81165c8c0e5d6536a7e665100 (patch) | |
tree | 81d79734b02b97160ebf05c34b2bf98c80df8bbd | |
parent | de51be45b9b6db714a5b7d8b60307d2f8ed39930 (diff) | |
download | spack-b0cf2b58556a12d81165c8c0e5d6536a7e665100.tar.gz spack-b0cf2b58556a12d81165c8c0e5d6536a7e665100.tar.bz2 spack-b0cf2b58556a12d81165c8c0e5d6536a7e665100.tar.xz spack-b0cf2b58556a12d81165c8c0e5d6536a7e665100.zip |
Add GEOS 3.7.2 (#11734)
-rw-r--r-- | var/spack/repos/builtin/packages/geos/package.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/geos/package.py b/var/spack/repos/builtin/packages/geos/package.py index 8bd330c6df..d369bccfc4 100644 --- a/var/spack/repos/builtin/packages/geos/package.py +++ b/var/spack/repos/builtin/packages/geos/package.py @@ -14,8 +14,11 @@ class Geos(AutotoolsPackage): operators, as well as specific JTS enhanced topology functions.""" homepage = "http://trac.osgeo.org/geos/" - url = "http://download.osgeo.org/geos/geos-3.6.2.tar.bz2" + url = "http://download.osgeo.org/geos/geos-3.7.2.tar.bz2" + maintainers = ['adamjstewart'] + + version('3.7.2', sha256='2166e65be6d612317115bfec07827c11b403c3f303e0a7420a2106bc999d7707') version('3.6.2', 'a32142343c93d3bf151f73db3baa651f') version('3.6.1', 'c97e338b3bc81f9848656e9d693ca6cc') version('3.6.0', '55de5fdf075c608d2d7b9348179ee649') @@ -40,17 +43,15 @@ class Geos(AutotoolsPackage): variant('python', default=False, description='Enable Python support') extends('ruby', when='+ruby') + extends('python', when='+python') # Python 3 is supposedly supported, but I couldn't get it to work # https://trac.osgeo.org/geos/ticket/774 - extends('python@:2', when='+python') + depends_on('python@:2', when='@:3.5') depends_on('swig', type='build', when='+ruby') depends_on('swig', type='build', when='+python') - # `make check` fails with: - # FAIL: geos_unit - # I wasn't able to get the ruby bindings working. # It resulted in "Undefined symbols for architecture x86_64". |