[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#66843] [PATCH 07/11] gnu: Add r-profmem.
From: |
Mădălin Ionel Patrașcu |
Subject: |
[bug#66843] [PATCH 07/11] gnu: Add r-profmem. |
Date: |
Tue, 31 Oct 2023 11:57:25 +0100 |
* gnu/packages/cran.scm (r-profmem): New variable.
Change-Id: If99cf8e963601e9f0a664f12ef263a064b59b0d6
---
gnu/packages/cran.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ef43771f47..27ea2cdc06 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -1266,6 +1266,38 @@ (define-public r-prettydoc
highlight styles are supported.")
(license license:asl2.0)))
+(define-public r-profmem
+ (package
+ (name "r-profmem")
+ (version "0.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "profmem" version))
+ (sha256
+ (base32 "0gg6ja0ifwn9jj42rw1gnyil55sl9r2y5rjb6yjcvqwd5arajp3l"))))
+ (properties `((upstream-name . "profmem")))
+ (build-system r-build-system)
+ (arguments
+ (list
+ #:phases
+ '(modify-phases %standard-phases
+ (add-before 'install 'change-home-dir
+ (lambda _
+ ;; Change from /homeless-shelter to /tmp for write permission.
+ (setenv "HOME" "/tmp"))))))
+ (native-inputs
+ (list r-r-rsp
+ r-markdown)) ; for vignettes
+ (home-page "https://github.com/HenrikBengtsson/profmem")
+ (synopsis "Simple memory profiling for R")
+ (description
+ "This package provides a simple and light-weight API for memory profiling
+of R expressions. The profiling is built on top of R's built-in memory
profiler
+@code{utils::Rprofmem()}, which records every memory allocation done by R (also
+native code).")
+ (license license:lgpl2.1+)))
+
(define-public r-proj4
(package
(name "r-proj4")
--
2.41.0
- [bug#66843] [PATCH] gnu: Add r-radiogx, r-coregx, r-piano, r-bench, r-profmem, r-relations, r-magicaxis, r-celestial, r-nistunits, r-r4rna and r-r3cseq., Mădălin Ionel Patrașcu, 2023/10/31
- [bug#66843] [PATCH 01/11] gnu: Add r-r3cseq., Mădălin Ionel Patrașcu, 2023/10/31
- [bug#66843] [PATCH 02/11] gnu: Add r-r4rna., Mădălin Ionel Patrașcu, 2023/10/31
- [bug#66843] [PATCH 08/11] gnu: Add r-bench., Mădălin Ionel Patrașcu, 2023/10/31
- [bug#66843] [PATCH 04/11] gnu: Add r-celestial., Mădălin Ionel Patrașcu, 2023/10/31
- [bug#66843] [PATCH 05/11] gnu: Add r-magicaxis., Mădălin Ionel Patrașcu, 2023/10/31
- [bug#66843] [PATCH 07/11] gnu: Add r-profmem.,
Mădălin Ionel Patrașcu <=
- [bug#66843] [PATCH 03/11] gnu: Add r-nistunits., Mădălin Ionel Patrașcu, 2023/10/31
- [bug#66843] [PATCH 11/11] gnu: Add r-radiogx., Mădălin Ionel Patrașcu, 2023/10/31
- [bug#66843] [PATCH 09/11] gnu: Add r-piano., Mădălin Ionel Patrașcu, 2023/10/31
- [bug#66843] [PATCH 10/11] gnu: Add r-coregx., Mădălin Ionel Patrașcu, 2023/10/31
- [bug#66843] [PATCH 06/11] gnu: Add r-relations., Mădălin Ionel Patrașcu, 2023/10/31
- bug#66843: [PATCH] gnu: Add r-radiogx, r-coregx, r-piano, r-bench, r-profmem, r-relations, r-magicaxis, r-celestial, r-nistunits, r-r4rna and r-r3cseq., Ricardo Wurmus, 2023/10/31