Received: by mail.netbsd.org (Postfix, from userid 605) id E2EB284DFC; Fri, 9 Aug 2019 19:05:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 684CB84DF6 for ; Fri, 9 Aug 2019 19:05:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id ofsct1hxxOO1 for ; Fri, 9 Aug 2019 19:05:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D222D84D33 for ; Fri, 9 Aug 2019 19:05:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CFBB0FBF4; Fri, 9 Aug 2019 19:05:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1565377549187080" MIME-Version: 1.0 Date: Fri, 9 Aug 2019 19:05:49 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190809190549.CFBB0FBF4@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. --_----------=_1565377549187080 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Fri Aug 9 19:05:49 UTC 2019 Modified Files: pkgsrc/devel: Makefile pkgsrc/doc: CHANGES-2019 Added Files: pkgsrc/devel/R-callr: DESCR Makefile distinfo Log Message: R-callr: initial commit It is sometimes useful to perform a computation in a separate R process, without affecting the current R process at all. This packages does exactly that. To generate a diff of this commit: cvs rdiff -u -r1.2889 -r1.2890 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/R-callr/DESCR \ pkgsrc/devel/R-callr/Makefile pkgsrc/devel/R-callr/distinfo cvs rdiff -u -r1.3361 -r1.3362 pkgsrc/doc/CHANGES-2019 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1565377549187080 Content-Disposition: inline Content-Length: 2818 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.2889 pkgsrc/devel/Makefile:1.2890 --- pkgsrc/devel/Makefile:1.2889 Fri Aug 9 19:01:07 2019 +++ pkgsrc/devel/Makefile Fri Aug 9 19:05:49 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2889 2019/08/09 19:01:07 brook Exp $ +# $NetBSD: Makefile,v 1.2890 2019/08/09 19:05:49 brook Exp $ # COMMENT= Development utilities @@ -21,6 +21,7 @@ SUBDIR+= R-bindr SUBDIR+= R-bit SUBDIR+= R-bit64 SUBDIR+= R-blob +SUBDIR+= R-callr SUBDIR+= R-checkmate SUBDIR+= R-cli SUBDIR+= R-clipr Index: pkgsrc/doc/CHANGES-2019 diff -u pkgsrc/doc/CHANGES-2019:1.3361 pkgsrc/doc/CHANGES-2019:1.3362 --- pkgsrc/doc/CHANGES-2019:1.3361 Fri Aug 9 19:04:58 2019 +++ pkgsrc/doc/CHANGES-2019 Fri Aug 9 19:05:49 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3361 2019/08/09 19:04:58 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3362 2019/08/09 19:05:49 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5484,3 +5484,4 @@ Changes to the packages collection and i Added sysutils/R-processx version 3.4.1 [brook 2019-08-09] Added sysutils/R-xopen version 1.0.0 [brook 2019-08-09] Added security/R-openssl version 1.4.1 [brook 2019-08-09] + Added devel/R-callr version 3.3.1 [brook 2019-08-09] Added files: Index: pkgsrc/devel/R-callr/DESCR diff -u /dev/null pkgsrc/devel/R-callr/DESCR:1.1 --- /dev/null Fri Aug 9 19:05:49 2019 +++ pkgsrc/devel/R-callr/DESCR Fri Aug 9 19:05:49 2019 @@ -0,0 +1,3 @@ +It is sometimes useful to perform a computation in a separate R +process, without affecting the current R process at all. This packages +does exactly that. Index: pkgsrc/devel/R-callr/Makefile diff -u /dev/null pkgsrc/devel/R-callr/Makefile:1.1 --- /dev/null Fri Aug 9 19:05:49 2019 +++ pkgsrc/devel/R-callr/Makefile Fri Aug 9 19:05:49 2019 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2019/08/09 19:05:49 brook Exp $ + +R_PKGNAME= callr +R_PKGVER= 3.3.1 +CATEGORIES= devel + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Call R from R +LICENSE= mit + +DEPENDS+= R-processx>=3.4.0:../../sysutils/R-processx + +USE_LANGUAGES= # none + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/R-callr/distinfo diff -u /dev/null pkgsrc/devel/R-callr/distinfo:1.1 --- /dev/null Fri Aug 9 19:05:49 2019 +++ pkgsrc/devel/R-callr/distinfo Fri Aug 9 19:05:49 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/08/09 19:05:49 brook Exp $ + +SHA1 (R/callr_3.3.1.tar.gz) = 886f2ea0b8b6cf2f6ccceec6e91aced03100b8bc +RMD160 (R/callr_3.3.1.tar.gz) = 407a15a6d8bdb732ccd5b859a6a20536424f26d4 +SHA512 (R/callr_3.3.1.tar.gz) = 684d8baa9254b70810f07d5feaa7bd99abd4248e72d94020f8c07b317437b11c7f41083f31157c2005d2ef9f79dccd4537f75a75bf2a7acb7bb4c0b20c33def8 +Size (R/callr_3.3.1.tar.gz) = 94264 bytes --_----------=_1565377549187080--