
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
30 lines
1.2 KiB
Python
30 lines
1.2 KiB
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Qhull(CMakePackage):
|
|
"""Qhull computes the convex hull, Delaunay triangulation, Voronoi
|
|
diagram, halfspace intersection about a point, furt hest-site
|
|
Delaunay triangulation, and furthest-site Voronoi diagram. The
|
|
source code runs in 2-d, 3-d, 4-d, and higher dimensions. Qhull
|
|
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."""
|
|
|
|
homepage = "http://www.qhull.org"
|
|
|
|
version('2015.2', sha256='78b010925c3b577adc3d58278787d7df08f7c8fb02c3490e375eab91bb58a436',
|
|
url="http://www.qhull.org/download/qhull-2015-src-7.2.0.tgz")
|
|
|
|
version('2012.1', sha256='a35ecaa610550b7f05c3ce373d89c30cf74b059a69880f03080c556daebcff88',
|
|
url="http://www.qhull.org/download/qhull-2012.1-src.tgz")
|
|
|
|
patch('qhull-unused-intel-17.02.patch', when='@2015.2')
|
|
|
|
depends_on('cmake@2.6:', type='build')
|