[med-svn] [r-cran-stringr] branch master updated (a7da2b2 -> e9c3b54)

Andreas Tille tille at debian.org
Sat Nov 12 07:47:19 UTC 2016


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  a7da2b2   no file NEWS to be installed any more
       new  5921daf   New upstream version 1.1.0
       new  337ecaa   Merge tag 'upstream/1.1.0'
       new  19e1db4   New upstream version
       new  f1875f7   Convert to dh-r
       new  c9b172c   cme fix dpkg-control
       new  f2e8df1   Canonical homepage for CRAN
       new  01c209b   Removed Carlos Borroto from Uploaders
       new  bfe2e28   Add autopkgtest
       new  e9c3b54   Upload to unstable

The 9 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                       |  12 +-
 MD5                               | 129 ++++++++++++----------
 NAMESPACE                         |   6 +-
 NEWS.md                           | 154 ++++++++++++++++++++++++++
 R/c.r                             |  12 +-
 R/count.r                         |  15 +--
 R/data.R                          |  29 +++++
 R/detect.r                        |  11 +-
 R/extract.r                       |  33 +++---
 R/interp.R                        | 224 ++++++++++++++++++++++++++++++++++++++
 R/locate.r                        |  32 ++----
 R/match.r                         |  21 ++--
 R/modifiers.r                     |  44 ++++++--
 R/pad-trim.r                      |  39 ++++++-
 R/replace.r                       |  64 ++++++++---
 R/split.r                         |  32 ++----
 R/stringr.R                       |   5 -
 R/subset.R                        |  10 +-
 R/view.R                          |  89 +++++++++++++++
 R/word.r                          |   4 +
 README.md                         |   5 +-
 build/vignette.rds                | Bin 211 -> 210 bytes
 data/fruit.rda                    | Bin 0 -> 540 bytes
 data/sentences.rda                | Bin 0 -> 11375 bytes
 data/words.rda                    | Bin 0 -> 3402 bytes
 debian/README.test                |   8 ++
 debian/changelog                  |  13 +++
 debian/control                    |  17 ++-
 debian/copyright                  |   9 +-
 debian/docs                       |   3 +
 debian/rules                      |   7 +-
 debian/tests/control              |   3 +
 debian/tests/run-unit-test        |  11 ++
 debian/watch                      |   2 +-
 inst/doc/stringr.Rmd              |   4 +-
 inst/doc/stringr.html             |  98 ++++++++++-------
 inst/htmlwidgets/lib/str_view.css |  11 ++
 inst/htmlwidgets/str_view.js      |  17 +++
 inst/htmlwidgets/str_view.yaml    |   5 +
 man/case.Rd                       |   2 +-
 man/invert_match.Rd               |   2 +-
 man/modifier-deprecated.Rd        |   4 +-
 man/modifiers.Rd                  |   9 +-
 man/pipe.Rd                       |   2 +-
 man/str_c.Rd                      |  14 ++-
 man/str_conv.Rd                   |   2 +-
 man/str_count.Rd                  |   2 +-
 man/str_detect.Rd                 |   2 +-
 man/str_dup.Rd                    |   2 +-
 man/str_extract.Rd                |  10 +-
 man/str_interp.Rd                 |  62 +++++++++++
 man/str_length.Rd                 |   2 +-
 man/str_locate.Rd                 |   2 +-
 man/str_match.Rd                  |   9 +-
 man/str_order.Rd                  |   2 +-
 man/str_pad.Rd                    |   5 +-
 man/str_replace.Rd                |   4 +-
 man/str_replace_na.Rd             |   4 +-
 man/str_split.Rd                  |   8 +-
 man/str_sub.Rd                    |   4 +-
 man/str_subset.Rd                 |   2 +-
 man/str_trim.Rd                   |   2 +-
 man/str_trunc.Rd                  |  33 ++++++
 man/str_view.Rd                   |  52 +++++++++
 man/str_wrap.Rd                   |   2 +-
 man/stringr-data.Rd               |  36 ++++++
 man/stringr.Rd                    |   9 --
 man/word.Rd                       |   2 +-
 tests/testthat/test-detect.r      |  20 ++--
 tests/testthat/test-dup.r         |  12 +-
 tests/testthat/test-extract.r     |  10 +-
 tests/testthat/test-interp.r      |  66 +++++++++++
 tests/testthat/test-join.r        |   6 +-
 tests/testthat/test-length.r      |  18 +--
 tests/testthat/test-locate.r      |  30 +++--
 tests/testthat/test-match.r       |  26 ++---
 tests/testthat/test-pad.r         |  10 +-
 tests/testthat/test-replace.r     |  57 ++++++++++
 tests/testthat/test-split.r       |  75 +++++++------
 tests/testthat/test-sub.r         |  48 ++++----
 tests/testthat/test-subset.r      |  10 ++
 tests/testthat/test-trim.r        |  18 ++-
 tests/testthat/test-word.r        |  12 ++
 tests/testthat/test-wrap.r        |   7 ++
 vignettes/stringr.Rmd             |   4 +-
 85 files changed, 1470 insertions(+), 428 deletions(-)
 create mode 100644 NEWS.md
 create mode 100644 R/data.R
 create mode 100644 R/interp.R
 delete mode 100644 R/stringr.R
 create mode 100644 R/view.R
 create mode 100644 data/fruit.rda
 create mode 100644 data/sentences.rda
 create mode 100644 data/words.rda
 create mode 100644 debian/README.test
 create mode 100644 debian/docs
 create mode 100644 debian/tests/control
 create mode 100644 debian/tests/run-unit-test
 create mode 100644 inst/htmlwidgets/lib/str_view.css
 create mode 100644 inst/htmlwidgets/str_view.js
 create mode 100644 inst/htmlwidgets/str_view.yaml
 create mode 100644 man/str_interp.Rd
 create mode 100644 man/str_trunc.Rd
 create mode 100644 man/str_view.Rd
 create mode 100644 man/stringr-data.Rd
 delete mode 100644 man/stringr.Rd
 create mode 100644 tests/testthat/test-interp.r
 create mode 100644 tests/testthat/test-replace.r
 create mode 100644 tests/testthat/test-subset.r
 create mode 100644 tests/testthat/test-word.r
 create mode 100644 tests/testthat/test-wrap.r

-- 
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