guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit b9b28467bbeb8fe63cea891548bbd3cf8e47946c
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 15:38:58 2026 +0100
gnu: r-rcolorbrewer: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-rcolorbrewer): Move from here...
* gnu/packages/cran.scm (r-rcolorbrewer): ...to here.
Change-Id: I4d96ef5aa018d2c5c1a1589a7faefc8d3a5eb489
---
gnu/packages/cran.scm | 28 ++++++++++++++++++++++++++++
gnu/packages/statistics.scm | 28 ----------------------------
2 files changed, 28 insertions(+), 28 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index c7a51b7a05..6f0c7dac83 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6398,6 +6398,34 @@ Wicherts, 2020).")
features present in other programming languages.")
(license license:gpl3+)))
+(define-public r-r6
+ (package
+ (name "r-r6")
+ (version "2.6.1")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "R6" version))
+ (sha256
+ (base32
+ "1d3k40gnms6458aprrjy899yhjv06lr0arag21zfn4mrn6lfpijr"))))
+ (properties
+ ;; We can't have r-testthat among the inputs here to avoid a dependency
+ ;; cycle.
+ '((updater-ignored-native-inputs . ("r-testthat"))))
+ (build-system r-build-system)
+ ;; Tests require r-testthat, which indirectly depends on this package.
+ (arguments (list #:tests? #false))
+ (home-page "https://github.com/wch/R6/")
+ (synopsis "Classes with reference semantics in R")
+ (description
+ "The R6 package allows the creation of classes with reference semantics,
+similar to R's built-in reference classes. Compared to reference classes, R6
+classes are simpler and lighter-weight, and they are not built on S4 classes
+so they do not require the methods package. These classes allow public and
+private members, and they support inheritance, even when the classes are
+defined in different packages.")
+ (license license:expat)))
+
(define-public r-rcolorbrewer
(package
(name "r-rcolorbrewer")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 811bd48b9a..8094ed51aa 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -922,34 +922,6 @@ posteriors and evidences.")
flexible and easy to set up.")
(license license:expat)))
-(define-public r-r6
- (package
- (name "r-r6")
- (version "2.6.1")
- (source (origin
- (method url-fetch)
- (uri (cran-uri "R6" version))
- (sha256
- (base32
- "1d3k40gnms6458aprrjy899yhjv06lr0arag21zfn4mrn6lfpijr"))))
- (properties
- ;; We can't have r-testthat among the inputs here to avoid a dependency
- ;; cycle.
- '((updater-ignored-native-inputs . ("r-testthat"))))
- (build-system r-build-system)
- ;; Tests require r-testthat, which indirectly depends on this package.
- (arguments (list #:tests? #false))
- (home-page "https://github.com/wch/R6/")
- (synopsis "Classes with reference semantics in R")
- (description
- "The R6 package allows the creation of classes with reference semantics,
-similar to R's built-in reference classes. Compared to reference classes, R6
-classes are simpler and lighter-weight, and they are not built on S4 classes
-so they do not require the methods package. These classes allow public and
-private members, and they support inheritance, even when the classes are
-defined in different packages.")
- (license license:expat)))
-
(define-public r-rlang
(package
(name "r-rlang")