From owner-svn-ports-head@freebsd.org Sat Aug 8 08:00:35 2020 Return-Path: Delivered-To: svn-ports-head@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 4546A3A3C00; Sat, 8 Aug 2020 08:00:35 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BNvmM0V7Jz4Sww; Sat, 8 Aug 2020 08:00:35 +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 D00DA256C8; Sat, 8 Aug 2020 08:00:34 +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 07880YoH012320; Sat, 8 Aug 2020 08:00:34 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 07880YnY012314; Sat, 8 Aug 2020 08:00:34 GMT (envelope-from tota@FreeBSD.org) Message-Id: <202008080800.07880YnY012314@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 8 Aug 2020 08:00:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r544368 - in head/devel: . R-cran-cpp11 X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/devel: . R-cran-cpp11 X-SVN-Commit-Revision: 544368 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Aug 2020 08:00:35 -0000 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@FreeBSD.org +COMMENT= C++11 Interface for R's C Interface + +LICENSE= MIT + +USES= compiler:c++11-lang cran:auto-plist + +.include 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/