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
@@ -34,10 +34,10 @@ class RDiagrammer(RPackage):
|
||||
|
||||
version('0.8.4', '9ee295c744f5d4ba9a84289ca7bdaf1a')
|
||||
|
||||
depends_on('r-htmlwidgets', type=nolink)
|
||||
depends_on('r-igraph', type=nolink)
|
||||
depends_on('r-influencer', type=nolink)
|
||||
depends_on('r-rstudioapi@0.6:', type=nolink)
|
||||
depends_on('r-stringr', type=nolink)
|
||||
depends_on('r-visnetwork', type=nolink)
|
||||
depends_on('r-scales', type=nolink)
|
||||
depends_on('r-htmlwidgets', type=('build', 'run'))
|
||||
depends_on('r-igraph', type=('build', 'run'))
|
||||
depends_on('r-influencer', type=('build', 'run'))
|
||||
depends_on('r-rstudioapi@0.6:', type=('build', 'run'))
|
||||
depends_on('r-stringr', type=('build', 'run'))
|
||||
depends_on('r-visnetwork', type=('build', 'run'))
|
||||
depends_on('r-scales', type=('build', 'run'))
|
||||
|
Reference in New Issue
Block a user