summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-02-03 08:55:32 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-02-03 08:55:32 -0700
commit8a4b86dac923aec9dd7f792eeaf7bb957a404d50 (patch)
tree1bb7f3397ab7d3149f5a0e9e97e22a83e52b611e /var
parentbc4bf71d8fe040ec3f7fce60633e0ed198ebdbf0 (diff)
parentab3698e3a45e96b8cdd8d99220011350fa0489d1 (diff)
downloadspack-8a4b86dac923aec9dd7f792eeaf7bb957a404d50.tar.gz
spack-8a4b86dac923aec9dd7f792eeaf7bb957a404d50.tar.bz2
spack-8a4b86dac923aec9dd7f792eeaf7bb957a404d50.tar.xz
spack-8a4b86dac923aec9dd7f792eeaf7bb957a404d50.zip
Merge pull request #420 from adamjstewart/features/qhull
Add latest qhull version
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/qhull/package.py12
1 files changed, 5 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/qhull/package.py b/var/spack/repos/builtin/packages/qhull/package.py
index f6712ced38..bdca6db15d 100644
--- a/var/spack/repos/builtin/packages/qhull/package.py
+++ b/var/spack/repos/builtin/packages/qhull/package.py
@@ -8,20 +8,18 @@ class Qhull(Package):
implements the Quickhull algorithm for computing the convex
hull. It handles roundoff errors from floating point
arithmetic. It computes volumes, surface areas, and
- approximations to the convex hull.
-
- Qhull does not support triangulation of non-convex surfaces,
- mesh generation of non-convex objects, medium-sized inputs in
- 9-D and higher, alpha shapes, weighted Voronoi diagrams,
- Voronoi volumes, or constrained Delaunay triangulations."""
+ approximations to the convex hull."""
homepage = "http://www.qhull.org"
+ version('7.2.0', 'e6270733a826a6a7c32b796e005ec3dc',
+ url="http://www.qhull.org/download/qhull-2015-src-7.2.0.tgz")
+
version('1.0', 'd0f978c0d8dfb2e919caefa56ea2953c',
url="http://www.qhull.org/download/qhull-2012.1-src.tgz")
# https://github.com/qhull/qhull/pull/5
- patch('qhull-iterator.patch')
+ patch('qhull-iterator.patch', when='@1.0')
def install(self, spec, prefix):
with working_dir('spack-build', create=True):