From owner-svn-ports-all@freebsd.org  Sat Jan 30 23:18:44 2021
Return-Path: <owner-svn-ports-all@freebsd.org>
Delivered-To: svn-ports-all@mailman.nyi.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1])
 by mailman.nyi.freebsd.org (Postfix) with ESMTP id 70CA54FC3E6;
 Sat, 30 Jan 2021 23:18:44 +0000 (UTC)
 (envelope-from tota@FreeBSD.org)
Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org
 [IPv6:2610:1c1:1:606c::19:3])
 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256
 client-signature RSA-PSS (4096 bits) client-digest SHA256)
 (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 4DSqs02kQjz3QqG;
 Sat, 30 Jan 2021 23:18:44 +0000 (UTC)
 (envelope-from tota@FreeBSD.org)
Received: from repo.freebsd.org (repo.freebsd.org
 [IPv6:2610:1c1:1:6068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 509D51DF42;
 Sat, 30 Jan 2021 23:18:44 +0000 (UTC)
 (envelope-from tota@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10UNIiSr098655;
 Sat, 30 Jan 2021 23:18:44 GMT (envelope-from tota@FreeBSD.org)
Received: (from tota@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10UNIh26098652;
 Sat, 30 Jan 2021 23:18:43 GMT (envelope-from tota@FreeBSD.org)
Message-Id: <202101302318.10UNIh26098652@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: tota set sender to
 tota@FreeBSD.org using -f
From: TAKATSU Tomonari <tota@FreeBSD.org>
Date: Sat, 30 Jan 2021 23:18:43 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r563438 - in head/databases: . R-cran-cachem
X-SVN-Group: ports-head
X-SVN-Commit-Author: tota
X-SVN-Commit-Paths: in head/databases: . R-cran-cachem
X-SVN-Commit-Revision: 563438
X-SVN-Commit-Repository: ports
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-all@freebsd.org
X-Mailman-Version: 2.1.34
Precedence: list
List-Id: SVN commit messages for the ports tree <svn-ports-all.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-ports-all>,
 <mailto:svn-ports-all-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-all/>
List-Post: <mailto:svn-ports-all@freebsd.org>
List-Help: <mailto:svn-ports-all-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-ports-all>,
 <mailto:svn-ports-all-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 30 Jan 2021 23:18:44 -0000

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