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

commit 781f882f212a0f0939c92e6d7b7196ecf5ff72e4
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:50:25 2026 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 75d47384fe..cdee9c03bf 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6862,6 +6862,25 @@ calculating simple slopes, standardized coefficients, 
regions of
 significance (Johnson & Neyman, 1936; cf.  Spiller et al., 2012), etc.")
     (license license:gpl3)))
 
+ (define-public r-registry
+   (package
+     (name "r-registry")
+     (version "0.5-1")
+     (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "registry" version))
+        (sha256
+         (base32
+          "1k3j6dx350awamr0dwwgkhfs46vsnj4nf08iw5byq0x7n3nkdsnz"))))
+     (build-system r-build-system)
+     (home-page "https://cran.r-project.org/web/packages/registry";)
+     (synopsis "Infrastructure for R package registries")
+     (description
+      "This package provides a generic infrastructure for creating and using R
+package registries.")
+     (license license:gpl2+)))
+
 (define-public r-reshape2
   (package
     (name "r-reshape2")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index a3d8951ac7..7004604013 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1948,25 +1948,6 @@ matrices.  It includes Cholesky decomposition and 
backsolving as well as
 standard R subsetting and Kronecker products.")
     (license license:gpl2+)))
 
- (define-public r-registry
-   (package
-     (name "r-registry")
-     (version "0.5-1")
-     (source
-      (origin
-        (method url-fetch)
-        (uri (cran-uri "registry" version))
-        (sha256
-         (base32
-          "1k3j6dx350awamr0dwwgkhfs46vsnj4nf08iw5byq0x7n3nkdsnz"))))
-     (build-system r-build-system)
-     (home-page "https://cran.r-project.org/web/packages/registry";)
-     (synopsis "Infrastructure for R package registries")
-     (description
-      "This package provides a generic infrastructure for creating and using R
-package registries.")
-     (license license:gpl2+)))
-
 (define-public r-rngtools
   (package
     (name "r-rngtools")

Reply via email to