From de5988f5d46b26ea892df38d040d4c6dbb2aa75a Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 16 Feb 2026 18:37:14 +0100 Subject: gnu: r-snow: Move to (gnu packages cran). * gnu/packages/statistics.scm (r-snow): Move from here... * gnu/packages/cran.scm (r-snow): ...to here. Change-Id: Idec2db0264ae8ce666596be3fa0427568249b591 --- gnu/packages/cran.scm | 21 +++++++++++++++++++++ gnu/packages/statistics.scm | 21 --------------------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b350039aaa9..64eecbd0438 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -10456,6 +10456,27 @@ notably the skew-t family, and provides related statistical methods for data fitting and diagnostics, in the univariate and the multivariate case.") (license license:gpl2+))) +(define-public r-snow + (package + (name "r-snow") + (version "0.4-4") + (source (origin + (method url-fetch) + (uri (cran-uri "snow" version)) + (sha256 + (base32 + "1j8kvf3imxijsqkdjz4i9s7qggfxqrpas46y5wz6za92y937yn44")))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/snow") + (synopsis "Support for simple parallel computing in R") + (description + "The snow package provides support for simple parallel computing on a +network of workstations using R. A master R process calls @code{makeCluster} +to start a cluster of worker processes; the master process then uses functions +such as @code{clusterCall} and @code{clusterApply} to execute R code on the +worker processes and collect and return the results on the master.") + (license (list license:gpl2+ license:gpl3+)))) + (define-public r-snowflakeauth (package (name "r-snowflakeauth") diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 75d19aa17d3..6b4422157b7 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1660,27 +1660,6 @@ Features: @end itemize") (license license:asl2.0))) -(define-public r-snow - (package - (name "r-snow") - (version "0.4-4") - (source (origin - (method url-fetch) - (uri (cran-uri "snow" version)) - (sha256 - (base32 - "1j8kvf3imxijsqkdjz4i9s7qggfxqrpas46y5wz6za92y937yn44")))) - (build-system r-build-system) - (home-page "https://cran.r-project.org/web/packages/snow") - (synopsis "Support for simple parallel computing in R") - (description - "The snow package provides support for simple parallel computing on a -network of workstations using R. A master R process calls @code{makeCluster} -to start a cluster of worker processes; the master process then uses functions -such as @code{clusterCall} and @code{clusterApply} to execute R code on the -worker processes and collect and return the results on the master.") - (license (list license:gpl2+ license:gpl3+)))) - (define-public r-sparsem (package (name "r-sparsem") -- cgit v1.3