add version 1.2.1 to r-blob (#20819)

This commit is contained in:
Glenn Johnson 2021-01-15 03:45:26 -06:00 committed by GitHub
parent d2c3fb5e45
commit 0024c8df08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,9 @@
class RBlob(RPackage): class RBlob(RPackage):
"""R's raw vector is useful for storing a single binary object. """A Simple S3 Class for Representing Vectors of Binary Data ('BLOBS')
R's raw vector is useful for storing a single binary object.
What if you want to put a vector of them in a data frame? The blob What if you want to put a vector of them in a data frame? The blob
package provides the blob object, a list of raw vectors, suitable package provides the blob object, a list of raw vectors, suitable
for use as a column in data frame.""" for use as a column in data frame."""
@ -16,10 +18,12 @@ class RBlob(RPackage):
url = "https://cloud.r-project.org/src/contrib/blob_1.1.0.tar.gz" url = "https://cloud.r-project.org/src/contrib/blob_1.1.0.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/blob" list_url = "https://cloud.r-project.org/src/contrib/Archive/blob"
version('1.2.1', sha256='ef54bc7a9646c1b73f4d2f60c869b4f1940bc3505874175114297ad7772d8bea')
version('1.2.0', sha256='1af1cfa28607bc0e2f1f01598a00a7d5d1385ef160a9e79e568f30f56538e023') version('1.2.0', sha256='1af1cfa28607bc0e2f1f01598a00a7d5d1385ef160a9e79e568f30f56538e023')
version('1.1.0', sha256='16d6603df3ddba177f0ac4d9469c938f89131c4bf8834345db838defd9ffea16') version('1.1.0', sha256='16d6603df3ddba177f0ac4d9469c938f89131c4bf8834345db838defd9ffea16')
depends_on('r-tibble', when='@:1.1.0', type=('build', 'run')) depends_on('r-tibble', when='@:1.1.0', type=('build', 'run'))
depends_on('r-prettyunits', when='@1.2.0:', type=('build', 'run')) depends_on('r-prettyunits', when='@1.2.0', type=('build', 'run'))
depends_on('r-rlang', when='@1.2.0:', type=('build', 'run')) depends_on('r-rlang', when='@1.2.0:', type=('build', 'run'))
depends_on('r-vctrs@0.2.0:', when='@1.2.0:', type=('build', 'run')) depends_on('r-vctrs@0.2.0:', when='@1.2.0:', type=('build', 'run'))
depends_on('r-vctrs@0.2.1:', when='@1.2.1:', type=('build', 'run'))