From owner-svn-ports-head@FreeBSD.ORG Mon May 4 13:26:30 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E62285EA; Mon, 4 May 2015 13:26:29 +0000 (UTC) Received: from svn.freebsd.org (svn.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 C8F8D1E35; Mon, 4 May 2015 13:26:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t44DQTAY011264; Mon, 4 May 2015 13:26:29 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t44DQSrb011259; Mon, 4 May 2015 13:26:28 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201505041326.t44DQSrb011259@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 4 May 2015 13:26:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385404 - in head/textproc: . R-cran-stringi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 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: Mon, 04 May 2015 13:26:30 -0000 Author: tota Date: Mon May 4 13:26:28 2015 New Revision: 385404 URL: https://svnweb.freebsd.org/changeset/ports/385404 Log: - Add a new port: textproc/R-cran-stringi stringi (pronounced "stringy") is THE R package for fast, correct, consistent and convenient string/text processing in each locale and any native character encoding. The use of the ICU library gives R users a platform-independent set of functions known to Java, Perl, Python, PHP, and Ruby programmers. WWW: http://www.rexamine.com/resources/stringi/ Added: head/textproc/R-cran-stringi/ head/textproc/R-cran-stringi/Makefile (contents, props changed) head/textproc/R-cran-stringi/distinfo (contents, props changed) head/textproc/R-cran-stringi/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon May 4 13:21:17 2015 (r385403) +++ head/textproc/Makefile Mon May 4 13:26:28 2015 (r385404) @@ -6,6 +6,7 @@ SUBDIR += 2bsd-diff SUBDIR += R-cran-R2HTML SUBDIR += R-cran-XML + SUBDIR += R-cran-stringi SUBDIR += R-cran-stringr SUBDIR += R-cran-xtable SUBDIR += ack Added: head/textproc/R-cran-stringi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-stringi/Makefile Mon May 4 13:26:28 2015 (r385404) @@ -0,0 +1,18 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= stringi +DISTVERSION= 0.4-1 +CATEGORIES= textproc +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Character String Processing Facilities + +LICENSE= BSD3CLAUSE + +LIB_DEPENDS= libicui18n.so:${PORTSDIR}/devel/icu + +USES= cran:auto-plist + +.include Added: head/textproc/R-cran-stringi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-stringi/distinfo Mon May 4 13:26:28 2015 (r385404) @@ -0,0 +1,2 @@ +SHA256 (stringi_0.4-1.tar.gz) = d22e9237ca685f35465503f29efdd5aeb5b7091491204aa0db69e65d592a2f06 +SIZE (stringi_0.4-1.tar.gz) = 3461563 Added: head/textproc/R-cran-stringi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-stringi/pkg-descr Mon May 4 13:26:28 2015 (r385404) @@ -0,0 +1,7 @@ +stringi (pronounced "stringy") is THE R package for fast, correct, +consistent and convenient string/text processing in each locale and +any native character encoding. The use of the ICU library gives R +users a platform-independent set of functions known to Java, Perl, +Python, PHP, and Ruby programmers. + +WWW: http://www.rexamine.com/resources/stringi/