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
@@ -36,14 +36,14 @@ class RRbokeh(RPackage):
|
||||
|
||||
version('0.5.0', '4e14778c3fbd9286460ca28c68f57d10')
|
||||
|
||||
depends_on('r-htmlwidgets', type=nolink)
|
||||
depends_on('r-maps', type=nolink)
|
||||
depends_on('r-jsonlite', type=nolink)
|
||||
depends_on('r-digest', type=nolink)
|
||||
depends_on('r-hexbin', type=nolink)
|
||||
depends_on('r-lazyeval', type=nolink)
|
||||
depends_on('r-pryr', type=nolink)
|
||||
depends_on('r-magrittr', type=nolink)
|
||||
depends_on('r-ggplot2', type=nolink)
|
||||
depends_on('r-scales', type=nolink)
|
||||
depends_on('r-gistr', type=nolink)
|
||||
depends_on('r-htmlwidgets', type=('build', 'run'))
|
||||
depends_on('r-maps', type=('build', 'run'))
|
||||
depends_on('r-jsonlite', type=('build', 'run'))
|
||||
depends_on('r-digest', type=('build', 'run'))
|
||||
depends_on('r-hexbin', type=('build', 'run'))
|
||||
depends_on('r-lazyeval', type=('build', 'run'))
|
||||
depends_on('r-pryr', type=('build', 'run'))
|
||||
depends_on('r-magrittr', type=('build', 'run'))
|
||||
depends_on('r-ggplot2', type=('build', 'run'))
|
||||
depends_on('r-scales', type=('build', 'run'))
|
||||
depends_on('r-gistr', type=('build', 'run'))
|
||||
|
Reference in New Issue
Block a user