Date: Tue, 24 Sep 2019 08:43:18 +0000 (UTC) From: TAKATSU Tomonari <tota@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512705 - in head/devel: . R-cran-sys Message-ID: <201909240843.x8O8hIwC002456@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Tue Sep 24 08:43:18 2019 New Revision: 512705 URL: https://svnweb.freebsd.org/changeset/ports/512705 Log: - 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/ Added: head/devel/R-cran-sys/ head/devel/R-cran-sys/Makefile (contents, props changed) head/devel/R-cran-sys/distinfo (contents, props changed) head/devel/R-cran-sys/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Sep 24 08:39:20 2019 (r512704) +++ head/devel/Makefile Tue Sep 24 08:43:18 2019 (r512705) @@ -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 Added: head/devel/R-cran-sys/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-sys/Makefile Tue Sep 24 08:43:18 2019 (r512705) @@ -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> Added: head/devel/R-cran-sys/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-sys/distinfo Tue Sep 24 08:43:18 2019 (r512705) @@ -0,0 +1,3 @@ +TIMESTAMP = 1569301196 +SHA256 (sys_3.3.tar.gz) = a6217c2a7240ed68614006f392c6d062247dab8b9b0d498f95e947110df19b93 +SIZE (sys_3.3.tar.gz) = 20225 Added: head/devel/R-cran-sys/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-sys/pkg-descr Tue Sep 24 08:43:18 2019 (r512705) @@ -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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909240843.x8O8hIwC002456>