guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 94948a623453639e9e0360db9ec56b49e408f8f8
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 18:37:14 2026 +0100
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 404f7de355..ada08fcba2 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -10409,6 +10409,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 00ad2ed0e4..49331ceb47 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")