Get Rid of nobuild, nolink, and alldeps (#2765)
* Removing the nobuild, nolink, and alldeps dependency types in favor of being explicit. * This will help with maintenance going forward, as adding more dependency types won't affect existing declared dependencies in weird ways. * default deptype is still `('build', 'link')`
This commit is contained in:

committed by
Todd Gamblin

parent
68baac0549
commit
402dfe30f9
@@ -49,8 +49,8 @@ class Espressopp(CMakePackage):
|
||||
depends_on("boost+serialization+filesystem+system+python+mpi", when='@1.9.4:')
|
||||
extends("python")
|
||||
depends_on("python@2:2.7.13")
|
||||
depends_on("py-mpi4py@2.0.0:", when='@1.9.4', type='nolink')
|
||||
depends_on("py-mpi4py@1.3.1:", when='@1.9.4.1:', type='nolink')
|
||||
depends_on("py-mpi4py@2.0.0:", when='@1.9.4', type=('build', 'run'))
|
||||
depends_on("py-mpi4py@1.3.1:", when='@1.9.4.1:', type=('build', 'run'))
|
||||
depends_on("fftw")
|
||||
depends_on("py-sphinx", when="+ug", type='build')
|
||||
depends_on("py-sphinx", when="+pdf", type='build')
|
||||
|
Reference in New Issue
Block a user