diff options
author | tota <tota@FreeBSD.org> | 2019-09-24 16:43:18 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2019-09-24 16:43:18 +0800 |
commit | 2482e953a5ff98544550b49697af78b612374b21 (patch) | |
tree | bf9b45888319e44510776ac336140bbc141c9622 | |
parent | 686c63cfab5ccec4cd4d51d08e55a9acb059e30d (diff) | |
download | freebsd-ports-gnome-2482e953a5ff98544550b49697af78b612374b21.tar.gz freebsd-ports-gnome-2482e953a5ff98544550b49697af78b612374b21.tar.zst freebsd-ports-gnome-2482e953a5ff98544550b49697af78b612374b21.zip |
- Add new port: devel/R-cran-sys
Drop-in replacements for the base system2() function with fine
control and consistent behavior across platforms. Supports clean
interruption, timeout, background tasks, and streaming STDIN /
STDOUT / STDERR over binary or text connections. Arguments on Windows
automatically get encoded and quoted to work on different locales.
WWW: https://cran.r-project.org/web/packages/sys/
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/R-cran-sys/Makefile | 15 | ||||
-rw-r--r-- | devel/R-cran-sys/distinfo | 3 | ||||
-rw-r--r-- | devel/R-cran-sys/pkg-descr | 7 |
4 files changed, 26 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 5eed5e9f8fef..29a0f29419db 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -77,6 +77,7 @@ SUBDIR += R-cran-rstudioapi SUBDIR += R-cran-sfsmisc SUBDIR += R-cran-sourcetools + SUBDIR += R-cran-sys SUBDIR += R-cran-testthat SUBDIR += R-cran-tibble SUBDIR += R-cran-tidyr diff --git a/devel/R-cran-sys/Makefile b/devel/R-cran-sys/Makefile new file mode 100644 index 000000000000..952af21cb340 --- /dev/null +++ b/devel/R-cran-sys/Makefile @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= sys +PORTVERSION= 3.3 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Powerful and Reliable Tools for Running System Commands in R + +LICENSE= MIT + +USES= cran:auto-plist,compiles + +.include <bsd.port.mk> diff --git a/devel/R-cran-sys/distinfo b/devel/R-cran-sys/distinfo new file mode 100644 index 000000000000..9aa29d43e474 --- /dev/null +++ b/devel/R-cran-sys/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1569301196 +SHA256 (sys_3.3.tar.gz) = a6217c2a7240ed68614006f392c6d062247dab8b9b0d498f95e947110df19b93 +SIZE (sys_3.3.tar.gz) = 20225 diff --git a/devel/R-cran-sys/pkg-descr b/devel/R-cran-sys/pkg-descr new file mode 100644 index 000000000000..0d602f29cce6 --- /dev/null +++ b/devel/R-cran-sys/pkg-descr @@ -0,0 +1,7 @@ +Drop-in replacements for the base system2() function with fine +control and consistent behavior across platforms. Supports clean +interruption, timeout, background tasks, and streaming STDIN / +STDOUT / STDERR over binary or text connections. Arguments on Windows +automatically get encoded and quoted to work on different locales. + +WWW: https://cran.r-project.org/web/packages/sys/ |