From owner-svn-ports-all@freebsd.org Wed Apr 11 05:53:35 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 005DDF99247; Wed, 11 Apr 2018 05:53:34 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9BE8C76574; Wed, 11 Apr 2018 05:53:34 +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 96B49183D9; Wed, 11 Apr 2018 05:53: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 w3B5rY7i069275; Wed, 11 Apr 2018 05:53:34 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3B5rYT3069271; Wed, 11 Apr 2018 05:53:34 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201804110553.w3B5rYT3069271@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 11 Apr 2018 05:53:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467026 - in head/math: . R-cran-geometry X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/math: . R-cran-geometry X-SVN-Commit-Revision: 467026 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.25 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, 11 Apr 2018 05:53:35 -0000 Author: tota Date: Wed Apr 11 05:53:33 2018 New Revision: 467026 URL: https://svnweb.freebsd.org/changeset/ports/467026 Log: - Add new port: math/R-cran-geometry Makes the qhull library (www.qhull.org) available in R, in a similar manner as in Octave and MATLAB. Qhull computes convex hulls, Delaunay triangulations, halfspace intersections about a point, Voronoi diagrams, furthest-site Delaunay triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d, and higher dimensions. It implements the Quickhull algorithm for computing the convex hull. Qhull does not support constrained Delaunay triangulations, or mesh generation of non-convex objects, but the package does include some R functions that allow for this. Currently the package only gives access to Delaunay triangulation and convex hull computation. WWW: https://cran.r-project.org/web/packages/geometry/ Added: head/math/R-cran-geometry/ head/math/R-cran-geometry/Makefile (contents, props changed) head/math/R-cran-geometry/distinfo (contents, props changed) head/math/R-cran-geometry/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Apr 11 05:25:21 2018 (r467025) +++ head/math/Makefile Wed Apr 11 05:53:33 2018 (r467026) @@ -47,6 +47,7 @@ SUBDIR += R-cran-forecast SUBDIR += R-cran-fracdiff SUBDIR += R-cran-geepack + SUBDIR += R-cran-geometry SUBDIR += R-cran-gmp SUBDIR += R-cran-gower SUBDIR += R-cran-gpclib Added: head/math/R-cran-geometry/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-geometry/Makefile Wed Apr 11 05:53:33 2018 (r467026) @@ -0,0 +1,21 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= geometry +DISTVERSION= 0.3-6 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Mesh Generation and Surface Tesselation + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cran:auto-plist,compiles + +CRAN_DEPENDS= R-cran-magic>0:math/R-cran-magic +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +.include Added: head/math/R-cran-geometry/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-geometry/distinfo Wed Apr 11 05:53:33 2018 (r467026) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523349959 +SHA256 (geometry_0.3-6.tar.gz) = 2be231ac99171367635cd957f27da77705329df97520ab86f655839c41dc0968 +SIZE (geometry_0.3-6.tar.gz) = 480200 Added: head/math/R-cran-geometry/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-geometry/pkg-descr Wed Apr 11 05:53:33 2018 (r467026) @@ -0,0 +1,12 @@ +Makes the qhull library (www.qhull.org) available in R, in a similar +manner as in Octave and MATLAB. Qhull computes convex hulls, Delaunay +triangulations, halfspace intersections about a point, Voronoi +diagrams, furthest-site Delaunay triangulations, and furthest-site +Voronoi diagrams. It runs in 2-d, 3-d, 4-d, and higher dimensions. +It implements the Quickhull algorithm for computing the convex hull. +Qhull does not support constrained Delaunay triangulations, or mesh +generation of non-convex objects, but the package does include some +R functions that allow for this. Currently the package only gives +access to Delaunay triangulation and convex hull computation. + +WWW: https://cran.r-project.org/web/packages/geometry/