From owner-svn-ports-all@freebsd.org Tue Jun 13 10:44:53 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 BB712BF0948; Tue, 13 Jun 2017 10:44:53 +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 89D9F76A55; Tue, 13 Jun 2017 10:44:53 +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 v5DAiqSM032897; Tue, 13 Jun 2017 10:44:52 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5DAiqvK032893; Tue, 13 Jun 2017 10:44:52 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201706131044.v5DAiqvK032893@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Tue, 13 Jun 2017 10:44:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443498 - in head/devel: . R-cran-bindr X-SVN-Group: ports-head 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: Tue, 13 Jun 2017 10:44:53 -0000 Author: wen Date: Tue Jun 13 10:44:52 2017 New Revision: 443498 URL: https://svnweb.freebsd.org/changeset/ports/443498 Log: Provides a simple interface for creating active bindings where the bound function accepts additional arguments. WWW: https://cran.r-project.org/web/packages/bindr/ Added: head/devel/R-cran-bindr/ head/devel/R-cran-bindr/Makefile (contents, props changed) head/devel/R-cran-bindr/distinfo (contents, props changed) head/devel/R-cran-bindr/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jun 13 10:38:23 2017 (r443497) +++ head/devel/Makefile Tue Jun 13 10:44:52 2017 (r443498) @@ -15,6 +15,7 @@ SUBDIR += R-cran-R6 SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp + SUBDIR += R-cran-bindr SUBDIR += R-cran-bit SUBDIR += R-cran-bit64 SUBDIR += R-cran-bitops Added: head/devel/R-cran-bindr/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bindr/Makefile Tue Jun 13 10:44:52 2017 (r443498) @@ -0,0 +1,16 @@ +# Created by: Wen Heping +# $FreeBSD$ + +PORTNAME= bindr +PORTVERSION= 0.1 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Parametrized Active Bindings + +LICENSE= GPLv2+ + +USES= cran:auto-plist,compiles + +.include Added: head/devel/R-cran-bindr/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bindr/distinfo Tue Jun 13 10:44:52 2017 (r443498) @@ -0,0 +1,3 @@ +TIMESTAMP = 1497340448 +SHA256 (bindr_0.1.tar.gz) = cca166612eeafd6e1c961b34aaf177f9b47f8b4bc37520e277b9920eaa8b2535 +SIZE (bindr_0.1.tar.gz) = 5928 Added: head/devel/R-cran-bindr/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bindr/pkg-descr Tue Jun 13 10:44:52 2017 (r443498) @@ -0,0 +1,4 @@ +Provides a simple interface for creating active bindings where +the bound function accepts additional arguments. + +WWW: https://cran.r-project.org/web/packages/bindr/