1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-11 15:40:31 +02:00

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
This commit is contained in:
Ricardo Wurmus
2026-02-16 16:15:49 +01:00
committed by Andreas Enge
parent 3d8d52d23f
commit daab4a2229
2 changed files with 24 additions and 24 deletions

View File

@@ -6473,6 +6473,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")

View File

@@ -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")