guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit e7bf7b4898261bc87f18505ec6a9073f7f7baccb
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 17:03:28 2026 +0100
gnu: r-rrcov: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-rrcov): Move from here...
* gnu/packages/cran.scm (r-rrcov): ...to here.
Change-Id: I6a6ad60b8b74c66433ef8807c2244d70fceb32ef
---
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 5e0fef8f87..5d541dff6c 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7401,6 +7401,29 @@ and efficient notifications (and file transfer) between
computers, phones and
tablets.")
(license license:gpl2+)))
+(define-public r-rrcov
+ (package
+ (name "r-rrcov")
+ (version "1.7-7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "rrcov" version))
+ (sha256
+ (base32
+ "1xbhrpmb3bn4h83kr214jmhr0rx5mgjrf396iz70mnq3g425lbqb"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ (list r-lattice r-mvtnorm r-pcapp r-robustbase))
+ (native-inputs
+ (list gfortran r-mass))
+ (home-page "https://cran.r-project.org/web/packages/rrcov")
+ (synopsis "Scalable robust estimators with high breakdown point")
+ (description
+ "This package provides an implementation of robust location and scatter
+estimation and robust multivariate analysis with high breakdown point.")
+ (license license:gpl2+)))
+
(define-public r-runner
(package
(name "r-runner")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index e5dc28550d..1b67d5a71f 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2098,29 +2098,6 @@ dispersion modeling and Tweedie power-law families.")
;; Statmod is distributed under either license
(license (list license:gpl2 license:gpl3))))
-(define-public r-rrcov
- (package
- (name "r-rrcov")
- (version "1.7-7")
- (source
- (origin
- (method url-fetch)
- (uri (cran-uri "rrcov" version))
- (sha256
- (base32
- "1xbhrpmb3bn4h83kr214jmhr0rx5mgjrf396iz70mnq3g425lbqb"))))
- (build-system r-build-system)
- (propagated-inputs
- (list r-lattice r-mvtnorm r-pcapp r-robustbase))
- (native-inputs
- (list gfortran r-mass))
- (home-page "https://cran.r-project.org/web/packages/rrcov")
- (synopsis "Scalable robust estimators with high breakdown Point")
- (description
- "This package provides an implementation of robust location and scatter
-estimation and robust multivariate analysis with high breakdown point.")
- (license license:gpl2+)))
-
(define-public r-trimcluster
(package
(name "r-trimcluster")