9100aba56d
Upstream changes: stringr 1.1.0 Add sample datasets: fruit, words and sentences. fixed(), regex(), and coll() now throw an error if you use them with anything other than a plain string (#60). I've clarified that the replacement for perl() is regex() not regexp() (#61). boundary() has improved defaults when splitting on non-word boundaries (#58, @lmullen). str_detect() now can detect boundaries (by checking for a str_count() > 0) (#120). str_subset() works similarly. str_extract() and str_extract_all() now work with boundary(). This is particularly useful if you want to extract logical constructs like words or sentences. str_extract_all() respects the simplify argument when used with fixed() matches. str_subset() now respects custom options for fixed() patterns (#79, @gagolews). str_replace() and str_replace_all() now behave correctly when a replacement string contains $s, \\\\1, etc. (#83, #99). str_split() gains a simplify argument to match str_extract_all() etc. str_view() and str_view_all() create HTML widgets that display regular expression matches (#96). word() returns NA for indexes greater than number of words (#112).
18 lines
468 B
Makefile
18 lines
468 B
Makefile
# $NetBSD: Makefile,v 1.3 2016/12/18 02:33:18 wen Exp $
|
|
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_R_CRAN:=contrib/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= ${R_HOMEPAGE_BASE}/stringr/
|
|
COMMENT= Make it easier to work with strings
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
R_PKGNAME= stringr
|
|
R_PKGVER= 1.1.0
|
|
|
|
DEPENDS= R-stringi>=0.4.1:../../textproc/R-stringi \
|
|
R-magrittr>=0:../../devel/R-magrittr
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../mk/bsd.pkg.mk"
|