From owner-svn-ports-all@freebsd.org Tue Jun 27 08:03:10 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 E2ADEDA426F; Tue, 27 Jun 2017 08:03:10 +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 BBEE880903; Tue, 27 Jun 2017 08:03:10 +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 v5R839io083918; Tue, 27 Jun 2017 08:03:09 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5R839L7083914; Tue, 27 Jun 2017 08:03:09 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201706270803.v5R839L7083914@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 27 Jun 2017 08:03:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444445 - in head/math: . R-cran-sf 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, 27 Jun 2017 08:03:11 -0000 Author: tota Date: Tue Jun 27 08:03:09 2017 New Revision: 444445 URL: https://svnweb.freebsd.org/changeset/ports/444445 Log: - Add new port math/R-cran-sf Support for simple features, a standardized way to encode spatial vector data. Binds to GDAL for reading and writing data, to GEOS for geometrical operations, and to Proj.4 for projection conversions and datum transformations. WWW: https://cran.r-project.org/web/packages/sf/ Submitted by: Rainer Hurling (via private e-mail) Added: head/math/R-cran-sf/ head/math/R-cran-sf/Makefile (contents, props changed) head/math/R-cran-sf/distinfo (contents, props changed) head/math/R-cran-sf/pkg-descr (contents, props changed) Modified: head/math/Makefile (contents, props changed) Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Jun 27 07:18:02 2017 (r444444) +++ head/math/Makefile Tue Jun 27 08:03:09 2017 (r444445) @@ -67,6 +67,7 @@ SUBDIR += R-cran-quantreg SUBDIR += R-cran-rgenoud SUBDIR += R-cran-sandwich + SUBDIR += R-cran-sf SUBDIR += R-cran-sm SUBDIR += R-cran-sp SUBDIR += R-cran-spdep Added: head/math/R-cran-sf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-sf/Makefile Tue Jun 27 08:03:09 2017 (r444445) @@ -0,0 +1,26 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= sf +DISTVERSION= 0.5-1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Simple Features for R + +LICENSE= GPLv2 + +CRAN_DEPENDS= R-cran-Rcpp>0:devel/R-cran-Rcpp \ + R-cran-DBI>0:databases/R-cran-DBI \ + R-cran-units>=0.4:math/R-cran-units \ + R-cran-magrittr>0:devel/R-cran-magrittr +LIB_DEPENDS= libgdal.so:graphics/gdal \ + libgeos.so:graphics/geos \ + libproj.so:graphics/proj +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include Added: head/math/R-cran-sf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-sf/distinfo Tue Jun 27 08:03:09 2017 (r444445) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498443880 +SHA256 (sf_0.5-1.tar.gz) = af7fc4046c999c37e607eeaf3cd386ed58f006e2da64bfa355b15f302f52e7fb +SIZE (sf_0.5-1.tar.gz) = 4073881 Added: head/math/R-cran-sf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-sf/pkg-descr Tue Jun 27 08:03:09 2017 (r444445) @@ -0,0 +1,6 @@ +Support for simple features, a standardized way to encode spatial +vector data. Binds to GDAL for reading and writing data, to GEOS +for geometrical operations, and to Proj.4 for projection conversions +and datum transformations. + +WWW: https://cran.r-project.org/web/packages/sf/