summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-htmltools/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-htmltools/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-htmltools/package.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/var/spack/repos/builtin/packages/r-htmltools/package.py b/var/spack/repos/builtin/packages/r-htmltools/package.py
index 83d2ee087a..9de35fe41a 100644
--- a/var/spack/repos/builtin/packages/r-htmltools/package.py
+++ b/var/spack/repos/builtin/packages/r-htmltools/package.py
@@ -7,12 +7,11 @@ from spack import *
class RHtmltools(RPackage):
- """Tools for HTML
+ """Tools for HTML.
Tools for HTML generation and output."""
- homepage = "https://github.com/rstudio/htmltools"
- cran = "htmltools"
+ cran = "htmltools"
version('0.5.2', sha256='7dc7d50436e5a82a5801f85bcd2f572a06a98b4027d71aa17b4854ec9b2767fb')
version('0.5.1.1', sha256='f0bfe72ffe330f3d6c9ead5857f3a4aef80e002e32558074a3e643f2ab67a4ba')
@@ -22,8 +21,9 @@ class RHtmltools(RPackage):
depends_on('r@2.14.1:', type=('build', 'run'))
depends_on('r-digest', type=('build', 'run'))
- depends_on('r-base64enc', when='@0.5.1:', type=('build', 'run'))
- depends_on('r-rlang@0.4.10:', when='@0.5.2:', type=('build', 'run'))
- depends_on('r-rlang', when='@0.5.1:', type=('build', 'run'))
- depends_on('r-fastmap@1.1.0:', when='@0.5.2:', type=('build', 'run'))
- depends_on('r-rcpp', when=' @:0.3.6', type=('build', 'run'))
+ depends_on('r-base64enc', type=('build', 'run'), when='@0.5.1:')
+ depends_on('r-rlang@0.4.10:', type=('build', 'run'), when='@0.5.2:')
+ depends_on('r-rlang', type=('build', 'run'), when='@0.5.1:')
+ depends_on('r-fastmap@1.1.0:', type=('build', 'run'), when='@0.5.2:')
+
+ depends_on('r-rcpp', type=('build', 'run'), when='@:0.3.6')