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
@@ -37,15 +37,15 @@ class RGgmap(RPackage):
|
||||
|
||||
version('2.6.1', '25ad414a3a1c6d59a227a9f22601211a')
|
||||
|
||||
depends_on('r-ggplot2', type=nolink)
|
||||
depends_on('r-proto', type=nolink)
|
||||
depends_on('r-rgooglemaps', type=nolink)
|
||||
depends_on('r-png', type=nolink)
|
||||
depends_on('r-plyr', type=nolink)
|
||||
depends_on('r-reshape2', type=nolink)
|
||||
depends_on('r-rjson', type=nolink)
|
||||
depends_on('r-mapproj', type=nolink)
|
||||
depends_on('r-jpeg', type=nolink)
|
||||
depends_on('r-geosphere', type=nolink)
|
||||
depends_on('r-digest', type=nolink)
|
||||
depends_on('r-scales', type=nolink)
|
||||
depends_on('r-ggplot2', type=('build', 'run'))
|
||||
depends_on('r-proto', type=('build', 'run'))
|
||||
depends_on('r-rgooglemaps', type=('build', 'run'))
|
||||
depends_on('r-png', type=('build', 'run'))
|
||||
depends_on('r-plyr', type=('build', 'run'))
|
||||
depends_on('r-reshape2', type=('build', 'run'))
|
||||
depends_on('r-rjson', type=('build', 'run'))
|
||||
depends_on('r-mapproj', type=('build', 'run'))
|
||||
depends_on('r-jpeg', type=('build', 'run'))
|
||||
depends_on('r-geosphere', type=('build', 'run'))
|
||||
depends_on('r-digest', type=('build', 'run'))
|
||||
depends_on('r-scales', type=('build', 'run'))
|
||||
|
Reference in New Issue
Block a user