add version 1.4.2 to r-glue (#21027)

This commit is contained in:
Glenn Johnson 2021-01-17 13:45:54 -06:00 committed by GitHub
parent cf4feccefc
commit 56fd340231
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,16 +7,19 @@
class RGlue(RPackage): class RGlue(RPackage):
"""An implementation of interpreted string literals, inspired by Python's """Interpreted String Literals
Literal String Interpolation <https://www.python.org/dev/peps/pep-0498/>
and Docstrings <https://www.python.org/dev/peps/pep-0257/> and Julia's An implementation of interpreted string literals, inspired by Python's
Triple-Quoted String Literals <https://docs.julialang.org/en/stable/ Literal String Interpolation <https://www.python.org/dev/peps/pep-0498/>
manual/strings/#triple-quoted-string-literals>.""" and Docstrings <https://www.python.org/dev/peps/pep-0257/> and Julia's
Triple-Quoted String Literals <https://docs.julialang.org/en/stable/
manual/strings/#triple-quoted-string-literals>."""
homepage = "https://github.com/tidyverse/glue" homepage = "https://github.com/tidyverse/glue"
url = "https://cloud.r-project.org/src/contrib/glue_1.2.0.tar.gz" url = "https://cloud.r-project.org/src/contrib/glue_1.2.0.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/glue" list_url = "https://cloud.r-project.org/src/contrib/Archive/glue"
version('1.4.2', sha256='9f7354132a26e9a876428fa87629b9aaddcd558f9932328e6ac065b95b8ef7ad')
version('1.4.1', sha256='f8b687d35cacb5ee7fcada6e9c26ea20c04d0bdc9d37e919a03abd1137513bc8') version('1.4.1', sha256='f8b687d35cacb5ee7fcada6e9c26ea20c04d0bdc9d37e919a03abd1137513bc8')
version('1.4.0', sha256='ea6c409f7141754baa090deba96cff270a11b185452cf9e6fb69cb148a9069c1') version('1.4.0', sha256='ea6c409f7141754baa090deba96cff270a11b185452cf9e6fb69cb148a9069c1')
version('1.3.1', sha256='4fc1f2899d71a634e1f0adb7942772feb5ac73223891abe30ea9bd91d3633ea8') version('1.3.1', sha256='4fc1f2899d71a634e1f0adb7942772feb5ac73223891abe30ea9bd91d3633ea8')
@ -24,3 +27,4 @@ class RGlue(RPackage):
version('1.2.0', sha256='19275b34ee6a1bcad05360b7eb996cebaa1402f189a5dfb084e695d423f2296e') version('1.2.0', sha256='19275b34ee6a1bcad05360b7eb996cebaa1402f189a5dfb084e695d423f2296e')
depends_on('r@3.1:', type=('build', 'run')) depends_on('r@3.1:', type=('build', 'run'))
depends_on('r@3.2:', when='@1.4.2:', type=('build', 'run'))