pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/R-fastmap



Module Name:    pkgsrc
Committed By:   mef
Date:           Mon May 31 22:22:33 UTC 2021

Added Files:
        pkgsrc/devel/R-fastmap: DESCR Makefile distinfo

Log Message:
(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++.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/R-fastmap/DESCR \
    pkgsrc/devel/R-fastmap/Makefile pkgsrc/devel/R-fastmap/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Added files:

Index: pkgsrc/devel/R-fastmap/DESCR
diff -u /dev/null pkgsrc/devel/R-fastmap/DESCR:1.1
--- /dev/null   Mon May 31 22:22:33 2021
+++ pkgsrc/devel/R-fastmap/DESCR        Mon May 31 22:22:32 2021
@@ -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++.
Index: pkgsrc/devel/R-fastmap/Makefile
diff -u /dev/null pkgsrc/devel/R-fastmap/Makefile:1.1
--- /dev/null   Mon May 31 22:22:33 2021
+++ pkgsrc/devel/R-fastmap/Makefile     Mon May 31 22:22:32 2021
@@ -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"
Index: pkgsrc/devel/R-fastmap/distinfo
diff -u /dev/null pkgsrc/devel/R-fastmap/distinfo:1.1
--- /dev/null   Mon May 31 22:22:33 2021
+++ pkgsrc/devel/R-fastmap/distinfo     Mon May 31 22:22:32 2021
@@ -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