diff options
author | brook <brook@pkgsrc.org> | 2019-08-09 20:25:29 +0000 |
---|---|---|
committer | brook <brook@pkgsrc.org> | 2019-08-09 20:25:29 +0000 |
commit | fe5944ab7cb2bb4d4ecf4c01095293a595ded6c7 (patch) | |
tree | 2cf6bffcbfe23f0b7e00f230aac203de7d15a4cd /parallel | |
parent | f4f2651140a70197f754ff48c04d8b4c02980e4e (diff) | |
download | pkgsrc-fe5944ab7cb2bb4d4ecf4c01095293a595ded6c7.tar.gz |
R-promises: initial commit
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.
Diffstat (limited to 'parallel')
-rw-r--r-- | parallel/Makefile | 3 | ||||
-rw-r--r-- | parallel/R-promises/DESCR | 5 | ||||
-rw-r--r-- | parallel/R-promises/Makefile | 19 | ||||
-rw-r--r-- | parallel/R-promises/distinfo | 6 |
4 files changed, 32 insertions, 1 deletions
diff --git a/parallel/Makefile b/parallel/Makefile index 2ec32f545bf..a1d53cfcc3d 100644 --- a/parallel/Makefile +++ b/parallel/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.26 2019/06/17 16:35:44 adam Exp $ +# $NetBSD: Makefile,v 1.27 2019/08/09 20:25:29 brook Exp $ # COMMENT= Applications dealing with parallelism in computing +SUBDIR+= R-promises SUBDIR+= clusterit SUBDIR+= dqs SUBDIR+= dsh diff --git a/parallel/R-promises/DESCR b/parallel/R-promises/DESCR new file mode 100644 index 00000000000..03fd0ee3b7a --- /dev/null +++ b/parallel/R-promises/DESCR @@ -0,0 +1,5 @@ +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. diff --git a/parallel/R-promises/Makefile b/parallel/R-promises/Makefile new file mode 100644 index 00000000000..5dcf0d43e36 --- /dev/null +++ b/parallel/R-promises/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1 2019/08/09 20:25:29 brook Exp $ + +R_PKGNAME= promises +R_PKGVER= 1.0.1 +CATEGORIES= parallel + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Abstractions for promise-based asynchronous programming +LICENSE= mit + +DEPENDS+= R-magrittr>=1.5:../../devel/R-magrittr +DEPENDS+= R-rlang>=0.4.0:../../devel/R-rlang + +USE_LANGUAGES= c c++ + +.include "../../math/R/Makefile.extension" +.include "../../devel/R-Rcpp/buildlink3.mk" +.include "../../sysutils/R-later/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/parallel/R-promises/distinfo b/parallel/R-promises/distinfo new file mode 100644 index 00000000000..47209eb78f2 --- /dev/null +++ b/parallel/R-promises/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/08/09 20:25:29 brook Exp $ + +SHA1 (R/promises_1.0.1.tar.gz) = f012f91c77e2568bb7063272fca070d4edb6a05e +RMD160 (R/promises_1.0.1.tar.gz) = 4173875189565657128fe282d97471880be76afb +SHA512 (R/promises_1.0.1.tar.gz) = b5fccb95c51c391fb67999f983f762deb7d1caa0025f57962b140ddf940e76fbbc8c0b9e34209a25328ca6e5620adde289dca10c247d670cc87c521c641428de +Size (R/promises_1.0.1.tar.gz) = 106866 bytes |