From owner-dev-commits-ports-all@freebsd.org Fri Jun 11 11:54:04 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C0ED465DC05; Fri, 11 Jun 2021 11:54:04 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4G1fQ455Zzz4ngV; Fri, 11 Jun 2021 11:54:04 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8CB1022513; Fri, 11 Jun 2021 11:54:04 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 15BBs4cH036622; Fri, 11 Jun 2021 11:54:04 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 15BBs461036621; Fri, 11 Jun 2021 11:54:04 GMT (envelope-from git) Date: Fri, 11 Jun 2021 11:54:04 GMT Message-Id: <202106111154.15BBs461036621@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: TAKATSU Tomonari Subject: git: 62845ed5f960 - main - math/R-cran-wk: Add new port MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: tota X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 62845ed5f9608185a76ac377d77e09fa648f1f86 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jun 2021 11:54:04 -0000 The branch main has been updated by tota: URL: https://cgit.FreeBSD.org/ports/commit/?id=62845ed5f9608185a76ac377d77e09fa648f1f86 commit 62845ed5f9608185a76ac377d77e09fa648f1f86 Author: TAKATSU Tomonari AuthorDate: 2021-06-10 16:13:45 +0000 Commit: TAKATSU Tomonari CommitDate: 2021-06-11 11:53:58 +0000 math/R-cran-wk: Add new port Provides a minimal R and C++ API for parsing well-known binary and well-known text representation of geometries to and from R-native formats. Well-known binary is compact and fast to parse; well-known text is human-readable and is useful for writing tests. These formats are only useful in R if the information they contain can be accessed in R, for which high-performance functions are provided here. WWW: https://cran.r-project.org/web/packages/wk/ --- math/Makefile | 1 + math/R-cran-wk/Makefile | 17 +++++++++++++++++ math/R-cran-wk/distinfo | 3 +++ math/R-cran-wk/pkg-descr | 8 ++++++++ 4 files changed, 29 insertions(+) diff --git a/math/Makefile b/math/Makefile index 1f6b0b5cab9c..064f5026bba0 100644 --- a/math/Makefile +++ b/math/Makefile @@ -122,6 +122,7 @@ SUBDIR += R-cran-truncnorm SUBDIR += R-cran-units SUBDIR += R-cran-uroot + SUBDIR += R-cran-wk SUBDIR += R-cran-xts SUBDIR += R-cran-zoo SUBDIR += SCIP diff --git a/math/R-cran-wk/Makefile b/math/R-cran-wk/Makefile new file mode 100644 index 000000000000..acf9c3b1055d --- /dev/null +++ b/math/R-cran-wk/Makefile @@ -0,0 +1,17 @@ +PORTNAME= wk +PORTVERSION= 0.4.1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Lightweight Well-Known Geometry Parsing + +LICENSE= MIT + +CRAN_DEPENDS= R-cran-cpp11>0:devel/R-cran-cpp11 +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= compiler:c++11-lang cran:auto-plist,compiles + +.include diff --git a/math/R-cran-wk/distinfo b/math/R-cran-wk/distinfo new file mode 100644 index 000000000000..a0527f0acbe5 --- /dev/null +++ b/math/R-cran-wk/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1623340892 +SHA256 (wk_0.4.1.tar.gz) = daa7351af0bd657740972016906c686f335b8fa922ba10250e5000ddc2bb8950 +SIZE (wk_0.4.1.tar.gz) = 111779 diff --git a/math/R-cran-wk/pkg-descr b/math/R-cran-wk/pkg-descr new file mode 100644 index 000000000000..463f6d5af6e2 --- /dev/null +++ b/math/R-cran-wk/pkg-descr @@ -0,0 +1,8 @@ +Provides a minimal R and C++ API for parsing well-known binary and +well-known text representation of geometries to and from R-native +formats. Well-known binary is compact and fast to parse; well-known +text is human-readable and is useful for writing tests. These formats +are only useful in R if the information they contain can be accessed +in R, for which high-performance functions are provided here. + +WWW: https://cran.r-project.org/web/packages/wk/