[med-svn] [r-cran-future] branch master updated (e5b2f46 -> 328037c)

Andreas Tille tille at debian.org
Fri Dec 9 21:49:07 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-future.

      from  e5b2f46   convert to dh-r
       new  d9dd184   New upstream version 1.2.0
       new  df5264b   Merge tag 'upstream/1.2.0'
       new  ecc898b   New upstream version
       new  f2c15e6   debhelper 10
       new  011b1d3   d/watch: version=4
       new  328037c   Upload to unstable

The 6 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                                        |   4 +-
 NAMESPACE                                          |  20 +-
 NEWS                                               |  24 ++
 R/ClusterFuture-class.R                            |  39 ++-
 R/ClusterRegistry.R                                |  51 +---
 R/EagerFuture-class.R                              |  35 ---
 R/Future-class.R                                   |  12 +-
 R/FutureError-class.R                              |   4 +-
 R/LazyFuture-class.R                               |  68 -----
 R/UniprocessFuture-class.R                         |  68 ++++-
 R/as.cluster.R                                     |  57 ++++
 R/eager.R                                          |  52 ----
 R/future.R                                         |   2 +-
 R/futureAssign.R                                   |   3 -
 R/futureAssign_OP.R                                |  22 +-
 R/futureCall.R                                     |   2 +-
 R/lazy.R                                           |  41 ---
 R/makeClusterPSOCK.R                               | 286 +++++++++++++++++++++
 R/multicore.R                                      |   8 +-
 R/multisession.R                                   |   4 +-
 R/nbrOfWorkers.R                                   |   2 +-
 R/resolve.R                                        |   6 +-
 R/sessionDetails.R                                 |  94 +++++++
 R/tweak.R                                          |   6 +-
 R/tweak_parallel_PSOCK.R                           | 149 -----------
 R/uniprocess.R                                     |  81 ++++++
 R/utils.R                                          |  72 +++++-
 R/values.R                                         |  20 +-
 R/zzz.R                                            |   2 +-
 R/{plan.R => zzz.plan.R}                           |  64 ++++-
 README.md                                          |  98 +++----
 cran-comments.md                                   |  48 ++--
 debian/changelog                                   |   9 +
 debian/compat                                      |   2 +-
 debian/control                                     |  15 +-
 debian/watch                                       |   6 +-
 incl/eager.R                                       |  22 --
 incl/makeClusterPSOCK.R                            | 119 +++++++++
 incl/plan.R                                        |   4 +-
 incl/uniprocess.R                                  |  23 ++
 inst/vignettes-static/future-1-overview.md.rsp.rsp |  10 +-
 man/EagerFuture-class.Rd                           |  25 --
 man/LazyFuture-class.Rd                            |  25 --
 man/UniprocessFuture-class.Rd                      |  15 +-
 man/as.cluster.Rd                                  |  40 +++
 man/eager.Rd                                       |  40 ++-
 man/future.Rd                                      |   4 +-
 man/lazy.Rd                                        | 114 --------
 man/makeClusterPSOCK.Rd                            | 225 ++++++++++++++++
 man/multicore.Rd                                   |   2 +-
 man/plan.Rd                                        |   6 +-
 man/sessionDetails.Rd                              |  22 ++
 man/tweak_parallel_PSOCK.Rd                        |  68 -----
 revdep/README.md                                   |  65 ++---
 revdep/checks.rds                                  | Bin 8524 -> 8651 bytes
 revdep/problems.md                                 |  59 ++++-
 revdep/timing.md                                   |  38 +--
 tests/Future-class.R                               |   5 +-
 tests/as.cluster.R                                 |  64 +++++
 tests/cluster.R                                    |  32 +++
 tests/eager.R                                      |   4 +-
 tests/early-signaling.R                            |   8 +-
 tests/futures.R                                    |   2 +-
 tests/globals,manual.R                             |   2 +-
 tests/globals,tricky.R                             |   2 +-
 tests/incl/start,load-only.R                       |   1 +
 tests/invalid-owner.R                              |  22 +-
 tests/lazy.R                                       |   2 +-
 tests/multicore.R                                  |   4 +-
 tests/multisession.R                               |   2 +-
 tests/nbrOfWorkers.R                               |   2 +-
 tests/nested_futures,mc.cores.R                    |  12 +-
 tests/nested_futures.R                             |  28 +-
 tests/plan.R                                       |  70 ++---
 tests/rng.R                                        |   2 +-
 tests/sessionDetails.R                             |  20 ++
 tests/startup.R                                    |   4 +-
 tests/transparent.R                                |   4 +-
 tests/tweak.R                                      |  10 +-
 tests/uuid.R                                       |  14 +-
 vignettes/future-1-overview.md.rsp                 |  94 +++----
 vignettes/future-2-issues.md.rsp                   |   4 +-
 vignettes/future-3-topologies.md.rsp               |   4 +-
 83 files changed, 1799 insertions(+), 1021 deletions(-)
 delete mode 100644 R/EagerFuture-class.R
 delete mode 100644 R/LazyFuture-class.R
 create mode 100644 R/as.cluster.R
 delete mode 100644 R/eager.R
 delete mode 100644 R/lazy.R
 create mode 100644 R/makeClusterPSOCK.R
 create mode 100644 R/sessionDetails.R
 delete mode 100644 R/tweak_parallel_PSOCK.R
 create mode 100644 R/uniprocess.R
 rename R/{plan.R => zzz.plan.R} (80%)
 delete mode 100644 incl/eager.R
 create mode 100644 incl/makeClusterPSOCK.R
 create mode 100644 incl/uniprocess.R
 delete mode 100644 man/EagerFuture-class.Rd
 delete mode 100644 man/LazyFuture-class.Rd
 create mode 100644 man/as.cluster.Rd
 delete mode 100644 man/lazy.Rd
 create mode 100644 man/makeClusterPSOCK.Rd
 create mode 100644 man/sessionDetails.Rd
 delete mode 100644 man/tweak_parallel_PSOCK.Rd
 create mode 100644 tests/as.cluster.R
 create mode 100644 tests/sessionDetails.R

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/r-cran-future.git



More information about the debian-med-commit mailing list