mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 03:53:22 -04:00
dev-R/modelr: new package, add 0.1.8
Signed-off-by: Robert Greener <me@r0bert.dev>
This commit is contained in:
1
dev-R/modelr/Manifest
Normal file
1
dev-R/modelr/Manifest
Normal file
@@ -0,0 +1 @@
|
|||||||
|
DIST modelr_0.1.8.tar.gz 121333 BLAKE2B 83ac7bb2c4bc1c4f0aa3560f32920a24fe91a17fe1e8daee1f887fbaba84e43903c017edf480453d1ca2ce2a7a499672870b260ddeba7d9c3c192794bde0302c SHA512 712e7e63a2f5beec3845b3e16f444a69eacd00759d51bec1428ce84907bfe42545fe0d6e592c82bc2c2dd6bce4d58ae5865225a4697fc8e35f420f3b5ed51b2b
|
||||||
17
dev-R/modelr/metadata.xml
Normal file
17
dev-R/modelr/metadata.xml
Normal 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>
|
||||||
37
dev-R/modelr/modelr-0.1.8.ebuild
Normal file
37
dev-R/modelr/modelr-0.1.8.ebuild
Normal 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
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user