add version 1.1.0.1 to r-crosstalk (#20869)

This commit is contained in:
Glenn Johnson 2021-01-15 03:05:37 -06:00 committed by GitHub
parent a7316a24ca
commit faa1f84d57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,18 +7,23 @@
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'))