dev-R/modelr: new package, add 0.1.8

Signed-off-by: Robert Greener <me@r0bert.dev>
This commit is contained in:
Robert Greener
2022-07-03 12:06:26 +01:00
parent aa763bb210
commit b54cde3c7f
3 changed files with 55 additions and 0 deletions

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

@@ -0,0 +1 @@
DIST modelr_0.1.8.tar.gz 121333 BLAKE2B 83ac7bb2c4bc1c4f0aa3560f32920a24fe91a17fe1e8daee1f887fbaba84e43903c017edf480453d1ca2ce2a7a499672870b260ddeba7d9c3c192794bde0302c SHA512 712e7e63a2f5beec3845b3e16f444a69eacd00759d51bec1428ce84907bfe42545fe0d6e592c82bc2c2dd6bce4d58ae5865225a4697fc8e35f420f3b5ed51b2b

17
dev-R/modelr/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">Functions for modelling that help you seamlessly integrate modelling into a pipeline of data manipulation and visualisation.</longdescription>
<upstream>
<maintainer>
<name>Hadley Wickham</name>
<email>hadley@rstudio.com</email>
</maintainer>
<bugs-to>https://github.com/tidyverse/modelr/issues</bugs-to>
<remote-id type="github">tidyverse/modelr</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,37 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages edo
DESCRIPTION='Modelling Functions that Work with the Pipe'
KEYWORDS="~amd64"
LICENSE='GPL-3'
RESTRICT="!test? ( test )"
IUSE="test"
DEPEND="
dev-R/broom
dev-R/magrittr
>=dev-R/purrr-0.2.2
>=dev-R/rlang-0.2.0
dev-R/tibble
>=dev-R/tidyr-0.8.0
dev-R/tidyselect
dev-R/vctrs
test? (
dev-R/testthat
)
"
SUGGESTED_PACKAGES="
dev-R/covr
dev-R/ggplot2
dev-R/testthat
"
src_test() {
cd "${WORKDIR}/${P}/tests" || die
NOT_CRAN=true R_LIBS="${T}/R" edo Rscript --vanilla testthat.R
}