guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit bdb3c6019063cab8976cefe9ce16b411bd92591f
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:08:14 2026 +0100
gnu: r-r-cache: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-r-cache): Move from here...
* gnu/packages/cran.scm (r-r-cache): ...to here.
Change-Id: Ibcddfb8fc8d9edf0b2e1373f4332b355dff731ab
---
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 064d48dc5d..c954418c4b 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-r-cache
+ (package
+ (name "r-r-cache")
+ (version "0.17.0")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "R.cache" version))
+ (sha256
+ (base32
+ "089dh928a42q2ymf1cvan3rxrh4whal4zk6z5khmplgd28r9arg2"))))
+ (properties `((upstream-name . "R.cache")))
+ (build-system r-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'set-HOME
+ (lambda _ (setenv "HOME" "/tmp"))))))
+ (propagated-inputs
+ (list r-digest r-r-methodss3 r-r-oo r-r-utils))
+ (home-page "https://github.com/HenrikBengtsson/R.cache")
+ (synopsis "Light-weight caching of objects and results")
+ (description
+ "This package provides methods for caching or memoization of objects and
+results. With this package, any R object can be cached in a key-value storage
+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-r6
(package
(name "r-r6")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 0d39733a5f..58476d20c2 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2250,34 +2250,6 @@ maintenance for package developers.")
developing R packages.")
(license license:lgpl2.1+)))
-(define-public r-r-cache
- (package
- (name "r-r-cache")
- (version "0.17.0")
- (source (origin
- (method url-fetch)
- (uri (cran-uri "R.cache" version))
- (sha256
- (base32
- "089dh928a42q2ymf1cvan3rxrh4whal4zk6z5khmplgd28r9arg2"))))
- (properties `((upstream-name . "R.cache")))
- (build-system r-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'set-HOME
- (lambda _ (setenv "HOME" "/tmp"))))))
- (propagated-inputs
- (list r-digest r-r-methodss3 r-r-oo r-r-utils))
- (home-page "https://github.com/HenrikBengtsson/R.cache")
- (synopsis "Light-weight caching of objects and results")
- (description
- "This package provides methods for caching or memoization of objects and
-results. With this package, any R object can be cached in a key-value storage
-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-rsp
(package
(name "r-r-rsp")