dev-R/blob: new package, add 1.2.3

Signed-off-by: Robert Greener <me@r0bert.dev>
This commit is contained in:
Robert Greener
2022-07-02 10:11:53 +01:00
parent 3da324e374
commit 58114d047b
3 changed files with 47 additions and 0 deletions

1
dev-R/blob/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST blob_1.2.3.tar.gz 10543 BLAKE2B a4ce56d3ae7f86890a7244667b6dedd26d20693b3b0453a9acfc07b4a44a58aa88cfe9357332e19985dabf5d8b2ca3e074537c4ffea5f8fde9707e33d50742be SHA512 39a94f1471ee16d5c65f8eb19ef3cd4f22758c25e81847b80ce94287d1a72a24755bc45fa249d8e05d9b206f9cc0bc4a6f155978577d810c16e97569b4e47a20

View File

@@ -0,0 +1,29 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages
DESCRIPTION="A Simple S3 Class for Representing Vectors of Binary Data ('BLOBS')"
KEYWORDS="~amd64"
LICENSE='MIT'
RESTRICT="!test? ( test )"
IUSE="test"
DEPEND="
dev-R/rlang
>=dev-R/vctrs-0.2.1
test? ( dev-R/testthat )
"
SUGGESTED_PACKAGES="
dev-R/covr
dev-R/crayon
>=dev-R/pillar-1.2.1
dev-R/testthat
"
src_test() {
cd "${WORKDIR}/${P}/tests"
NOT_CRAN=true R_LIBS="${T}/R" edo Rscript --vanilla testthat.R
}

17
dev-R/blob/metadata.xml Normal file
View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>me@r0bert.dev</email>
<name>Robert Greener</name>
</maintainer>
<longdescription lang="en">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.</longdescription>
<upstream>
<maintainer>
<name>Kirill Müller</name>
<email>krlmlr+r@mailbox.org</email>
</maintainer>
<bugs-to>https://github.com/tidyverse/blob/issues</bugs-to>
<remote-id type="github">tidyverse/blob</remote-id>
</upstream>
</pkgmetadata>