Skip to content
Snippets Groups Projects
Commit cc747d6b authored by Adam J. Stewart's avatar Adam J. Stewart Committed by GitHub
Browse files

Remove redundant cmake dependencies (#3860)

parent 675a67e2
No related branches found
No related tags found
No related merge requests found
...@@ -34,8 +34,6 @@ class Cppad(CMakePackage): ...@@ -34,8 +34,6 @@ class Cppad(CMakePackage):
version('20170114', '565a534dc813fa1289764222cd8c11ea') version('20170114', '565a534dc813fa1289764222cd8c11ea')
version('develop', git='https://github.com/coin-or/CppAD.git') version('develop', git='https://github.com/coin-or/CppAD.git')
depends_on('cmake', type='build')
def cmake_args(self): def cmake_args(self):
# This package does not obey CMAKE_INSTALL_PREFIX # This package does not obey CMAKE_INSTALL_PREFIX
args = [ args = [
......
...@@ -62,7 +62,6 @@ class Elemental(CMakePackage): ...@@ -62,7 +62,6 @@ class Elemental(CMakePackage):
variant('scalapack', default=False, variant('scalapack', default=False,
description='Build with ScaLAPACK library') description='Build with ScaLAPACK library')
depends_on('cmake', type='build')
# Note that this forces us to use OpenBLAS until #1712 is fixed # Note that this forces us to use OpenBLAS until #1712 is fixed
depends_on('blas', when='~openmp_blas ~int64_blas') depends_on('blas', when='~openmp_blas ~int64_blas')
# Hack to forward variant to openblas package # Hack to forward variant to openblas package
......
...@@ -50,7 +50,6 @@ class Libsplash(CMakePackage): ...@@ -50,7 +50,6 @@ class Libsplash(CMakePackage):
variant('mpi', default=True, variant('mpi', default=True,
description='Enable parallel I/O (one-file aggregation) support') description='Enable parallel I/O (one-file aggregation) support')
depends_on('cmake', type='build')
depends_on('hdf5@1.8.6:') depends_on('hdf5@1.8.6:')
depends_on('hdf5+mpi', when='+mpi') depends_on('hdf5+mpi', when='+mpi')
depends_on('mpi', when='+mpi') depends_on('mpi', when='+mpi')
...@@ -45,7 +45,6 @@ class Pngwriter(CMakePackage): ...@@ -45,7 +45,6 @@ class Pngwriter(CMakePackage):
version('0.6.0', '0a19bc55c5f6379fea7343752fd3ffae') version('0.6.0', '0a19bc55c5f6379fea7343752fd3ffae')
version('0.5.6', 'c13bd1fdc0e331a246e6127b5f262136') version('0.5.6', 'c13bd1fdc0e331a246e6127b5f262136')
depends_on('cmake', type='build')
depends_on('libpng') depends_on('libpng')
depends_on('zlib') depends_on('zlib')
depends_on('freetype') depends_on('freetype')
...@@ -55,10 +55,6 @@ class Symengine(CMakePackage): ...@@ -55,10 +55,6 @@ class Symengine(CMakePackage):
variant('shared', default=True, variant('shared', default=True,
description='Enables the build of shared libraries') 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: mpir is a drop-in replacement for gmp
# NOTE: [mpc,mpfr,flint,piranha] could also be built against mpir # NOTE: [mpc,mpfr,flint,piranha] could also be built against mpir
depends_on('boost', when='+boostmp') depends_on('boost', when='+boostmp')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment