svn commit: r563438 - in head/databases: . R-cran-cachem

TAKATSU Tomonari tota at FreeBSD.org
Sat Jan 30 23:18:44 UTC 2021


Author: tota
Date: Sat Jan 30 23:18:43 2021
New Revision: 563438
URL: https://svnweb.freebsd.org/changeset/ports/563438

Log:
  - Add new port: databases/R-cran-cachem
  
    Key-value stores with automatic pruning. Caches can limit either
    their total size or the age of the oldest object (or both),
    automatically pruning objects to maintain the constraints.
  
    WWW: https://cran.r-project.org/web/packages/cachem/

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

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Sat Jan 30 21:52:18 2021	(r563437)
+++ head/databases/Makefile	Sat Jan 30 23:18:43 2021	(r563438)
@@ -8,6 +8,7 @@
     SUBDIR += R-cran-RPostgreSQL
     SUBDIR += R-cran-RSQLite
     SUBDIR += R-cran-RSQLite.extfuns
+    SUBDIR += R-cran-cachem
     SUBDIR += R-cran-fastmap
     SUBDIR += R-cran-sqldf
     SUBDIR += WWWdb

Added: head/databases/R-cran-cachem/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/R-cran-cachem/Makefile	Sat Jan 30 23:18:43 2021	(r563438)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	cachem
+PORTVERSION=	1.0.1
+CATEGORIES=	databases
+DISTNAME=	${PORTNAME}_${PORTVERSION}
+
+MAINTAINER=	tota at FreeBSD.org
+COMMENT=	Cache R Objects with Automatic Pruning
+
+LICENSE=	MIT
+
+CRAN_DEPENDS=	R-cran-rlang>0:devel/R-cran-rlang \
+		R-cran-fastmap>0:databases/R-cran-fastmap
+BUILD_DEPENDS=	${CRAN_DEPENDS}
+RUN_DEPENDS=	${CRAN_DEPENDS}
+
+USES=		cran:auto-plist,compiles
+
+.include <bsd.port.mk>

Added: head/databases/R-cran-cachem/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/R-cran-cachem/distinfo	Sat Jan 30 23:18:43 2021	(r563438)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1612026858
+SHA256 (cachem_1.0.1.tar.gz) = 8e65d0e84f6898d4307d6d848ed99d47f156fe31589b7e5a723cedde3d31b822
+SIZE (cachem_1.0.1.tar.gz) = 19386

Added: head/databases/R-cran-cachem/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/R-cran-cachem/pkg-descr	Sat Jan 30 23:18:43 2021	(r563438)
@@ -0,0 +1,5 @@
+Key-value stores with automatic pruning. Caches can limit either
+their total size or the age of the oldest object (or both),
+automatically pruning objects to maintain the constraints.
+
+WWW: https://cran.r-project.org/web/packages/cachem/


More information about the svn-ports-all mailing list