Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 11 Oct 2019 10:45:43 +0000 (UTC)
From:      TAKATSU Tomonari <tota@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r514273 - in head/databases: . R-cran-fastmap
Message-ID:  <201910111045.x9BAjhxM073207@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tota
Date: Fri Oct 11 10:45:43 2019
New Revision: 514273
URL: https://svnweb.freebsd.org/changeset/ports/514273

Log:
  - Add new port: databases/R-cran-fastmap
  
    Fast implementation of a key-value store. Environments are commonly
    used as key-value stores, 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++.
  
    WWW: https://cran.r-project.org/web/packages/fastmap/

Added:
  head/databases/R-cran-fastmap/
  head/databases/R-cran-fastmap/Makefile   (contents, props changed)
  head/databases/R-cran-fastmap/distinfo   (contents, props changed)
  head/databases/R-cran-fastmap/pkg-descr   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Fri Oct 11 09:52:47 2019	(r514272)
+++ head/databases/Makefile	Fri Oct 11 10:45:43 2019	(r514273)
@@ -8,6 +8,7 @@
     SUBDIR += R-cran-RPostgreSQL
     SUBDIR += R-cran-RSQLite
     SUBDIR += R-cran-RSQLite.extfuns
+    SUBDIR += R-cran-fastmap
     SUBDIR += R-cran-sqldf
     SUBDIR += WWWdb
     SUBDIR += adabase

Added: head/databases/R-cran-fastmap/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/R-cran-fastmap/Makefile	Fri Oct 11 10:45:43 2019	(r514273)
@@ -0,0 +1,16 @@
+# $FreeBSD$
+
+PORTNAME=	fastmap
+PORTVERSION=	1.0.1
+CATEGORIES=	databases
+DISTNAME=	${PORTNAME}_${PORTVERSION}
+
+MAINTAINER=	tota@FreeBSD.org
+COMMENT=	Fast Implementation of a Key-Value Store
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.note
+
+USES=		cran:auto-plist,compiles
+
+.include <bsd.port.mk>

Added: head/databases/R-cran-fastmap/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/R-cran-fastmap/distinfo	Fri Oct 11 10:45:43 2019	(r514273)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1570788237
+SHA256 (fastmap_1.0.1.tar.gz) = 4778b05dfebd356f8df980dfeff3b973a72bca14898f870e5c40c1d84db9faec
+SIZE (fastmap_1.0.1.tar.gz) = 36802

Added: head/databases/R-cran-fastmap/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/R-cran-fastmap/pkg-descr	Fri Oct 11 10:45:43 2019	(r514273)
@@ -0,0 +1,8 @@
+Fast implementation of a key-value store. Environments are commonly
+used as key-value stores, 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++.
+
+WWW: https://cran.r-project.org/web/packages/fastmap/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910111045.x9BAjhxM073207>