diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/r-htmltable/package.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/r-htmltable/package.py b/var/spack/repos/builtin/packages/r-htmltable/package.py index 14b91f3b5c..f13f8dd488 100644 --- a/var/spack/repos/builtin/packages/r-htmltable/package.py +++ b/var/spack/repos/builtin/packages/r-htmltable/package.py @@ -35,13 +35,15 @@ class RHtmltable(RPackage): compatible with HTML/'LaTeX'.""" homepage = "https://CRAN.R-project.org/package=htmlTable" - url = "https://cran.rstudio.com/src/contrib/htmlTable_1.9.tar.gz" + url = "https://cran.rstudio.com/src/contrib/htmlTable_1.11.2.tar.gz" list_url = "https://cran.r-project.org/src/contrib/Archive/htmlTable" + version('1.11.2', '473e6d486e7714f8dd7f16a31480c896') version('1.9', '08c62c19e1ffe570e7d8fa57db5094b9') depends_on('r-stringr', type=('build', 'run')) - depends_on('r-knitr', type=('build', 'run')) - depends_on('r-magrittr', type=('build', 'run')) + depends_on('r-knitr@1.6:', type=('build', 'run')) + depends_on('r-magrittr@1.5:', type=('build', 'run')) depends_on('r-checkmate', type=('build', 'run')) depends_on('r-htmlwidgets', type=('build', 'run')) + depends_on('r-rstudioapi@0.6:', type=('build', 'run'), when="@1.11.0:") |