guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit b950ba10dfc4391b9194a21bba6eef9977659b9d
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:14:58 2026 +0100
gnu: r-r-oo: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-r-oo): Move from here...
* gnu/packages/cran.scm (r-r-oo): ...to here.
Change-Id: I7fb64b7e84dada6c146f5b03ed7916dea2745c34
---
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 c954418c4b..ada58e3c7c 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6426,6 +6426,29 @@ where the key can be an arbitrary set of R objects. The
cache memory is
persistent (on the file system).")
(license license:lgpl2.1+)))
+(define-public r-r-oo
+ (package
+ (name "r-r-oo")
+ (version "1.27.1")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "R.oo" version))
+ (sha256
+ (base32
+ "1xbh8bcv6yiyy59pja78zvbcr7g28dmalw0j1swdh9zhq6f5kbsz"))))
+ (properties `((upstream-name . "R.oo")))
+ (build-system r-build-system)
+ (propagated-inputs
+ (list r-r-methodss3))
+ (home-page "https://github.com/HenrikBengtsson/R.oo")
+ (synopsis "R object-oriented programming with or without references")
+ (description
+ "This package provides methods and classes for object-oriented
+programming in R with or without references. Large effort has been made on
+making definition of methods as simple as possible with a minimum of
+maintenance for package developers.")
+ (license license:lgpl2.1+)))
+
(define-public r-r6
(package
(name "r-r6")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 58476d20c2..b1d958bd89 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2194,29 +2194,6 @@ method @code{setMethodS3()} is a good start for those
who in the future may
want to migrate to S4.")
(license license:lgpl2.1+)))
-(define-public r-r-oo
- (package
- (name "r-r-oo")
- (version "1.27.1")
- (source (origin
- (method url-fetch)
- (uri (cran-uri "R.oo" version))
- (sha256
- (base32
- "1xbh8bcv6yiyy59pja78zvbcr7g28dmalw0j1swdh9zhq6f5kbsz"))))
- (properties `((upstream-name . "R.oo")))
- (build-system r-build-system)
- (propagated-inputs
- (list r-r-methodss3))
- (home-page "https://github.com/HenrikBengtsson/R.oo")
- (synopsis "R object-oriented programming with or without references")
- (description
- "This package provides methods and classes for object-oriented
-programming in R with or without references. Large effort has been made on
-making definition of methods as simple as possible with a minimum of
-maintenance for package developers.")
- (license license:lgpl2.1+)))
-
(define-public r-r-utils
(package
(name "r-r-utils")