- 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/
This commit is contained in:
TAKATSU Tomonari 2021-01-30 23:18:43 +00:00
parent 5ccbcd8fe8
commit a3613de797
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=563438
4 changed files with 29 additions and 0 deletions

View file

@ -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

View file

@ -0,0 +1,20 @@
# $FreeBSD$
PORTNAME= cachem
PORTVERSION= 1.0.1
CATEGORIES= databases
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= tota@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>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1612026858
SHA256 (cachem_1.0.1.tar.gz) = 8e65d0e84f6898d4307d6d848ed99d47f156fe31589b7e5a723cedde3d31b822
SIZE (cachem_1.0.1.tar.gz) = 19386

View file

@ -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/