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

commit a7fd117c0b55ab6390ef22f5c195f01392ecca96
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 17:05:53 2026 +0100

    gnu: r-runit: Move to (gnu packages cran).
    
    * gnu/packages/statistics.scm (r-runit): Move from here...
    * gnu/packages/cran.scm (r-runit): ...to here.
    
    Change-Id: Ibc73a6f5299408ecff5a55a2043f1def973d6a94
---
 gnu/packages/cran.scm       | 20 ++++++++++++++++++++
 gnu/packages/statistics.scm | 20 --------------------
 2 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 6ee4b3963c..868d651b24 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7540,6 +7540,26 @@ indices.  With a runner one can apply any R function on 
rolling windows.  The
 package eases work with equally and unequally spaced time series.")
     (license license:gpl2+)))
 
+(define-public r-runit
+  (package
+    (name "r-runit")
+    (version "0.4.33.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "RUnit" version))
+       (sha256
+        (base32
+         "01bz34hf4j93mldwharwdc691db324zbl09zg1qnwjnhm0xzla45"))))
+    (properties `((upstream-name . "RUnit")))
+    (build-system r-build-system)
+    (home-page "https://cran.r-project.org/web/packages/RUnit";)
+    (synopsis "R unit test framework")
+    (description
+     "This package provides R functions implementing a standard unit testing
+framework, with additional code inspection and report generation tools.")
+    (license license:gpl2+)))
+
 (define-public r-rush
   (package
     (name "r-rush")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index bbe1bd6eca..1f021398fd 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1905,26 +1905,6 @@ following problems:
 @end enumerate\n")
     (license license:gpl3+)))
 
-(define-public r-runit
-  (package
-    (name "r-runit")
-    (version "0.4.33.1")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "RUnit" version))
-       (sha256
-        (base32
-         "01bz34hf4j93mldwharwdc691db324zbl09zg1qnwjnhm0xzla45"))))
-    (properties `((upstream-name . "RUnit")))
-    (build-system r-build-system)
-    (home-page "https://cran.r-project.org/web/packages/RUnit";)
-    (synopsis "R unit test framework")
-    (description
-     "This package provides R functions implementing a standard unit testing
-framework, with additional code inspection and report generation tools.")
-    (license license:gpl2+)))
-
 (define-public r-sfsmisc
   (package
     (name "r-sfsmisc")

Reply via email to