Date: Tue, 24 Apr 2018 08:21:05 +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: r468190 - in head/devel: . R-cran-promises Message-ID: <201804240821.w3O8L50x062147@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Tue Apr 24 08:21:05 2018 New Revision: 468190 URL: https://svnweb.freebsd.org/changeset/ports/468190 Log: - Add new port: devel/R-cran-promises Provides fundamental abstractions for doing asynchronous programming in R using promises. Asynchronous programming is useful for allowing a single R process to orchestrate multiple tasks in the background while also attending to something else. Semantics are similar to 'JavaScript' promises, but with a syntax that is idiomatic R. WWW: https://cran.r-project.org/web/packages/promises/ Added: head/devel/R-cran-promises/ head/devel/R-cran-promises/Makefile (contents, props changed) head/devel/R-cran-promises/distinfo (contents, props changed) head/devel/R-cran-promises/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Apr 24 07:55:16 2018 (r468189) +++ head/devel/Makefile Tue Apr 24 08:21:05 2018 (r468190) @@ -53,6 +53,7 @@ SUBDIR += R-cran-plogr SUBDIR += R-cran-plyr SUBDIR += R-cran-praise + SUBDIR += R-cran-promises SUBDIR += R-cran-proto SUBDIR += R-cran-purrr SUBDIR += R-cran-randomForest Added: head/devel/R-cran-promises/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-promises/Makefile Tue Apr 24 08:21:05 2018 (r468190) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= promises +PORTVERSION= 1.0.1 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Abstractions for Promise-Based Asynchronous Programming + +LICENSE= MIT + +USES= cran:auto-plist,compiles + +CRAN_DEPENDS= R-cran-R6>0:devel/R-cran-R6 \ + R-cran-Rcpp>0:devel/R-cran-Rcpp \ + R-cran-later>0:devel/R-cran-later \ + R-cran-rlang>0:devel/R-cran-rlang \ + R-cran-magrittr>0:devel/R-cran-magrittr +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +.include <bsd.port.mk> Added: head/devel/R-cran-promises/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-promises/distinfo Tue Apr 24 08:21:05 2018 (r468190) @@ -0,0 +1,3 @@ +TIMESTAMP = 1524553613 +SHA256 (promises_1.0.1.tar.gz) = c2dbc7734adf009377a41e570dfe0d82afb91335c9d0ca1ef464b9bdcca65558 +SIZE (promises_1.0.1.tar.gz) = 106866 Added: head/devel/R-cran-promises/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-promises/pkg-descr Tue Apr 24 08:21:05 2018 (r468190) @@ -0,0 +1,7 @@ +Provides fundamental abstractions for doing asynchronous programming +in R using promises. Asynchronous programming is useful for allowing +a single R process to orchestrate multiple tasks in the background +while also attending to something else. Semantics are similar to +'JavaScript' promises, but with a syntax that is idiomatic R. + +WWW: https://cran.r-project.org/web/packages/promises/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804240821.w3O8L50x062147>