Date: Wed, 22 Aug 2012 18:05:30 +0000 (UTC) From: Steven Kreuzer <skreuzer@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r302952 - in head/devel: . R-cran-gsubfn Message-ID: <201208221805.q7MI5UfU072440@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: skreuzer Date: Wed Aug 22 18:05:29 2012 New Revision: 302952 URL: http://svn.freebsd.org/changeset/ports/302952 Log: gsubfn is an R package used for string matching, substitution and parsing. A seemingly small generalization of gsub, namely allow the replacement string to be a replacement function, list, formula or proto object, can result in increased power and applicability. The resulting function, gsubfn is the namesake of this package. WWW: https://code.google.com/p/gsubfn/ Added: head/devel/R-cran-gsubfn/ head/devel/R-cran-gsubfn/Makefile (contents, props changed) head/devel/R-cran-gsubfn/distinfo (contents, props changed) head/devel/R-cran-gsubfn/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Aug 22 18:04:16 2012 (r302951) +++ head/devel/Makefile Wed Aug 22 18:05:29 2012 (r302952) @@ -12,6 +12,7 @@ SUBDIR += R-cran-bitops SUBDIR += R-cran-caret SUBDIR += R-cran-foreach + SUBDIR += R-cran-gsubfn SUBDIR += R-cran-iterators SUBDIR += R-cran-itertools SUBDIR += R-cran-memoise Added: head/devel/R-cran-gsubfn/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-gsubfn/Makefile Wed Aug 22 18:05:29 2012 (r302952) @@ -0,0 +1,23 @@ +# New ports collection makefile for: R-cran-gsubfn +# Date created: 2012-08-21 +# Whom: Steven Kreuzer <skreuzer@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= gsubfn +DISTVERSION= 0.6-4 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= R package used for string matching, substitution and parsing + +LICENSE= GPLv2 + +RUN_DEPENDS= R-cran-proto>=0.3.9.2_6:${PORTSDIR}/devel/R-cran-proto + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include <bsd.port.mk> Added: head/devel/R-cran-gsubfn/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-gsubfn/distinfo Wed Aug 22 18:05:29 2012 (r302952) @@ -0,0 +1,2 @@ +SHA256 (gsubfn_0.6-4.tar.gz) = fcbb8be5925d14ff5cfd2f7453d0e5475c6025c02c383dd3f6b69a11f4629ebf +SIZE (gsubfn_0.6-4.tar.gz) = 620027 Added: head/devel/R-cran-gsubfn/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-gsubfn/pkg-descr Wed Aug 22 18:05:29 2012 (r302952) @@ -0,0 +1,7 @@ +gsubfn is an R package used for string matching, substitution and parsing. A +seemingly small generalization of gsub, namely allow the replacement string to +be a replacement function, list, formula or proto object, can result in +increased power and applicability. The resulting function, gsubfn is the +namesake of this package. + +WWW: https://code.google.com/p/gsubfn/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208221805.q7MI5UfU072440>