[med-svn] [r-cran-stringr] branch master updated (7656add -> f2c7060)
Andreas Tille
tille at debian.org
Sun Jun 28 06:07:53 UTC 2015
This is an automated email from the git hooks/post-receive script.
tille pushed a change to branch master
in repository r-cran-stringr.
from 7656add Upload to unstable
new 2742b4e Imported Upstream version 1.0.0
new 46d1cff Merge tag 'upstream/1.0.0'
new 5241e87 New upstream version
new f2c7060 New dependencies
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
DESCRIPTION | 39 ++--
MD5 | 128 ++++++------
NAMESPACE | 16 ++
NEWS | 81 --------
R/c.r | 45 +++--
R/case.R | 31 +++
R/checks.r | 22 ---
R/conv.R | 17 ++
R/count.r | 42 ++--
R/detect.r | 50 +++--
R/dup.r | 22 +--
R/extract.r | 73 +++----
R/length.r | 35 +++-
R/locate.r | 116 ++++-------
R/match.r | 88 ++++-----
R/modifiers.r | 178 ++++++++++++-----
R/pad-trim.r | 69 +++----
R/replace.r | 103 ++++++----
R/sort.R | 30 +++
R/split.r | 128 +++++-------
R/stringr.R | 5 +
R/sub.r | 95 ++++-----
R/subset.R | 31 +++
R/utils.R | 9 +
R/utils.r | 1 -
R/vectorise.r | 38 ----
R/word.r | 6 +-
R/wrap.r | 18 +-
README.md | 49 +++--
build/vignette.rds | Bin 0 -> 211 bytes
debian/changelog | 7 +
inst/doc/stringr.R | 65 +++++++
inst/doc/stringr.Rmd | 201 +++++++++++++++++++
inst/doc/stringr.html | 267 ++++++++++++++++++++++++++
inst/tests/test-check.r | 22 ---
man/case.Rd | 34 ++++
man/fixed.Rd | 27 ---
man/ignore.case.Rd | 24 ---
man/invert_match.Rd | 13 +-
man/modifier-deprecated.Rd | 17 ++
man/modifiers.Rd | 87 +++++++++
man/perl.Rd | 26 ---
man/pipe.Rd | 13 ++
man/str_c.Rd | 48 +++--
man/str_conv.Rd | 25 +++
man/str_count.Rd | 43 +++--
man/str_detect.Rd | 35 ++--
man/str_dup.Rd | 13 +-
man/str_extract.Rd | 59 ++++--
man/str_extract_all.Rd | 35 ----
man/str_length.Rd | 38 +++-
man/str_locate.Rd | 63 +++---
man/str_locate_all.Rd | 46 -----
man/str_match.Rd | 39 ++--
man/str_match_all.Rd | 33 ----
man/str_order.Rd | 40 ++++
man/str_pad.Rd | 27 +--
man/str_replace.Rd | 59 +++---
man/str_replace_all.Rd | 46 -----
man/str_replace_na.Rd | 28 +++
man/str_split.Rd | 52 +++--
man/str_split_fixed.Rd | 40 ----
man/str_sub.Rd | 62 +++---
man/str_sub_replace.Rd | 40 ----
man/str_subset.Rd | 50 +++++
man/str_trim.Rd | 17 +-
man/str_wrap.Rd | 27 +--
man/stringr.Rd | 9 +
man/word.Rd | 25 +--
tests/{test-all.R => testthat.R} | 2 +-
{inst/tests => tests/testthat}/test-count.r | 0
{inst/tests => tests/testthat}/test-detect.r | 9 +-
{inst/tests => tests/testthat}/test-dup.r | 0
{inst/tests => tests/testthat}/test-extract.r | 4 +
{inst/tests => tests/testthat}/test-join.r | 10 +-
{inst/tests => tests/testthat}/test-length.r | 0
{inst/tests => tests/testthat}/test-locate.r | 0
{inst/tests => tests/testthat}/test-match.r | 14 +-
{inst/tests => tests/testthat}/test-pad.r | 0
{inst/tests => tests/testthat}/test-split.r | 0
{inst/tests => tests/testthat}/test-sub.r | 0
{inst/tests => tests/testthat}/test-trim.r | 0
vignettes/stringr.Rmd | 201 +++++++++++++++++++
83 files changed, 2251 insertions(+), 1356 deletions(-)
delete mode 100644 NEWS
create mode 100644 R/case.R
delete mode 100644 R/checks.r
create mode 100644 R/conv.R
create mode 100644 R/sort.R
create mode 100644 R/stringr.R
create mode 100644 R/subset.R
create mode 100644 R/utils.R
delete mode 100644 R/utils.r
delete mode 100644 R/vectorise.r
create mode 100644 build/vignette.rds
create mode 100644 inst/doc/stringr.R
create mode 100644 inst/doc/stringr.Rmd
create mode 100644 inst/doc/stringr.html
delete mode 100644 inst/tests/test-check.r
create mode 100644 man/case.Rd
delete mode 100644 man/fixed.Rd
delete mode 100644 man/ignore.case.Rd
create mode 100644 man/modifier-deprecated.Rd
create mode 100644 man/modifiers.Rd
delete mode 100644 man/perl.Rd
create mode 100644 man/pipe.Rd
create mode 100644 man/str_conv.Rd
delete mode 100644 man/str_extract_all.Rd
delete mode 100644 man/str_locate_all.Rd
delete mode 100644 man/str_match_all.Rd
create mode 100644 man/str_order.Rd
delete mode 100644 man/str_replace_all.Rd
create mode 100644 man/str_replace_na.Rd
delete mode 100644 man/str_split_fixed.Rd
delete mode 100644 man/str_sub_replace.Rd
create mode 100644 man/str_subset.Rd
create mode 100644 man/stringr.Rd
rename tests/{test-all.R => testthat.R} (60%)
rename {inst/tests => tests/testthat}/test-count.r (100%)
rename {inst/tests => tests/testthat}/test-detect.r (69%)
rename {inst/tests => tests/testthat}/test-dup.r (100%)
rename {inst/tests => tests/testthat}/test-extract.r (76%)
rename {inst/tests => tests/testthat}/test-join.r (54%)
rename {inst/tests => tests/testthat}/test-length.r (100%)
rename {inst/tests => tests/testthat}/test-locate.r (100%)
rename {inst/tests => tests/testthat}/test-match.r (81%)
rename {inst/tests => tests/testthat}/test-pad.r (100%)
rename {inst/tests => tests/testthat}/test-split.r (100%)
rename {inst/tests => tests/testthat}/test-sub.r (100%)
rename {inst/tests => tests/testthat}/test-trim.r (100%)
create mode 100644 vignettes/stringr.Rmd
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/r-cran-stringr.git
More information about the debian-med-commit
mailing list