guix_mirror_bot pushed a commit to branch r-team
in repository guix.

commit 719bbf3891deda25fe911c7a027ec20d2fdb8791
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 17:00:06 2026 +0100

    gnu: r-rngtools: Move to (gnu packages cran).
    
    * gnu/packages/statistics.scm (r-rngtools): Move from here...
    * gnu/packages/cran.scm (r-rngtools): ...to here.
    
    Change-Id: I2c6db225baa00fb32212e68dbabe405b4352442c
---
 gnu/packages/cran.scm       | 24 ++++++++++++++++++++++++
 gnu/packages/statistics.scm | 25 -------------------------
 2 files changed, 24 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 83f673eb7f..ecc55a471b 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7014,6 +7014,30 @@ components/nonparametric terms for models fit with 
@code{nlme::lme()},
 variety of formats.")
     (license license:gpl3+)))
 
+(define-public r-rngtools
+  (package
+    (name "r-rngtools")
+    (version "1.5.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "rngtools" version))
+       (sha256
+        (base32
+         "0kd7x214cqw7hzpmk1iqy1bn7j6x0ady0yz2hsdbclbq9k57d33z"))))
+    (build-system r-build-system)
+    (propagated-inputs (list r-digest))
+    (native-inputs (list r-testthat))
+    (home-page "https://renozao.github.io/rngtools";)
+    (synopsis "Utility functions for working with random number generators")
+    (description
+     "This package contains a set of functions for working with Random Number
+Generators (RNGs).  In particular, it defines a generic S4 framework for
+getting/setting the current RNG, or RNG data that are embedded into objects
+for reproducibility.  Notably, convenient default methods greatly facilitate
+the way current RNG settings can be changed.")
+    (license license:gpl3+)))
+
 (define-public r-robslopes
   (package
     (name "r-robslopes")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index c6bc811508..3bcf4d2eb8 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1881,31 +1881,6 @@ matrices.  It includes Cholesky decomposition and 
backsolving as well as
 standard R subsetting and Kronecker products.")
     (license license:gpl2+)))
 
-(define-public r-rngtools
-  (package
-    (name "r-rngtools")
-    (version "1.5.2")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "rngtools" version))
-       (sha256
-        (base32
-         "0kd7x214cqw7hzpmk1iqy1bn7j6x0ady0yz2hsdbclbq9k57d33z"))))
-    (build-system r-build-system)
-    (propagated-inputs
-     (list r-digest))
-    (native-inputs (list r-testthat))
-    (home-page "https://renozao.github.io/rngtools";)
-    (synopsis "Utility functions for working with random number generators")
-    (description
-     "This package contains a set of functions for working with Random Number
-Generators (RNGs).  In particular, it defines a generic S4 framework for
-getting/setting the current RNG, or RNG data that are embedded into objects
-for reproducibility.  Notably, convenient default methods greatly facilitate
-the way current RNG settings can be changed.")
-    (license license:gpl3+)))
-
 (define-public r-rtsne
   (package
     (name "r-rtsne")

Reply via email to