Date: Sun, 23 Jun 2019 15:32:41 +0000 (UTC) From: TAKATSU Tomonari <tota@FreeBSD.org> 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 Message-ID: <201906231532.x5NFWfQF042208@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906231532.x5NFWfQF042208>