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

commit b60233524aed65606d28dec2a826639cfdfe00fe
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 18:42:14 2026 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 64e36f7da6..05244fdf7b 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -10479,6 +10479,29 @@ tokenization of R code, and helpers for interacting 
with the tokenized
 representation of R code.")
     (license license:expat)))
 
+(define-public r-sparsem
+  (package
+    (name "r-sparsem")
+    (version "1.84-2")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "SparseM" version))
+              (sha256
+               (base32
+                "0rc6x466jhalb6baxxhffmmcpi03nndvvighp696rrvrhsxzv015"))))
+    (properties
+     `((upstream-name . "SparseM")))
+    (native-inputs
+     (list gfortran r-knitr))
+    (build-system r-build-system)
+    (home-page "http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html";)
+    (synopsis "Sparse linear algebra")
+    (description
+     "This package provides some basic linear algebra functionality for sparse
+matrices.  It includes Cholesky decomposition and backsolving as well as
+standard R subsetting and Kronecker products.")
+    (license license:gpl2+)))
+
 (define-public r-spatial
   (package
     (name "r-spatial")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 91db6f5e96..def4f7a60c 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1660,29 +1660,6 @@ Features:
 @end itemize")
     (license license:asl2.0)))
 
-(define-public r-sparsem
-  (package
-    (name "r-sparsem")
-    (version "1.84-2")
-    (source (origin
-              (method url-fetch)
-              (uri (cran-uri "SparseM" version))
-              (sha256
-               (base32
-                "0rc6x466jhalb6baxxhffmmcpi03nndvvighp696rrvrhsxzv015"))))
-    (properties
-     `((upstream-name . "SparseM")))
-    (native-inputs
-     (list gfortran r-knitr))
-    (build-system r-build-system)
-    (home-page "http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html";)
-    (synopsis "Sparse linear algebra")
-    (description
-     "This package provides some basic linear algebra functionality for sparse
-matrices.  It includes Cholesky decomposition and backsolving as well as
-standard R subsetting and Kronecker products.")
-    (license license:gpl2+)))
-
 (define-public r-synchronicity
   (package
     (name "r-synchronicity")

Reply via email to