From owner-svn-ports-all@freebsd.org Sun Jun 23 15:32:42 2019 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 9284B15D3CD4; Sun, 23 Jun 2019 15:32:42 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 355908FA59; Sun, 23 Jun 2019 15:32:42 +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 0064123AB5; Sun, 23 Jun 2019 15:32:42 +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 x5NFWf7R042211; Sun, 23 Jun 2019 15:32:41 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5NFWfQF042208; Sun, 23 Jun 2019 15:32:41 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201906231532.x5NFWfQF042208@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 23 Jun 2019 15:32:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504958 - in head/devel: . R-cran-Rdpack X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/devel: . R-cran-Rdpack X-SVN-Commit-Revision: 504958 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 355908FA59 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Sun, 23 Jun 2019 15:32:42 -0000 Author: tota Date: Sun Jun 23 15:32:40 2019 New Revision: 504958 URL: https://svnweb.freebsd.org/changeset/ports/504958 Log: - Add new port: devel/R-cran-Rdpack Functions for manipulation of R documentation objects, including functions reprompt() and ereprompt() for updating 'Rd' documentation for functions, methods and classes; 'Rd' macros for citations and import of references from 'bibtex' files for use in 'Rd' files and 'roxygen2' comments; 'Rd' macros for evaluating and inserting snippets of 'R' code and the results of its evaluation or creating graphics on the fly; and many functions for manipulation of references and Rd files. WWW: https://cran.r-project.org/web/packages/Rdpack/ Added: head/devel/R-cran-Rdpack/ head/devel/R-cran-Rdpack/Makefile (contents, props changed) head/devel/R-cran-Rdpack/distinfo (contents, props changed) head/devel/R-cran-Rdpack/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 23 15:28:18 2019 (r504957) +++ head/devel/Makefile Sun Jun 23 15:32:40 2019 (r504958) @@ -63,6 +63,7 @@ SUBDIR += R-cran-proto SUBDIR += R-cran-purrr SUBDIR += R-cran-randomForest + SUBDIR += R-cran-Rdpack SUBDIR += R-cran-registry SUBDIR += R-cran-repr SUBDIR += R-cran-reshape Added: head/devel/R-cran-Rdpack/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-Rdpack/Makefile Sun Jun 23 15:32:40 2019 (r504958) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= Rdpack +DISTVERSION= 0.11-0 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Update and Manipulate Rd Documentation Objects + +LICENSE= GPLv2+ + +CRAN_DEPENDS= R-cran-bibtex>=0.4.0:textproc/R-cran-bibtex \ + R-cran-gbRd>0:devel/R-cran-gbRd +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include Added: head/devel/R-cran-Rdpack/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-Rdpack/distinfo Sun Jun 23 15:32:40 2019 (r504958) @@ -0,0 +1,3 @@ +TIMESTAMP = 1558725430 +SHA256 (Rdpack_0.11-0.tar.gz) = 8fb449c80fbe931cdce51f728fb03a1978009ccce66fd6b9edacdc6ff4118d85 +SIZE (Rdpack_0.11-0.tar.gz) = 700853 Added: head/devel/R-cran-Rdpack/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-Rdpack/pkg-descr Sun Jun 23 15:32:40 2019 (r504958) @@ -0,0 +1,10 @@ +Functions for manipulation of R documentation objects, including +functions reprompt() and ereprompt() for updating 'Rd' documentation +for functions, methods and classes; 'Rd' macros for citations and +import of references from 'bibtex' files for use in 'Rd' files and +'roxygen2' comments; 'Rd' macros for evaluating and inserting +snippets of 'R' code and the results of its evaluation or creating +graphics on the fly; and many functions for manipulation of references +and Rd files. + +WWW: https://cran.r-project.org/web/packages/Rdpack/