- 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/
This commit is contained in:
TAKATSU Tomonari 2019-09-24 08:43:18 +00:00
parent 613d40d209
commit 2adb869187
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=512705
4 changed files with 26 additions and 0 deletions

View File

@ -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

15
devel/R-cran-sys/Makefile Normal file
View File

@ -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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1569301196
SHA256 (sys_3.3.tar.gz) = a6217c2a7240ed68614006f392c6d062247dab8b9b0d498f95e947110df19b93
SIZE (sys_3.3.tar.gz) = 20225

View File

@ -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/