spack/var/spack/repos/builtin/packages/py-cvxopt/package.py
Todd Gamblin 62927654dd checksums: use sha256 checksums everywhere
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
2019-10-12 07:19:43 -07:00

125 lines
4.4 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 PyCvxopt(PythonPackage):
"""CVXOPT is a free software package for convex optimization based on the
Python programming language."""
homepage = "http://cvxopt.org/"
url = "https://pypi.io/packages/source/c/cvxopt/cvxopt-1.1.9.tar.gz"
import_modules = ['cvxopt']
version('1.1.9', sha256='8f157e7397158812cabd340b68546f1baa55a486ed0aad8bc26877593dc2983d')
variant('gsl', default=False, description='Use GSL random number generators for constructing random matrices')
variant('fftw', default=False, description='Install the cvxopt.fftw interface to FFTW')
variant('glpk', default=False, description='Enable support for the linear programming solver GLPK')
# variant('mosek', default=False, description='Enable support for the linear, second-order cone, and quadratic programming solvers in MOSEK') # noqa
variant('dsdp', default=False, description='Enable support for the semidefinite programming solver DSDP')
# Required dependencies
depends_on('python@2.7:')
depends_on('py-setuptools', type='build')
depends_on('blas')
depends_on('lapack')
depends_on('suite-sparse')
# Optional dependencies
depends_on('gsl', when='+gsl')
depends_on('fftw', when='+fftw')
depends_on('glpk', when='+glpk')
# depends_on('mosek@8:', when='+mosek')
depends_on('dsdp@5.8:', when='+dsdp')
def setup_environment(self, spack_env, run_env):
spec = self.spec
# BLAS/LAPACK Libraries
# Default names of BLAS and LAPACK libraries
spack_env.set('CVXOPT_BLAS_LIB', ';'.join(spec['blas'].libs.names))
spack_env.set('CVXOPT_LAPACK_LIB', ';'.join(spec['lapack'].libs.names))
# Directory containing BLAS and LAPACK libraries
spack_env.set('CVXOPT_BLAS_LIB_DIR', spec['blas'].libs.directories[0])
# SuiteSparse Libraries
# Directory containing SuiteSparse libraries
spack_env.set('CVXOPT_SUITESPARSE_LIB_DIR',
spec['suite-sparse'].libs.directories[0])
# Directory containing SuiteSparse header files
spack_env.set('CVXOPT_SUITESPARSE_INC_DIR',
spec['suite-sparse'].headers.directories[0])
# GSL Libraries
if '+gsl' in spec:
spack_env.set('CVXOPT_BUILD_GSL', 1)
# Directory containing libgsl
spack_env.set('CVXOPT_GSL_LIB_DIR',
spec['gsl'].libs.directories[0])
# Directory containing the GSL header files
spack_env.set('CVXOPT_GSL_INC_DIR',
spec['gsl'].headers.directories[0])
else:
spack_env.set('CVXOPT_BUILD_GSL', 0)
# FFTW Libraries
if '+fftw' in spec:
spack_env.set('CVXOPT_BUILD_FFTW', 1)
# Directory containing libfftw3
spack_env.set('CVXOPT_FFTW_LIB_DIR',
spec['fftw'].libs.directories[0])
# Directory containing fftw.h
spack_env.set('CVXOPT_FFTW_INC_DIR',
spec['fftw'].headers.directories[0])
else:
spack_env.set('CVXOPT_BUILD_FFTW', 0)
# GLPK Libraries
if '+glpk' in spec:
spack_env.set('CVXOPT_BUILD_GLPK', 1)
# Directory containing libglpk
spack_env.set('CVXOPT_GLPK_LIB_DIR',
spec['glpk'].libs.directories[0])
# Directory containing glpk.h
spack_env.set('CVXOPT_GLPK_INC_DIR',
spec['glpk'].headers.directories[0])
else:
spack_env.set('CVXOPT_BUILD_GLPK', 0)
# DSDP Libraries
if '+dsdp' in spec:
spack_env.set('CVXOPT_BUILD_DSDP', 1)
# Directory containing libdsdp
spack_env.set('CVXOPT_DSDP_LIB_DIR',
spec['dsdp'].libs.directories[0])
# Directory containing dsdp5.h
spack_env.set('CVXOPT_DSDP_INC_DIR',
spec['dsdp'].headers.directories[0])
@run_after('install')
@on_package_attributes(run_tests=True)
def install_test(self):
"""Test that the installation was successful."""
python('-m', 'unittest', 'discover', '-s', 'tests')