Date: Mon, 10 Aug 2015 12:36:54 +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: r393861 - in head/devel: . R-cran-pkgmaker Message-ID: <201508101236.t7ACasBU024598@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Mon Aug 10 12:36:54 2015 New Revision: 393861 URL: https://svnweb.freebsd.org/changeset/ports/393861 Log: - Add new port: devel/R-cran-pkgmaker This package provides some low-level utilities to use for package development. It currently provides managers for multiple package specific options and registries, vignette, unit test and bibtex related utilities. It serves as a base package for packages like NMF, RcppOctave, doRNG, and as an incubator package for other general purposes utilities, that will eventually be packaged separately. It is still under heavy development and changes in the interface(s) are more than likely to happen. WWW: https://cran.r-project.org/web/packages/pkgmaker/ Added: head/devel/R-cran-pkgmaker/ head/devel/R-cran-pkgmaker/Makefile (contents, props changed) head/devel/R-cran-pkgmaker/distinfo (contents, props changed) head/devel/R-cran-pkgmaker/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Aug 10 12:30:57 2015 (r393860) +++ head/devel/Makefile Mon Aug 10 12:36:54 2015 (r393861) @@ -31,6 +31,7 @@ SUBDIR += R-cran-magrittr SUBDIR += R-cran-memoise SUBDIR += R-cran-microbenchmark + SUBDIR += R-cran-pkgmaker SUBDIR += R-cran-plyr SUBDIR += R-cran-proto SUBDIR += R-cran-randomForest Added: head/devel/R-cran-pkgmaker/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-pkgmaker/Makefile Mon Aug 10 12:36:54 2015 (r393861) @@ -0,0 +1,22 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pkgmaker +PORTVERSION= 0.22 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Package development utilities + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +RUN_DEPENDS= R-cran-registry>0:${PORTSDIR}/devel/R-cran-registry \ + R-cran-digest>0:${PORTSDIR}/security/R-cran-digest \ + R-cran-stringr>0:${PORTSDIR}/textproc/R-cran-stringr \ + R-cran-xtable>0:${PORTSDIR}/textproc/R-cran-xtable + +USES= cran:auto-plist + +.include <bsd.port.mk> Added: head/devel/R-cran-pkgmaker/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-pkgmaker/distinfo Mon Aug 10 12:36:54 2015 (r393861) @@ -0,0 +1,2 @@ +SHA256 (pkgmaker_0.22.tar.gz) = 19ad78c16bd5757333e7abbd5eebcec081deb494c9a4b6eec6919a3747b3386f +SIZE (pkgmaker_0.22.tar.gz) = 351479 Added: head/devel/R-cran-pkgmaker/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-pkgmaker/pkg-descr Mon Aug 10 12:36:54 2015 (r393861) @@ -0,0 +1,10 @@ +This package provides some low-level utilities to use for package +development. It currently provides managers for multiple package +specific options and registries, vignette, unit test and bibtex +related utilities. It serves as a base package for packages like +NMF, RcppOctave, doRNG, and as an incubator package for other general +purposes utilities, that will eventually be packaged separately. +It is still under heavy development and changes in the interface(s) +are more than likely to happen. + +WWW: https://cran.r-project.org/web/packages/pkgmaker/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508101236.t7ACasBU024598>