textproc/R-stringr: Update to 1.2.0
Notable changes: - str_match_all() now returns NA if an optional group doesn't match (previously it returned ""). This is more consistent with str_match() and other match failures. - In str_replace(), replacement can now be a function that is called once for each match and who's return value is used to replace the match. - New str_which() mimics grep(). - A new vignette (vignette("regular-expressions")) describes the details of the regular expressions supported by stringr. The main vignette (vignette("stringr")) has been updated to give a high-level overview of the package.
This commit is contained in:
parent
0b22020bf5
commit
859dc1fda8
2 changed files with 9 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.3 2016/12/18 02:33:18 wen Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2018/02/05 18:58:56 minskim Exp $
|
||||
|
||||
CATEGORIES= textproc
|
||||
MASTER_SITES= ${MASTER_SITE_R_CRAN:=contrib/}
|
||||
|
@ -9,10 +9,12 @@ COMMENT= Make it easier to work with strings
|
|||
LICENSE= gnu-gpl-v2
|
||||
|
||||
R_PKGNAME= stringr
|
||||
R_PKGVER= 1.1.0
|
||||
R_PKGVER= 1.2.0
|
||||
|
||||
DEPENDS= R-stringi>=0.4.1:../../textproc/R-stringi \
|
||||
R-magrittr>=0:../../devel/R-magrittr
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
||||
.include "../../math/R/Makefile.extension"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.4 2016/12/18 02:33:18 wen Exp $
|
||||
$NetBSD: distinfo,v 1.5 2018/02/05 18:58:56 minskim Exp $
|
||||
|
||||
SHA1 (R/stringr_1.1.0.tar.gz) = d20cd31e6f0bea3267c9cb70dd457cf4702e6170
|
||||
RMD160 (R/stringr_1.1.0.tar.gz) = 972a684e6cf2b18bc5fe13fa82deb19e30711869
|
||||
SHA512 (R/stringr_1.1.0.tar.gz) = 68a1a0695a776f6a23c0801a80ed96db05ef1bd8821b6cb23baba56a6896cdaa279b53b61a17fe1827159f9a86243137d5f7e6a9594fb0ba5054496576bf8e3d
|
||||
Size (R/stringr_1.1.0.tar.gz) = 63174 bytes
|
||||
SHA1 (R/stringr_1.2.0.tar.gz) = c53001e1eb12e18935939a54ab721b042d71b27e
|
||||
RMD160 (R/stringr_1.2.0.tar.gz) = 0e23d2643037c9a53df18f4204c47e5ced694460
|
||||
SHA512 (R/stringr_1.2.0.tar.gz) = 4c8284a45d382de0d8147c07c05f49817e78c2c34de398ec0129d4028fcb1f8efc12453344b7c117343dc9d01ff4e2cdf757e34b96bd18d79ee084436db1e350
|
||||
Size (R/stringr_1.2.0.tar.gz) = 94095 bytes
|
||||
|
|
Loading…
Reference in a new issue