From owner-svn-ports-all@freebsd.org Tue Jul 14 21:26:47 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 3DDA59A11AC; Tue, 14 Jul 2015 21:26:47 +0000 (UTC) (envelope-from skreuzer@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 139DB1D6F; Tue, 14 Jul 2015 21:26:47 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from svnmir.geo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6ELQk9Z059887; Tue, 14 Jul 2015 21:26:46 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by svnmir.geo.freebsd.org (8.14.9/8.14.9/Submit) id t6ELQj5S059882; Tue, 14 Jul 2015 21:26:45 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <201507142126.t6ELQj5S059882@svnmir.geo.freebsd.org> X-Authentication-Warning: svnmir.geo.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Tue, 14 Jul 2015 21:26:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r392100 - in head/textproc: . R-cran-pystr 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: Tue, 14 Jul 2015 21:26:47 -0000 Author: skreuzer Date: Tue Jul 14 21:26:45 2015 New Revision: 392100 URL: https://svnweb.freebsd.org/changeset/ports/392100 Log: String operations the Python way - a package for those of us who miss Python's string methods while we're working in R. WWW: http://cran.r-project.org/web/pystr/ Added: head/textproc/R-cran-pystr/ head/textproc/R-cran-pystr/Makefile (contents, props changed) head/textproc/R-cran-pystr/distinfo (contents, props changed) head/textproc/R-cran-pystr/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Jul 14 21:25:37 2015 (r392099) +++ head/textproc/Makefile Tue Jul 14 21:26:45 2015 (r392100) @@ -6,6 +6,7 @@ SUBDIR += 2bsd-diff SUBDIR += R-cran-R2HTML SUBDIR += R-cran-XML + SUBDIR += R-cran-pystr SUBDIR += R-cran-stringi SUBDIR += R-cran-stringr SUBDIR += R-cran-xtable Added: head/textproc/R-cran-pystr/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-pystr/Makefile Tue Jul 14 21:26:45 2015 (r392100) @@ -0,0 +1,14 @@ +# Created by: Steven Kreuzer +# $FreeBSD$ + +PORTNAME= pystr +DISTVERSION= 1.0.0 +CATEGORIES= textproc +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= String operations the Python way + +USES= cran:auto-plist + +.include Added: head/textproc/R-cran-pystr/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-pystr/distinfo Tue Jul 14 21:26:45 2015 (r392100) @@ -0,0 +1,2 @@ +SHA256 (pystr_1.0.0.tar.gz) = 733eb4d92ab6dc1a614045ec527504b47ff7830411a39e18a682221a77bec0d7 +SIZE (pystr_1.0.0.tar.gz) = 21719 Added: head/textproc/R-cran-pystr/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-pystr/pkg-descr Tue Jul 14 21:26:45 2015 (r392100) @@ -0,0 +1,4 @@ +String operations the Python way - a package for those of us who miss Python's +string methods while we're working in R. + +WWW: http://cran.r-project.org/web/pystr/