summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatteo Guglielmi <matteo.guglielmi@gmail.com>2018-04-17 14:26:37 +0200
committerAdam J. Stewart <ajstewart426@gmail.com>2018-04-17 07:26:37 -0500
commit1c8df39024347c3b9359e91f985828bedc0c7782 (patch)
tree4b50ceaeb9d34aab7023f3ae28b611e3a774fe9f
parentb6d3feba20fc4eaf687925ce24ad3637b9479184 (diff)
downloadspack-1c8df39024347c3b9359e91f985828bedc0c7782.tar.gz
spack-1c8df39024347c3b9359e91f985828bedc0c7782.tar.bz2
spack-1c8df39024347c3b9359e91f985828bedc0c7782.tar.xz
spack-1c8df39024347c3b9359e91f985828bedc0c7782.zip
r-htmltable: package update (#7767)
* r-htmltable: package update * r-htmltable: dependency fix * r-htmltable: dependency fix #2 * r-htmltable: dependency fix #3
-rw-r--r--var/spack/repos/builtin/packages/r-htmltable/package.py8
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:")