summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-blob/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-blob/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-blob/package.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/var/spack/repos/builtin/packages/r-blob/package.py b/var/spack/repos/builtin/packages/r-blob/package.py
index 47673efb7c..40b494b84e 100644
--- a/var/spack/repos/builtin/packages/r-blob/package.py
+++ b/var/spack/repos/builtin/packages/r-blob/package.py
@@ -7,14 +7,13 @@ from spack import *
class RBlob(RPackage):
- """A Simple S3 Class for Representing Vectors of Binary Data ('BLOBS')
+ """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
- package provides the blob object, a list of raw vectors, suitable
- for use as a column in data frame."""
+ 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 package provides the
+ blob object, a list of raw vectors, suitable for use as a column in data
+ frame."""
- homepage = "https://blob.tidyverse.org"
cran = "blob"
version('1.2.2', sha256='4976053c65994c769a4c22b4553bea0bd9c623b3b991dbaf023d2a164770c7fa')
@@ -22,8 +21,9 @@ class RBlob(RPackage):
version('1.2.0', sha256='1af1cfa28607bc0e2f1f01598a00a7d5d1385ef160a9e79e568f30f56538e023')
version('1.1.0', sha256='16d6603df3ddba177f0ac4d9469c938f89131c4bf8834345db838defd9ffea16')
- 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-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.1:', when='@1.2.1:', type=('build', 'run'))
+ depends_on('r-rlang', type=('build', 'run'), when='@1.2.0:')
+ depends_on('r-vctrs@0.2.0:', type=('build', 'run'), when='@1.2.0:')
+ depends_on('r-vctrs@0.2.1:', type=('build', 'run'), when='@1.2.1:')
+
+ depends_on('r-prettyunits', type=('build', 'run'), when='@1.2.0')
+ depends_on('r-tibble', type=('build', 'run'), when='@:1.1.0')