From f9dbb403518ef300c8356946c7bb8f77b046a9dc Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Thu, 22 Sep 2016 18:13:54 +0200 Subject: [PATCH] library/roles/R/defaults/main.yml: Convert the R defaults to the new syntax. --- R/defaults/main.yml | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/R/defaults/main.yml b/R/defaults/main.yml index 67620acb..3fb6640f 100644 --- a/R/defaults/main.yml +++ b/R/defaults/main.yml @@ -67,27 +67,27 @@ r_plugins_packages_list: - r-cran-survival r_plugins_list_to_install: - - R2WinBUGS - - R2jags - - bayesmix - - coda - - rjags - - runjags - - base - - compiler - - datasets - - grDevices - - graphics - - grid - - methods - - parallel - - reshape - - splines - - stats - - stats4 - - tcltk - - tools - - utils + - { name: 'R2WinBUGS', repo: '{{ r_cran_mirror_site }}' } + - { name: 'R2jags', repo: '{{ r_cran_mirror_site }}' } + - { name: 'bayesmix', repo: '{{ r_cran_mirror_site }}' } + - { name: 'coda', repo: '{{ r_cran_mirror_site }}' } + - { name: 'rjags', repo: '{{ r_cran_mirror_site }}' } + - { name: 'runjags', repo: '{{ r_cran_mirror_site }}' } + - { name: 'base', repo: '{{ r_cran_mirror_site }}' } + - { name: 'compiler', repo: '{{ r_cran_mirror_site }}' } + - { name: 'datasets', repo: '{{ r_cran_mirror_site }}' } + - { name: 'grDevices', repo: '{{ r_cran_mirror_site }}' } + - { name: 'graphics', repo: '{{ r_cran_mirror_site }}' } + - { name: 'grid', repo: '{{ r_cran_mirror_site }}' } + - { name: 'methods', repo: '{{ r_cran_mirror_site }}' } + - { name: 'parallel', repo: '{{ r_cran_mirror_site }}' } + - { name: 'reshape', repo: '{{ r_cran_mirror_site }}' } + - { name: 'splines', repo: '{{ r_cran_mirror_site }}' } + - { name: 'stats', repo: '{{ r_cran_mirror_site }}' } + - { name: 'stats4', repo: '{{ r_cran_mirror_site }}' } + - { name: 'tcltk', repo: '{{ r_cran_mirror_site }}' } + - { name: 'tools', repo: '{{ r_cran_mirror_site }}' } + - { name: 'utils', repo: '{{ r_cran_mirror_site }}' } # r_plugins_from_sources: # - { name: 'plyr', version: '1.7.1', source: 'plyr_1.7.1.tar.gz', url: 'http://cran.r-project.org/src/contrib/Archive/plyr/plyr_1.7.1.tar.gz' }