a5ab641603
# processx 3.5.2 * `run()` now does not truncate stdout and stderr when the output contains multibyte characters (#298, @infotroph). * processx now compiles with custom compilers that enable OpenMP (#297). * processx now avoids a race condition when the working directory is changed right after starting a process, potentially before the sub-process is initialized (#300). * processx now works with non-ASCII path names on non-UTF-8 Unix platforms (#293). # processx 3.5.1 * Fix a potential failure when polling curl file descriptors on Windows. # processx 3.5.0 * You can now append environment variables to the ones set in the current process if you include `"current"` in the value of `env`, in `run()` and for `process$new()`: `env = c("current", NEW = "newvalue")` (#232). * Sub-processes can now inherit the standard input, output and error from the main R process, by setting the corresponding argument to an empty string. E.g. `run("ls", stdout = "")` (#72). * `run()` is now much faster with large standard output or standard error (#286). * `run()` can now discard the standard output and error or redirect them to file(s), instead of collecting them. * processx now optionally uses the cli package to color error messages and stack traces, instead of crayon.
20 lines
485 B
Makefile
20 lines
485 B
Makefile
# $NetBSD: Makefile,v 1.4 2021/05/31 14:26:12 mef Exp $
|
|
|
|
R_PKGNAME= processx
|
|
R_PKGVER= 3.5.2
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Execute and control system processes
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= R-R6>=2.4.0:../../devel/R-R6
|
|
DEPENDS+= R-ps>=1.2.0:../../sysutils/R-ps
|
|
|
|
# Package suggested but not available: 'debugme'
|
|
#EST_DEPENDS+= R-debugme-[0-9]*:../../?/R-debugme
|
|
|
|
USE_LANGUAGES= c
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../mk/bsd.pkg.mk"
|