pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc R-promises: initial commit



details:   https://anonhg.NetBSD.org/pkgsrc/rev/85bccdcc92d6
branches:  trunk
changeset: 399469:85bccdcc92d6
user:      brook <brook%pkgsrc.org@localhost>
date:      Fri Aug 09 20:25:29 2019 +0000

description:
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:

 doc/CHANGES-2019             |   3 ++-
 parallel/Makefile            |   3 ++-
 parallel/R-promises/DESCR    |   5 +++++
 parallel/R-promises/Makefile |  19 +++++++++++++++++++
 parallel/R-promises/distinfo |   6 ++++++
 5 files changed, 34 insertions(+), 2 deletions(-)

diffs (70 lines):

diff -r 6c1faf259f1a -r 85bccdcc92d6 doc/CHANGES-2019
--- a/doc/CHANGES-2019  Fri Aug 09 20:24:22 2019 +0000
+++ b/doc/CHANGES-2019  Fri Aug 09 20:25:29 2019 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES-2019,v 1.3371 2019/08/09 20:24:22 brook Exp $
+$NetBSD: CHANGES-2019,v 1.3372 2019/08/09 20:25:29 brook Exp $
 
 Changes to the packages collection and infrastructure in 2019:
 
@@ -5494,3 +5494,4 @@
        Added devel/R-roxygen2 version 6.1.1 [brook 2019-08-09]
        Added devel/R-devtools version 2.1.0 [brook 2019-08-09]
        Added sysutils/R-later version 0.8.0 [brook 2019-08-09]
+       Added parallel/R-promises version 1.0.1 [brook 2019-08-09]
diff -r 6c1faf259f1a -r 85bccdcc92d6 parallel/Makefile
--- a/parallel/Makefile Fri Aug 09 20:24:22 2019 +0000
+++ b/parallel/Makefile Fri Aug 09 20:25:29 2019 +0000
@@ -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 -r 6c1faf259f1a -r 85bccdcc92d6 parallel/R-promises/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/parallel/R-promises/DESCR Fri Aug 09 20:25:29 2019 +0000
@@ -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 -r 6c1faf259f1a -r 85bccdcc92d6 parallel/R-promises/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/parallel/R-promises/Makefile      Fri Aug 09 20:25:29 2019 +0000
@@ -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@localhost
+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 -r 6c1faf259f1a -r 85bccdcc92d6 parallel/R-promises/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/parallel/R-promises/distinfo      Fri Aug 09 20:25:29 2019 +0000
@@ -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



Home | Main Index | Thread Index | Old Index