diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-15 03:05:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 10:05:37 +0100 |
commit | faa1f84d57bacf283088255eb448451d5a466124 (patch) | |
tree | 8fbbab7acd4f69d6a28b61692d330c88f6f5c5a9 | |
parent | a7316a24ca8419f452be5412f3e1d05f50c44ca3 (diff) | |
download | spack-faa1f84d57bacf283088255eb448451d5a466124.tar.gz spack-faa1f84d57bacf283088255eb448451d5a466124.tar.bz2 spack-faa1f84d57bacf283088255eb448451d5a466124.tar.xz spack-faa1f84d57bacf283088255eb448451d5a466124.zip |
add version 1.1.0.1 to r-crosstalk (#20869)
-rw-r--r-- | var/spack/repos/builtin/packages/r-crosstalk/package.py | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/r-crosstalk/package.py b/var/spack/repos/builtin/packages/r-crosstalk/package.py index 35ab300de5..ad3abb0342 100644 --- a/var/spack/repos/builtin/packages/r-crosstalk/package.py +++ b/var/spack/repos/builtin/packages/r-crosstalk/package.py @@ -7,18 +7,23 @@ from spack import * class RCrosstalk(RPackage): - """Provides building blocks for allowing HTML widgets to communicate with - each other, with Shiny or without (i.e. static .html files).""" + """Inter-Widget Interactivity for HTML Widgets + + Provides building blocks for allowing HTML widgets to communicate with each + other, with Shiny or without (i.e. static .html files). Currently supports + linked brushing and filtering.""" homepage = "https://cloud.r-project.org/package=crosstalk" url = "https://cloud.r-project.org/src/contrib/crosstalk_1.0.0.tar.gz" list_url = "https://cloud.r-project.org/src/contrib/Archive/crosstalk" + version('1.1.0.1', sha256='36a70b10bc11826e314c05f9579fd791b9ac3b3a2cfed4d4ca74ce1ad991300e') version('1.0.0', sha256='b31eada24cac26f24c9763d9a8cbe0adfd87b264cf57f8725027fe0c7742ca51') depends_on('r-htmltools@0.3.5:', type=('build', 'run')) + depends_on('r-htmltools@0.3.6:', when='@1.1.0.1:', type=('build', 'run')) depends_on('r-jsonlite', type=('build', 'run')) depends_on('r-lazyeval', type=('build', 'run')) - depends_on('r-ggplot2', type=('build', 'run')) - depends_on('r-shiny@0.11:', type=('build', 'run')) depends_on('r-r6', type=('build', 'run')) + depends_on('r-ggplot2', when='@:1.0.0', type=('build', 'run')) + depends_on('r-shiny@0.11:', when='@:1.0.0', type=('build', 'run')) |