1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

- Add a new port: textproc/R-cran-stringr

stringr is a set of simple wrappers that make R's string functions
  more consistent, simpler and easier to use. It does this by ensuring
  that: function and argument names (and positions) are consistent,
  all functions deal with NA's and zero length character appropriately,
  and the output data structures from each function matches the input
  data structures of other functions.

  WWW:	http://cran.r-project.org/web/packages/stringr/
This commit is contained in:
TAKATSU Tomonari 2012-02-07 14:35:21 +00:00
parent 17d4f3cfff
commit acdafc1b38
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=290592
4 changed files with 34 additions and 0 deletions

View File

@ -5,6 +5,7 @@
SUBDIR += 2bsd-diff
SUBDIR += R-cran-XML
SUBDIR += R-cran-stringr
SUBDIR += R-cran-xtable
SUBDIR += add-css-links
SUBDIR += af-aspell

View File

@ -0,0 +1,23 @@
# New ports collection makefile for: R-cran-stringr
# Date created: 2012-02-07
# Whom: TAKATSU Tomonari <tota@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= stringr
PORTVERSION= 0.6
CATEGORIES= textproc
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= tota@FreeBSD.org
COMMENT= Make it easier to work with strings
LICENSE= GPLv2
RUN_DEPENDS= R-cran-plyr>0:${PORTSDIR}/devel/R-cran-plyr
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (stringr_0.6.tar.gz) = 7ee84919c3902f96cd3b18292812538566e45837e930d245dd4fc36d7085686b
SIZE (stringr_0.6.tar.gz) = 20551

View File

@ -0,0 +1,8 @@
stringr is a set of simple wrappers that make R's string functions
more consistent, simpler and easier to use. It does this by ensuring
that: function and argument names (and positions) are consistent,
all functions deal with NA's and zero length character appropriately,
and the output data structures from each function matches the input
data structures of other functions.
WWW: http://cran.r-project.org/web/packages/stringr/