From owner-svn-ports-all@freebsd.org Mon Aug 10 12:36:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC26A99D0FF; Mon, 10 Aug 2015 12:36:55 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DAB2493A; Mon, 10 Aug 2015 12:36:55 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ACatq4024604; Mon, 10 Aug 2015 12:36:55 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ACasBU024598; Mon, 10 Aug 2015 12:36:54 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508101236.t7ACasBU024598@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 10 Aug 2015 12:36:54 +0000 (UTC) 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 X-SVN-Group: ports-head 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.20 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: Mon, 10 Aug 2015 12:36:56 -0000 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 +# $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 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/