svn commit: r544368 - in head/devel: . R-cran-cpp11
TAKATSU Tomonari
tota at FreeBSD.org
Sat Aug 8 08:00:35 UTC 2020
Author: tota
Date: Sat Aug 8 08:00:33 2020
New Revision: 544368
URL: https://svnweb.freebsd.org/changeset/ports/544368
Log:
- Add new port: devel/R-cran-cpp11
Provides a header only, C++11 interface to R's C interface. Compared
to other approaches 'cpp11' strives to be safe against long jumps
from the C API as well as C++ exceptions, conform to normal R
function semantics and supports interaction with 'ALTREP' vectors.
WWW: https://cran.r-project.org/web/packages/cpp11/
Added:
head/devel/R-cran-cpp11/
head/devel/R-cran-cpp11/Makefile (contents, props changed)
head/devel/R-cran-cpp11/distinfo (contents, props changed)
head/devel/R-cran-cpp11/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Aug 8 07:31:00 2020 (r544367)
+++ head/devel/Makefile Sat Aug 8 08:00:33 2020 (r544368)
@@ -31,6 +31,7 @@
SUBDIR += R-cran-cli
SUBDIR += R-cran-clipr
SUBDIR += R-cran-covr
+ SUBDIR += R-cran-cpp11
SUBDIR += R-cran-crayon
SUBDIR += R-cran-data.table
SUBDIR += R-cran-doParallel
Added: head/devel/R-cran-cpp11/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/R-cran-cpp11/Makefile Sat Aug 8 08:00:33 2020 (r544368)
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+PORTNAME= cpp11
+PORTVERSION= 0.1.0
+CATEGORIES= devel
+DISTNAME= ${PORTNAME}_${PORTVERSION}
+
+MAINTAINER= tota at FreeBSD.org
+COMMENT= C++11 Interface for R's C Interface
+
+LICENSE= MIT
+
+USES= compiler:c++11-lang cran:auto-plist
+
+.include <bsd.port.mk>
Added: head/devel/R-cran-cpp11/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/R-cran-cpp11/distinfo Sat Aug 8 08:00:33 2020 (r544368)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1596471159
+SHA256 (cpp11_0.1.0.tar.gz) = 5db558a4f2a6dd33b426d957892a72129fa1b14d535669e09fc18480aec0bc74
+SIZE (cpp11_0.1.0.tar.gz) = 188218
Added: head/devel/R-cran-cpp11/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/R-cran-cpp11/pkg-descr Sat Aug 8 08:00:33 2020 (r544368)
@@ -0,0 +1,6 @@
+Provides a header only, C++11 interface to R's C interface. Compared
+to other approaches 'cpp11' strives to be safe against long jumps
+from the C API as well as C++ exceptions, conform to normal R
+function semantics and supports interaction with 'ALTREP' vectors.
+
+WWW: https://cran.r-project.org/web/packages/cpp11/
More information about the svn-ports-all
mailing list