add version 1.4.2 to r-glue (#21027)
This commit is contained in:
parent
cf4feccefc
commit
56fd340231
1 changed files with 9 additions and 5 deletions
|
@ -7,7 +7,9 @@
|
||||||
|
|
||||||
|
|
||||||
class RGlue(RPackage):
|
class RGlue(RPackage):
|
||||||
"""An implementation of interpreted string literals, inspired by Python's
|
"""Interpreted String Literals
|
||||||
|
|
||||||
|
An implementation of interpreted string literals, inspired by Python's
|
||||||
Literal String Interpolation <https://www.python.org/dev/peps/pep-0498/>
|
Literal String Interpolation <https://www.python.org/dev/peps/pep-0498/>
|
||||||
and Docstrings <https://www.python.org/dev/peps/pep-0257/> and Julia's
|
and Docstrings <https://www.python.org/dev/peps/pep-0257/> and Julia's
|
||||||
Triple-Quoted String Literals <https://docs.julialang.org/en/stable/
|
Triple-Quoted String Literals <https://docs.julialang.org/en/stable/
|
||||||
|
@ -17,6 +19,7 @@ class RGlue(RPackage):
|
||||||
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'))
|
||||||
|
|
Loading…
Reference in a new issue