From owner-svn-ports-all@freebsd.org Sat Dec 17 06:52:41 2016 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 EF7DAC847BE; Sat, 17 Dec 2016 06:52:41 +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 mx1.freebsd.org (Postfix) with ESMTPS id AFBF6CF7; Sat, 17 Dec 2016 06:52:41 +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 uBH6qeqb030892; Sat, 17 Dec 2016 06:52:40 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBH6qeej030888; Sat, 17 Dec 2016 06:52:40 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201612170652.uBH6qeej030888@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 17 Dec 2016 06:52:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428705 - in head/math: . R-cran-backports 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: Sat, 17 Dec 2016 06:52:42 -0000 Author: tota Date: Sat Dec 17 06:52:40 2016 New Revision: 428705 URL: https://svnweb.freebsd.org/changeset/ports/428705 Log: - Add new port: math/R-cran-backports Implementations of functions which have been introduced in R since version 3.0.0. The backports are conditionally exported which results in R resolving the function names to the version shipped with R (if available) and uses the implemented backports as fallback. This way package developers can make use of the new functions without worrying about the minimum required R version. WWW: https://cran.r-project.org/web/packages/backports/ Added: head/math/R-cran-backports/ head/math/R-cran-backports/Makefile (contents, props changed) head/math/R-cran-backports/distinfo (contents, props changed) head/math/R-cran-backports/pkg-descr (contents, props changed) Modified: head/math/Makefile (contents, props changed) Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Dec 17 06:11:02 2016 (r428704) +++ head/math/Makefile Sat Dec 17 06:52:40 2016 (r428705) @@ -26,6 +26,7 @@ SUBDIR += R-cran-VGAM SUBDIR += R-cran-Zelig SUBDIR += R-cran-assertthat + SUBDIR += R-cran-backports SUBDIR += R-cran-bdsmatrix SUBDIR += R-cran-car SUBDIR += R-cran-coda Added: head/math/R-cran-backports/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-backports/Makefile Sat Dec 17 06:52:40 2016 (r428705) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= backports +PORTVERSION= 1.0.4 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Reimplementations of Functions Introduced Since R-3.0.0 + +LICENSE= GPLv2 + +USES= cran:auto-plist + +.include Added: head/math/R-cran-backports/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-backports/distinfo Sat Dec 17 06:52:40 2016 (r428705) @@ -0,0 +1,3 @@ +TIMESTAMP = 1481956875 +SHA256 (backports_1.0.4.tar.gz) = c2c5df9be73fd1162f9cb7fb7e807c99b758cc992fd10a2a47f76e6b73815a3b +SIZE (backports_1.0.4.tar.gz) = 5818 Added: head/math/R-cran-backports/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-backports/pkg-descr Sat Dec 17 06:52:40 2016 (r428705) @@ -0,0 +1,8 @@ +Implementations of functions which have been introduced in R since +version 3.0.0. The backports are conditionally exported which results +in R resolving the function names to the version shipped with R (if +available) and uses the implemented backports as fallback. This way +package developers can make use of the new functions without worrying +about the minimum required R version. + +WWW: https://cran.r-project.org/web/packages/backports/