blob: 59080aef25bdbb2e37b495d084d866cc5f9893de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages
DESCRIPTION='Cross-Platform File System Operations Based on libuv'
HOMEPAGE="
https://cran.r-project.org/package=fs
https://fs.r-lib.org/
https://github.com/r-lib/fs
"
KEYWORDS="~amd64"
LICENSE='MIT'
DEPEND="
>=dev-lang/R-3.1
dev-libs/libuv
"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-system-libuv.patch" )
src_prepare() {
rm -r src/libuv-* || die
R-packages_src_prepare
}
R_SUGGESTS="
dev-R/covr
dev-R/crayon
dev-R/knitr
>=dev-R/pillar-1.0.0
dev-R/rmarkdown
dev-R/spelling
dev-R/testthat
>=dev-R/tibble-1.1.0
>=dev-R/vctrs-0.3.0
dev-R/withr
"
|