r-htmltools: fix version 0.5.2 (#28124)

The lastest version of r-htmltools needs version 1.1.0 of r-fastmap.
This is not specified in the DESCRIPTION file.
This commit is contained in:
Glenn Johnson 2021-12-23 17:35:09 -06:00 committed by GitHub
parent 15951f0e6b
commit f3035f98e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -20,4 +20,5 @@ class RFastmap(RPackage):
url = "https://cloud.r-project.org/src/contrib/fastmap_1.0.1.tar.gz" url = "https://cloud.r-project.org/src/contrib/fastmap_1.0.1.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/fastmap" list_url = "https://cloud.r-project.org/src/contrib/Archive/fastmap"
version('1.1.0', sha256='9113e526b4c096302cfeae660a06de2c4c82ae4e2d3d6ef53af6de812d4c822b')
version('1.0.1', sha256='4778b05dfebd356f8df980dfeff3b973a72bca14898f870e5c40c1d84db9faec') version('1.0.1', sha256='4778b05dfebd356f8df980dfeff3b973a72bca14898f870e5c40c1d84db9faec')

View File

@ -25,5 +25,5 @@ class RHtmltools(RPackage):
depends_on('r-base64enc', when='@0.5.1:', 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@0.4.10:', when='@0.5.2:', type=('build', 'run'))
depends_on('r-rlang', when='@0.5.1:', type=('build', 'run')) depends_on('r-rlang', when='@0.5.1:', type=('build', 'run'))
depends_on('r-fastmap', when='@0.5.2:', 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-rcpp', when=' @:0.3.6', type=('build', 'run'))