diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-16 16:14:58 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:19 +0100 |
| commit | 3d8d52d23f1f131ba3e7fbb72e9cc5e3f5a1cfea (patch) | |
| tree | 1cae2272442a1bca788187179b377feda178b89d /gnu/packages | |
| parent | 8b8d0a7550813018c3e6f19bac21f47f35b38cc3 (diff) | |
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
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/cran.scm | 23 | ||||
| -rw-r--r-- | 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 c94cc38ddd2..53227aa1c50 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6473,6 +6473,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 0bb09e74e30..ff6f048b13f 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") |
