pkgsrc-Changes archive

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

CVS commit: pkgsrc



Module Name:    pkgsrc
Committed By:   brook
Date:           Fri Aug  9 20:25:29 UTC 2019

Modified Files:
        pkgsrc/doc: CHANGES-2019
        pkgsrc/parallel: Makefile
Added Files:
        pkgsrc/parallel/R-promises: DESCR Makefile distinfo

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.3371 -r1.3372 pkgsrc/doc/CHANGES-2019
cvs rdiff -u -r1.26 -r1.27 pkgsrc/parallel/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/parallel/R-promises/DESCR \
    pkgsrc/parallel/R-promises/Makefile pkgsrc/parallel/R-promises/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/doc/CHANGES-2019
diff -u pkgsrc/doc/CHANGES-2019:1.3371 pkgsrc/doc/CHANGES-2019:1.3372
--- pkgsrc/doc/CHANGES-2019:1.3371      Fri Aug  9 20:24:22 2019
+++ pkgsrc/doc/CHANGES-2019     Fri Aug  9 20:25:29 2019
@@ -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 @@ Changes to the packages collection and i
        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]

Index: pkgsrc/parallel/Makefile
diff -u pkgsrc/parallel/Makefile:1.26 pkgsrc/parallel/Makefile:1.27
--- pkgsrc/parallel/Makefile:1.26       Mon Jun 17 16:35:44 2019
+++ pkgsrc/parallel/Makefile    Fri Aug  9 20:25:29 2019
@@ -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

Added files:

Index: pkgsrc/parallel/R-promises/DESCR
diff -u /dev/null pkgsrc/parallel/R-promises/DESCR:1.1
--- /dev/null   Fri Aug  9 20:25:29 2019
+++ pkgsrc/parallel/R-promises/DESCR    Fri Aug  9 20:25:29 2019
@@ -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.
Index: pkgsrc/parallel/R-promises/Makefile
diff -u /dev/null pkgsrc/parallel/R-promises/Makefile:1.1
--- /dev/null   Fri Aug  9 20:25:29 2019
+++ pkgsrc/parallel/R-promises/Makefile Fri Aug  9 20:25:29 2019
@@ -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"
Index: pkgsrc/parallel/R-promises/distinfo
diff -u /dev/null pkgsrc/parallel/R-promises/distinfo:1.1
--- /dev/null   Fri Aug  9 20:25:29 2019
+++ pkgsrc/parallel/R-promises/distinfo Fri Aug  9 20:25:29 2019
@@ -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