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

commit 1d40735698161a1f8b81e02ab09754ee4534fd8b
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:46:32 2026 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index cb01b4e499..6fd0061473 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6663,6 +6663,35 @@ designed by Cynthia Brewer as described at 
http://colorbrewer2.org";)
     ;; Includes code licensed under bsd-4
     (license license:asl2.0)))
 
+(define-public r-rcpparmadillo
+  (package
+    (name "r-rcpparmadillo")
+    (version "15.2.3-1")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "RcppArmadillo" version))
+              (sha256
+               (base32
+                "1wsnhraadhf3lna9ry21mad2802s1czgznhf179f8f8l00r4rfsv"))))
+    (properties `((upstream-name . "RcppArmadillo")))
+    (build-system r-build-system)
+    (propagated-inputs
+     (list r-rcpp))
+    (native-inputs (list r-tinytest))
+    (home-page "https://github.com/RcppCore/RcppArmadillo";)
+    (synopsis "Rcpp integration for the Armadillo linear algebra library")
+    (description
+     "Armadillo is a templated C++ linear algebra library that aims towards a
+good balance between speed and ease of use.  Integer, floating point and
+complex numbers are supported, as well as a subset of trigonometric and
+statistics functions.  Various matrix decompositions are provided through
+optional integration with LAPACK and ATLAS libraries.  This package includes
+the header files from the templated Armadillo library.")
+    ;; Armadillo is licensed under the MPL 2.0, while RcppArmadillo (the Rcpp
+    ;; bindings to Armadillo) is licensed under the GNU GPL version 2 or
+    ;; later, as is the rest of 'Rcpp'.
+    (license license:gpl2+)))
+
 (define-public r-reshape2
   (package
     (name "r-reshape2")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index abe01a4cf7..a8de802e09 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1823,35 +1823,6 @@ informative error messages when it's not available.")
 disk (or a connection).")
     (license license:gpl2+)))
 
-(define-public r-rcpparmadillo
-  (package
-    (name "r-rcpparmadillo")
-    (version "15.2.3-1")
-    (source (origin
-              (method url-fetch)
-              (uri (cran-uri "RcppArmadillo" version))
-              (sha256
-               (base32
-                "1wsnhraadhf3lna9ry21mad2802s1czgznhf179f8f8l00r4rfsv"))))
-    (properties `((upstream-name . "RcppArmadillo")))
-    (build-system r-build-system)
-    (propagated-inputs
-     (list r-rcpp))
-    (native-inputs (list r-tinytest))
-    (home-page "https://github.com/RcppCore/RcppArmadillo";)
-    (synopsis "Rcpp integration for the Armadillo linear algebra library")
-    (description
-     "Armadillo is a templated C++ linear algebra library that aims towards a
-good balance between speed and ease of use.  Integer, floating point and
-complex numbers are supported, as well as a subset of trigonometric and
-statistics functions.  Various matrix decompositions are provided through
-optional integration with LAPACK and ATLAS libraries.  This package includes
-the header files from the templated Armadillo library.")
-    ;; Armadillo is licensed under the MPL 2.0, while RcppArmadillo (the Rcpp
-    ;; bindings to Armadillo) is licensed under the GNU GPL version 2 or
-    ;; later, as is the rest of 'Rcpp'.
-    (license license:gpl2+)))
-
 (define-public r-rprojroot
   (package
     (name "r-rprojroot")

Reply via email to