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

commit 6edc2cff3e23cf3fe3912182b0257f655496a936
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:03:00 2026 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 8e41978b2e..064d48dc5d 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6473,6 +6473,28 @@ regression, survival and probability prediction trees 
are supported.  Data
 from genome-wide association studies can be analyzed efficiently.")
     (license license:gpl3)))
 
+(define-public r-rann
+  (package
+    (name "r-rann")
+    (version "2.6.2")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "RANN" version))
+              (sha256
+               (base32
+                "0wlpkf6vilw871ac2bxy5nr790cfs6sax5k8m0fhasxbansxbxvf"))))
+    (properties
+     `((upstream-name . "RANN")))
+    (build-system r-build-system)
+    (native-inputs (list r-testthat))
+    (home-page "https://github.com/jefferis/RANN";)
+    (synopsis "Fast nearest neighbour search")
+    (description
+     "This package finds the k nearest neighbours for every point in a given
+dataset in O(N log N) time using Arya and Mount's ANN library.  It provides
+approximate, exact searches, fixed radius searches, bd and kb trees.")
+    (license license:gpl3+)))
+
 (define-public r-rcolorbrewer
   (package
     (name "r-rcolorbrewer")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 39dd30e17f..0d39733a5f 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2609,28 +2609,6 @@ dispersion modeling and Tweedie power-law families.")
     ;; Statmod is distributed under either license
     (license (list license:gpl2 license:gpl3))))
 
-(define-public r-rann
-  (package
-    (name "r-rann")
-    (version "2.6.2")
-    (source (origin
-              (method url-fetch)
-              (uri (cran-uri "RANN" version))
-              (sha256
-               (base32
-                "0wlpkf6vilw871ac2bxy5nr790cfs6sax5k8m0fhasxbansxbxvf"))))
-    (properties
-     `((upstream-name . "RANN")))
-    (build-system r-build-system)
-    (native-inputs (list r-testthat))
-    (home-page "https://github.com/jefferis/RANN";)
-    (synopsis "Fast nearest neighbour search")
-    (description
-     "This package finds the k nearest neighbours for every point in a given
-dataset in O(N log N) time using Arya and Mount's ANN library.  Provides
-approximate, exact searches, fixed radius searches, bd and kb trees.")
-    (license license:gpl3+)))
-
 (define-public r-robustbase
   (package
     (name "r-robustbase")

Reply via email to