guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 1de33b6a9bea4ddaf672e1efa415515750f7a9d3
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:15:49 2026 +0100
gnu: r-r-methodss3: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-r-methodss3): Move from here...
* gnu/packages/cran.scm (r-r-methodss3): ...to here.
Change-Id: Ib7fdf6958bc0d9dd76c6cf1a5cac00164c175c63
---
gnu/packages/cran.scm | 24 ++++++++++++++++++++++++
gnu/packages/statistics.scm | 24 ------------------------
2 files changed, 24 insertions(+), 24 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ada58e3c7c..a3b55c586c 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6426,6 +6426,30 @@ 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-methodss3
+ (package
+ (name "r-r-methodss3")
+ (version "1.8.2")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "R.methodsS3" version))
+ (sha256
+ (base32
+ "0bkwj9c2cpgb0ibk9znh8qh4k1wzp3bkhaxyhf41xjflv9hmwbc2"))))
+ (properties `((upstream-name . "R.methodsS3")))
+ (build-system r-build-system)
+ (home-page "https://cran.r-project.org/web/packages/R.methodsS3")
+ (synopsis "S3 methods simplified")
+ (description
+ "This package provides methods that simplify the setup of S3 generic
+functions and S3 methods. Major effort has been made in making definition of
+methods as simple as possible with a minimum of maintenance for package
+developers. For example, generic functions are created automatically, if
+missing, and naming conflict are automatically solved, if possible. The
+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")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index b1d958bd89..e866ec0ce0 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2170,30 +2170,6 @@ message passing.")
;; Users can choose either LGPLv3 or ASL2.0.
(license (list license:lgpl3 license:asl2.0))))
-(define-public r-r-methodss3
- (package
- (name "r-r-methodss3")
- (version "1.8.2")
- (source (origin
- (method url-fetch)
- (uri (cran-uri "R.methodsS3" version))
- (sha256
- (base32
- "0bkwj9c2cpgb0ibk9znh8qh4k1wzp3bkhaxyhf41xjflv9hmwbc2"))))
- (properties `((upstream-name . "R.methodsS3")))
- (build-system r-build-system)
- (home-page "https://cran.r-project.org/web/packages/R.methodsS3")
- (synopsis "S3 methods simplified")
- (description
- "This package provides methods that simplify the setup of S3 generic
-functions and S3 methods. Major effort has been made in making definition of
-methods as simple as possible with a minimum of maintenance for package
-developers. For example, generic functions are created automatically, if
-missing, and naming conflict are automatically solved, if possible. The
-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-utils
(package
(name "r-r-utils")