Received: by mail.netbsd.org (Postfix, from userid 605) id AED9184E2A; Fri, 9 Aug 2019 20:25:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 34D4684E24 for ; Fri, 9 Aug 2019 20:25:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id wGjkMv_UIDhG for ; Fri, 9 Aug 2019 20:25:29 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 985C084E18 for ; Fri, 9 Aug 2019 20:25:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 95032FBF4; Fri, 9 Aug 2019 20:25:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1565382329147450" MIME-Version: 1.0 Date: Fri, 9 Aug 2019 20:25:29 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190809202529.95032FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1565382329147450 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" 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. --_----------=_1565382329147450 Content-Disposition: inline Content-Length: 3192 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii 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 +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 --_----------=_1565382329147450--