pkgsrc-WIP-changes archive

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

R-future: import R-future-1.33.0 as wip/R-future



Module Name:	pkgsrc-wip
Committed By:	Brook Milligan <brook%nmsu.edu@localhost>
Pushed By:	brook
Date:		Fri Dec 1 13:15:46 2023 -0700
Changeset:	144d88cb4ddbce0a2f0cb464714c8cf562f25b07

Modified Files:
	Makefile
Added Files:
	R-future/DESCR
	R-future/Makefile
	R-future/distinfo

Log Message:
R-future: import R-future-1.33.0 as wip/R-future

The purpose of this package is to provide a lightweight and unified
Future API for sequential and parallel processing of R expression via
futures.  The simplest way to evaluate an expression in parallel is to
use `x %<-% { expression }` with `plan(multisession)`. This package
implements sequential, multicore, multisession, and cluster futures.
With these, R expressions can be evaluated on the local machine, in
parallel a set of local machines, or distributed on a mix of local and
remote machines. Extensions to this package implement additional
backends for processing futures via compute cluster schedulers, etc.
Because of its unified API, there is no need to modify any code in
order switch from sequential on the local machine to, say, distributed
processing on a remote compute cluster. Another strength of this
package is that global variables and functions are automatically
identified and exported as needed, making it straightforward to tweak
existing code to make use of futures.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=144d88cb4ddbce0a2f0cb464714c8cf562f25b07

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

diffstat:
 Makefile          |  1 +
 R-future/DESCR    | 15 +++++++++++++++
 R-future/Makefile | 18 ++++++++++++++++++
 R-future/distinfo |  5 +++++
 4 files changed, 39 insertions(+)

diffs:
diff --git a/Makefile b/Makefile
index ee86dcb743..93a36c0a9d 100644
--- a/Makefile
+++ b/Makefile
@@ -53,6 +53,7 @@ SUBDIR+=	R-easySVG
 SUBDIR+=	R-entropy
 SUBDIR+=	R-fitdistrplus
 SUBDIR+=	R-foreach
+SUBDIR+=	R-future
 SUBDIR+=	R-getopt
 SUBDIR+=	R-gmp
 SUBDIR+=	R-graph
diff --git a/R-future/DESCR b/R-future/DESCR
new file mode 100644
index 0000000000..448fb94714
--- /dev/null
+++ b/R-future/DESCR
@@ -0,0 +1,15 @@
+The purpose of this package is to provide a lightweight and unified
+Future API for sequential and parallel processing of R expression via
+futures.  The simplest way to evaluate an expression in parallel is to
+use `x %<-% { expression }` with `plan(multisession)`. This package
+implements sequential, multicore, multisession, and cluster futures.
+With these, R expressions can be evaluated on the local machine, in
+parallel a set of local machines, or distributed on a mix of local and
+remote machines. Extensions to this package implement additional
+backends for processing futures via compute cluster schedulers, etc.
+Because of its unified API, there is no need to modify any code in
+order switch from sequential on the local machine to, say, distributed
+processing on a remote compute cluster. Another strength of this
+package is that global variables and functions are automatically
+identified and exported as needed, making it straightforward to tweak
+existing code to make use of futures.
diff --git a/R-future/Makefile b/R-future/Makefile
new file mode 100644
index 0000000000..9df498f828
--- /dev/null
+++ b/R-future/Makefile
@@ -0,0 +1,18 @@
+# $NetBSD$
+
+R_PKGNAME=	future
+R_PKGVER=	1.33.0
+CATEGORIES=	devel
+
+MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
+COMMENT=	Unified parallel and distributed processing in R
+LICENSE=	gnu-lgpl-v2.1
+
+DEPENDS+=	R-globals>=0.16.1:../../devel/R-globals
+DEPENDS+=	R-digest>=0.6.31:../../security/R-digest
+DEPENDS+=	R-parallelly>=1.36.0:../../wip/R-parallelly
+
+USE_LANGUAGES=	# none
+
+.include "../../math/R/Makefile.extension"
+.include "../../mk/bsd.pkg.mk"
diff --git a/R-future/distinfo b/R-future/distinfo
new file mode 100644
index 0000000000..8e6d0c76b5
--- /dev/null
+++ b/R-future/distinfo
@@ -0,0 +1,5 @@
+$NetBSD$
+
+BLAKE2s (R/future_1.33.0.tar.gz) = 86992fa86cddece7117a2b5c575ca148d09419d8aaf58980cd3f568e604dac0e
+SHA512 (R/future_1.33.0.tar.gz) = c4b32e90bc122f51f09d2c60821da92dad65b021c04aabc996c0c6689cefb3a5c5bf70e8863cf5123ce77e97ba52f33e23763dfa9ed317d7b094f6e2c9ce86a2
+Size (R/future_1.33.0.tar.gz) = 347394 bytes


Home | Main Index | Thread Index | Old Index