From owner-svn-ports-all@freebsd.org Wed Aug 9 08:27:33 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC9B7DC68BD; Wed, 9 Aug 2017 08:27:33 +0000 (UTC) (envelope-from wen@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 mx1.freebsd.org (Postfix) with ESMTPS id 7A05967BB7; Wed, 9 Aug 2017 08:27:33 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v798RWTn090167; Wed, 9 Aug 2017 08:27:32 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v798RWpS090163; Wed, 9 Aug 2017 08:27:32 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201708090827.v798RWpS090163@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 9 Aug 2017 08:27:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r447602 - in head/devel: . R-cran-bindrcpp X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: in head/devel: . R-cran-bindrcpp X-SVN-Commit-Revision: 447602 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.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2017 08:27:33 -0000 Author: wen Date: Wed Aug 9 08:27:32 2017 New Revision: 447602 URL: https://svnweb.freebsd.org/changeset/ports/447602 Log: Provides an easy way to fill an environment with active bindings that call a C++ function. WWW: https://github.com/krlmlr/bindrcpp Added: head/devel/R-cran-bindrcpp/ head/devel/R-cran-bindrcpp/Makefile (contents, props changed) head/devel/R-cran-bindrcpp/distinfo (contents, props changed) head/devel/R-cran-bindrcpp/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Aug 9 08:25:47 2017 (r447601) +++ head/devel/Makefile Wed Aug 9 08:27:32 2017 (r447602) @@ -16,6 +16,7 @@ SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp SUBDIR += R-cran-bindr + SUBDIR += R-cran-bindrcpp SUBDIR += R-cran-bit SUBDIR += R-cran-bit64 SUBDIR += R-cran-bitops Added: head/devel/R-cran-bindrcpp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bindrcpp/Makefile Wed Aug 9 08:27:32 2017 (r447602) @@ -0,0 +1,21 @@ +# Created by: Wen Heping +# $FreeBSD$ + +PORTNAME= bindrcpp +DISTVERSION= 0.2 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Rcpp Interface to Active Bindings + +BUILD_DEPENDS= R-cran-Rcpp>=0.11.0:devel/R-cran-Rcpp \ + R-cran-bindr>=0:devel/R-cran-bindr \ + R-cran-plogr>=0:devel/R-cran-plogr +RUN_DEPENDS= R-cran-Rcpp>=0.11.0:devel/R-cran-Rcpp \ + R-cran-bindr>=0:devel/R-cran-bindr \ + R-cran-plogr>=0:devel/R-cran-plogr + +USES= cran:auto-plist,compiles + +.include Added: head/devel/R-cran-bindrcpp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bindrcpp/distinfo Wed Aug 9 08:27:32 2017 (r447602) @@ -0,0 +1,3 @@ +TIMESTAMP = 1502293272 +SHA256 (bindrcpp_0.2.tar.gz) = d0efa1313cb8148880f7902a4267de1dcedae916f28d9a0ef5911f44bf103450 +SIZE (bindrcpp_0.2.tar.gz) = 8089 Added: head/devel/R-cran-bindrcpp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bindrcpp/pkg-descr Wed Aug 9 08:27:32 2017 (r447602) @@ -0,0 +1,4 @@ +Provides an easy way to fill an environment with active +bindings that call a C++ function. + +WWW: https://github.com/krlmlr/bindrcpp