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
@@ -42,10 +42,10 @@ class RRstan(RPackage):
|
||||
|
||||
version('2.10.1', 'f5d212f6f8551bdb91fe713d05d4052a')
|
||||
|
||||
depends_on('r-ggplot2', type=nolink)
|
||||
depends_on('r-stanheaders', type=nolink)
|
||||
depends_on('r-inline', type=nolink)
|
||||
depends_on('r-gridextra', type=nolink)
|
||||
depends_on('r-rcpp', type=nolink)
|
||||
depends_on('r-rcppeigen', type=nolink)
|
||||
depends_on('r-bh', type=nolink)
|
||||
depends_on('r-ggplot2', type=('build', 'run'))
|
||||
depends_on('r-stanheaders', type=('build', 'run'))
|
||||
depends_on('r-inline', type=('build', 'run'))
|
||||
depends_on('r-gridextra', type=('build', 'run'))
|
||||
depends_on('r-rcpp', type=('build', 'run'))
|
||||
depends_on('r-rcppeigen', type=('build', 'run'))
|
||||
depends_on('r-bh', type=('build', 'run'))
|
||||
|
Reference in New Issue
Block a user