pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/R-fastmap (devel/R-fastmap) import R-fastmap-1.1.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ba052b6d7766
branches:  trunk
changeset: 453598:ba052b6d7766
user:      mef <mef%pkgsrc.org@localhost>
date:      Mon May 31 22:22:32 2021 +0000

description:
(devel/R-fastmap) import R-fastmap-1.1.0

Fast implementation of data structures, including a key-value store,
stack, and queue. Environments are commonly used as key-value stores
in R, but every time a new key is used, it is added to R's global
symbol table, causing a small amount of memory leakage. This can be
problematic in cases where many different keys are used. Fastmap
avoids this memory leak issue by implementing the map using data
structures in C++.

diffstat:

 devel/R-fastmap/DESCR    |   7 +++++++
 devel/R-fastmap/Makefile |  14 ++++++++++++++
 devel/R-fastmap/distinfo |   6 ++++++
 3 files changed, 27 insertions(+), 0 deletions(-)

diffs (39 lines):

diff -r 9b9472243bc2 -r ba052b6d7766 devel/R-fastmap/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/R-fastmap/DESCR     Mon May 31 22:22:32 2021 +0000
@@ -0,0 +1,7 @@
+Fast implementation of data structures, including a key-value store,
+stack, and queue. Environments are commonly used as key-value stores
+in R, but every time a new key is used, it is added to R's global
+symbol table, causing a small amount of memory leakage. This can be
+problematic in cases where many different keys are used. Fastmap
+avoids this memory leak issue by implementing the map using data
+structures in C++.
diff -r 9b9472243bc2 -r ba052b6d7766 devel/R-fastmap/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/R-fastmap/Makefile  Mon May 31 22:22:32 2021 +0000
@@ -0,0 +1,14 @@
+# $NetBSD: Makefile,v 1.1 2021/05/31 22:22:32 mef Exp $
+
+R_PKGNAME=     fastmap
+R_PKGVER=      1.1.0
+CATEGORIES=    devel
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+COMMENT=       Fast Data Structures
+LICENSE=       mit     # + file LICENSE
+
+USE_LANGUAGES= c c++
+
+.include "../../math/R/Makefile.extension"
+.include "../../mk/bsd.pkg.mk"
diff -r 9b9472243bc2 -r ba052b6d7766 devel/R-fastmap/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/R-fastmap/distinfo  Mon May 31 22:22:32 2021 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2021/05/31 22:22:32 mef Exp $
+
+SHA1 (R/fastmap_1.1.0.tar.gz) = 215ef0b1fe4b863440755aebbd4927a5fad56288
+RMD160 (R/fastmap_1.1.0.tar.gz) = f0e83013e2e92dcf671e88e32e01146cd008ea22
+SHA512 (R/fastmap_1.1.0.tar.gz) = f61b777f3ac4bf0a5c778bc07bb09a0244955c8bc13a669225a0c70999182af4012af2d9a792f1d861f7b5394c631e1896bf7ac3f3866b0c96e7e33a5635fb87
+Size (R/fastmap_1.1.0.tar.gz) = 44277 bytes



Home | Main Index | Thread Index | Old Index