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

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

    gnu: r-rversions: Move to (gnu packages cran).
    
    * gnu/packages/statistics.scm (r-rversions): Move from here...
    * gnu/packages/cran.scm (r-rversions): ...to here.
    
    Change-Id: I84f1264333cd5750af9c68963b579e988df2458e
---
 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 868d651b24..733f4ade01 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7593,6 +7593,27 @@ through a Redis database.  Key features include task 
queues, local caching,
 and sophisticated error handling.")
     (license license:expat)))
 
+(define-public r-rversions
+  (package
+    (name "r-rversions")
+    (version "3.0.0")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "rversions" version))
+              (sha256
+               (base32
+                "1q9k169vd31pvigf8q5lwc0zvacbycv7nl584kdh2mzbbyfjb06s"))))
+    (build-system r-build-system)
+    (propagated-inputs (list r-curl))
+    (native-inputs (list r-testthat r-webfakes r-withr))
+    (home-page "https://github.com/metacran/rversions";)
+    (synopsis "Query R versions, including 'r-release' and 'r-oldrel'")
+    (description
+     "This package provides functions to query the main R repository to find
+the versions that @code{r-release} and @code{r-oldrel} refer to, and also all
+previous R versions and their release dates.")
+    (license license:expat)))
+
 (define-public r-prettydoc
   (package
     (name "r-prettydoc")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 1f021398fd..23d9fa5600 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-rversions
-  (package
-    (name "r-rversions")
-    (version "3.0.0")
-    (source (origin
-              (method url-fetch)
-              (uri (cran-uri "rversions" version))
-              (sha256
-               (base32
-                "1q9k169vd31pvigf8q5lwc0zvacbycv7nl584kdh2mzbbyfjb06s"))))
-    (build-system r-build-system)
-    (propagated-inputs (list r-curl))
-    (native-inputs (list r-testthat r-webfakes r-withr))
-    (home-page "https://github.com/metacran/rversions";)
-    (synopsis "Query R versions, including 'r-release' and 'r-oldrel'")
-    (description
-     "This package provides functions to query the main R repository to find
-the versions that @code{r-release} and @code{r-oldrel} refer to, and also all
-previous R versions and their release dates.")
-    (license license:expat)))
-
 (define-public r-segmented
   (package
     (name "r-segmented")

Reply via email to