Remove redundant cmake dependencies (#3860)

This commit is contained in:
Adam J. Stewart 2017-04-16 12:23:26 -05:00 committed by GitHub
parent 675a67e2ca
commit cc747d6b6f
5 changed files with 0 additions and 9 deletions

View File

@ -34,8 +34,6 @@ class Cppad(CMakePackage):
version('20170114', '565a534dc813fa1289764222cd8c11ea')
version('develop', git='https://github.com/coin-or/CppAD.git')
depends_on('cmake', type='build')
def cmake_args(self):
# This package does not obey CMAKE_INSTALL_PREFIX
args = [

View File

@ -62,7 +62,6 @@ class Elemental(CMakePackage):
variant('scalapack', default=False,
description='Build with ScaLAPACK library')
depends_on('cmake', type='build')
# Note that this forces us to use OpenBLAS until #1712 is fixed
depends_on('blas', when='~openmp_blas ~int64_blas')
# Hack to forward variant to openblas package

View File

@ -50,7 +50,6 @@ class Libsplash(CMakePackage):
variant('mpi', default=True,
description='Enable parallel I/O (one-file aggregation) support')
depends_on('cmake', type='build')
depends_on('hdf5@1.8.6:')
depends_on('hdf5+mpi', when='+mpi')
depends_on('mpi', when='+mpi')

View File

@ -45,7 +45,6 @@ class Pngwriter(CMakePackage):
version('0.6.0', '0a19bc55c5f6379fea7343752fd3ffae')
version('0.5.6', 'c13bd1fdc0e331a246e6127b5f262136')
depends_on('cmake', type='build')
depends_on('libpng')
depends_on('zlib')
depends_on('freetype')

View File

@ -55,10 +55,6 @@ class Symengine(CMakePackage):
variant('shared', default=True,
description='Enables the build of shared libraries')
# Build dependencies
depends_on('cmake', type='build')
# Other dependencies
# NOTE: mpir is a drop-in replacement for gmp
# NOTE: [mpc,mpfr,flint,piranha] could also be built against mpir
depends_on('boost', when='+boostmp')