4a5db98b9b
# callr 3.7.0 * Reporting errors is much faster now (#185). * The `user_profile` option of `r_vanilla()` defaults to `FALSE` now (#194). * It is now possible to set R environment variables (`R_ENVIRON_USER`, `R_PROFILE_USER`, etc.) via the `env` argument (#193). # callr 3.6.0 * callr now supports starting an R process with a different architecture, so on Windows 64-bit R can start a 32-bit R background process, and vice-versa (#95). * callr now handles symbolic arguments properly, and does not evaluate them. E.g. `callr::r(function(x) x, list(quote(foobar)))` works now (#175). * `callr::r_session` does not leak file descriptors now in the sub-process (#184).
32 lines
1 KiB
Makefile
32 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.8 2021/05/31 14:39:56 mef Exp $
|
|
|
|
R_PKGNAME= callr
|
|
R_PKGVER= 3.7.0
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Call R from R
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= R-processx>=3.5.0:../../sysutils/R-processx
|
|
|
|
# Packages suggested but not available:
|
|
# 'pingr', 'spelling'
|
|
TEST_DEPENDS+= R-cliapp-[0-9]*:../../devel/R-cliapp
|
|
TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
|
|
TEST_DEPENDS+= R-crayon-[0-9]*:../../devel/R-crayon
|
|
TEST_DEPENDS+= R-fansi-[0-9]*:../../devel/R-fansi
|
|
TEST_DEPENDS+= R-pingr-[0-9]*:../../net/R-pingr
|
|
TEST_DEPENDS+= R-ps-[0-9]*:../../sysutils/R-ps
|
|
TEST_DEPENDS+= R-withr-[0-9]*:../../devel/R-withr
|
|
TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
|
|
TEST_DEPENDS+= R-rprojroot-[0-9]*:../../devel/R-rprojroot
|
|
TEST_DEPENDS+= R-spelling-[0-9]*:../../textproc/R-spelling
|
|
TEST_DEPENDS+= R-tibble-[0-9]*:../../math/R-tibble
|
|
TEST_DEPENDS+= R-markdown-[0-9]*:../../textproc/R-markdown
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../mk/bsd.pkg.mk"
|
|
# 'pingr', 'spelling'
|