From owner-svn-ports-head@FreeBSD.ORG Wed Aug 22 18:05:30 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8150E1065670; Wed, 22 Aug 2012 18:05:30 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6340B8FC1A; Wed, 22 Aug 2012 18:05:30 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7MI5U37072445; Wed, 22 Aug 2012 18:05:30 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7MI5UfU072440; Wed, 22 Aug 2012 18:05:30 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201208221805.q7MI5UfU072440@svn.freebsd.org> From: Steven Kreuzer Date: Wed, 22 Aug 2012 18:05:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r302952 - in head/devel: . R-cran-gsubfn X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2012 18:05:30 -0000 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 +# +# $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 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/