guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 72cadb9b15e7443edd5cc50a5ad0032e1aa88fbb
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:48:00 2026 +0100
gnu: r-rcppprogress: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-rcppprogress): Move from here...
* gnu/packages/cran.scm (r-rcppprogress): ...to here.
Change-Id: Icd93fa7c7f87a9660f0d29e7fea3c29c1de79a52
---
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 588e23c340..dd5e1cc0aa 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6717,6 +6717,28 @@ and complex numbers, decompositions of such matrices,
and solutions of linear
systems.")
(license license:gpl2+)))
+(define-public r-rcppprogress
+ (package
+ (name "r-rcppprogress")
+ (version "0.4.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "RcppProgress" version))
+ (sha256
+ (base32
+ "0j2b37gwjpgmrnr00srdzm751hzlpsjb54ph63xxmcdfnwhlnqmi"))))
+ (properties `((upstream-name . "RcppProgress")))
+ (build-system r-build-system)
+ (native-inputs (list r-testthat))
+ (home-page "https://github.com/kforner/rcpp_progress")
+ (synopsis "Interruptible progress bar for C++ in R packages")
+ (description
+ "This package displays a progress bar in the R console for long running
+computations taking place in C++ code, and support for interrupting those
+computations even in multithreaded code, typically using OpenMP.")
+ (license license:gpl3+)))
+
(define-public r-reshape2
(package
(name "r-reshape2")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index bd8cf80228..804c387594 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2547,28 +2547,6 @@ of the points.")
;; Any GPL version
(license (list license:gpl2+ license:gpl3+))))
-(define-public r-rcppprogress
- (package
- (name "r-rcppprogress")
- (version "0.4.2")
- (source
- (origin
- (method url-fetch)
- (uri (cran-uri "RcppProgress" version))
- (sha256
- (base32
- "0j2b37gwjpgmrnr00srdzm751hzlpsjb54ph63xxmcdfnwhlnqmi"))))
- (properties `((upstream-name . "RcppProgress")))
- (build-system r-build-system)
- (native-inputs (list r-testthat))
- (home-page "https://github.com/kforner/rcpp_progress")
- (synopsis "Interruptible progress bar for C++ in R packages")
- (description
- "This package displays a progress bar in the R console for long running
-computations taking place in C++ code, and support for interrupting those
computations
-even in multithreaded code, typically using OpenMP.")
- (license license:gpl3+)))
-
(define-public r-tmvnsim
(package
(name "r-tmvnsim")