[Pkg-javascript-commits] [node-nan] 02/04: Merge tag 'upstream/2.0.8'

Ximin Luo infinity0 at debian.org
Mon Aug 31 02:52:30 UTC 2015


This is an automated email from the git hooks/post-receive script.

infinity0 pushed a commit to branch master
in repository node-nan.

commit df9d03a46cc054ae52fdd4740e55c59f476e506a
Merge: a9a40cc 630240e
Author: Ximin Luo <infinity0 at debian.org>
Date:   Mon Aug 31 02:42:44 2015 +0200

    Merge tag 'upstream/2.0.8'
    
    Upstream version 2.0.8
    
    # gpg: Signature made Mon 31 Aug 2015 02:42:43 CEST
    # gpg:                using RSA key 860DEF3B8F650B79
    # gpg: Good signature from "Ximin Luo <infinity0 at pwned.gg>" [ultimate]
    # gpg:                 aka "Ximin Luo <infinity0 at torproject.org>" [ultimate]
    # gpg:                 aka "Ximin Luo <infinity0 at freenetproject.org>" [ultimate]
    # gpg:                 aka "Ximin Luo <infinity0 at debian.org>" [ultimate]

 .travis.yml                                        |   42 +-
 CHANGELOG.md                                       |   78 +-
 LICENSE.md                                         |    2 +-
 Makefile                                           |   62 +-
 README.md                                          | 1385 ++--------
 appveyor.yml                                       |   12 +-
 doc/.build.sh                                      |   38 +
 doc/asyncworker.md                                 |   97 +
 doc/buffers.md                                     |   42 +
 doc/callback.md                                    |   52 +
 doc/converters.md                                  |   41 +
 doc/errors.md                                      |  226 ++
 doc/maybe_types.md                                 |  480 ++++
 doc/methods.md                                     |  624 +++++
 doc/new.md                                         |  141 ++
 doc/node_misc.md                                   |  114 +
 doc/persistent.md                                  |  292 +++
 doc/scopes.md                                      |   73 +
 doc/script.md                                      |   38 +
 doc/string_bytes.md                                |   62 +
 doc/v8_internals.md                                |  199 ++
 doc/v8_misc.md                                     |   63 +
 examples/async_pi_estimate/addon.cc                |   15 +-
 examples/async_pi_estimate/addon.js                |    2 +-
 examples/async_pi_estimate/async.cc                |   31 +-
 examples/async_pi_estimate/async.h                 |    2 +-
 examples/async_pi_estimate/pi_est.cc               |    2 +-
 examples/async_pi_estimate/pi_est.h                |    4 +-
 examples/async_pi_estimate/sync.cc                 |   10 +-
 examples/async_pi_estimate/sync.h                  |    2 +-
 nan.h                                              | 2662 +++++++++-----------
 nan_callbacks.h                                    |   88 +
 nan_callbacks_12_inl.h                             |  512 ++++
 nan_callbacks_pre_12_inl.h                         |  506 ++++
 nan_converters.h                                   |   64 +
 nan_converters_43_inl.h                            |   42 +
 nan_converters_pre_43_inl.h                        |   42 +
 nan_implementation_12_inl.h                        |  236 +-
 nan_implementation_pre_12_inl.h                    |  128 +-
 nan_maybe_43_inl.h                                 |  224 ++
 nan_maybe_pre_43_inl.h                             |  295 +++
 nan_new.h                                          |  208 +-
 nan_object_wrap.h                                  |  155 ++
 nan_persistent_12_inl.h                            |  129 +
 nan_persistent_pre_12_inl.h                        |  238 ++
 nan_string_bytes.h                                 |   51 +-
 nan_weak.h                                         |  422 ++++
 package.json                                       |   13 +-
 test/binding.gyp                                   |   41 +-
 test/cpp/{settergetter.cpp => accessors.cpp}       |   82 +-
 test/cpp/{settergetter.cpp => accessors2.cpp}      |   86 +-
 test/cpp/asyncprogressworker.cpp                   |   40 +-
 test/cpp/asyncworker.cpp                           |   25 +-
 test/cpp/asyncworkererror.cpp                      |   21 +-
 test/cpp/buffer.cpp                                |   75 +
 test/cpp/bufferworkerpersistent.cpp                |   48 +-
 test/cpp/converters.cpp                            |  130 +
 test/cpp/error.cpp                                 |   62 +
 test/cpp/gc.cpp                                    |   39 +-
 test/cpp/indexedinterceptors.cpp                   |  116 +
 test/cpp/isolatedata.cpp                           |   20 +-
 test/cpp/makecallback.cpp                          |   76 +-
 test/cpp/morenews.cpp                              |   84 +-
 test/cpp/multifile1.cpp                            |   12 +-
 test/cpp/multifile2.cpp                            |    9 +-
 test/cpp/multifile2.h                              |    4 +-
 test/cpp/namedinterceptors.cpp                     |  116 +
 test/cpp/nancallback.cpp                           |   67 +-
 test/cpp/nannew.cpp                                |  405 ++-
 test/cpp/news.cpp                                  |  278 +-
 test/cpp/objectwraphandle.cpp                      |   58 +-
 test/cpp/optionvalues.cpp                          |   43 -
 test/cpp/persistent.cpp                            |   90 +-
 test/cpp/returnemptystring.cpp                     |   15 +-
 test/cpp/returnnull.cpp                            |   13 +-
 test/cpp/returnundefined.cpp                       |   15 +-
 test/cpp/returnvalue.cpp                           |   47 +-
 test/cpp/settemplate.cpp                           |  103 +-
 test/cpp/strings.cpp                               |  108 +-
 test/cpp/symbols.cpp                               |   11 +-
 test/cpp/threadlocal.cpp                           |   33 +-
 test/cpp/trycatch.cpp                              |   31 +
 test/cpp/weak.cpp                                  |   43 +-
 test/cpp/weak2.cpp                                 |   50 +
 .../js/{settergetter-test.js => accessors-test.js} |    6 +-
 .../{settergetter-test.js => accessors2-test.js}   |    6 +-
 test/js/asyncprogressworker-test.js                |    2 +-
 test/js/asyncworker-test.js                        |    2 +-
 test/js/asyncworkererror-test.js                   |    2 +-
 test/js/buffer-test.js                             |   23 +
 test/js/bufferworkerpersistent-test.js             |   12 +-
 test/js/converters-test.js                         |   45 +
 test/js/error-test.js                              |   29 +
 test/js/gc-test.js                                 |    9 +-
 test/js/indexedinterceptors-test.js                |   23 +
 test/js/isolatedata-test.js                        |    2 +-
 test/js/makecallback-test.js                       |    2 +-
 test/js/morenews-test.js                           |    2 +-
 test/js/multifile-test.js                          |    2 +-
 test/js/namedinterceptors-test.js                  |   23 +
 test/js/nancallback-test.js                        |   10 +-
 test/js/nannew-test.js                             |    2 +-
 test/js/news-test.js                               |    4 +-
 test/js/objectwraphandle-test.js                   |    6 +-
 test/js/optionvalues-test.js                       |   33 -
 test/js/persistent-test.js                         |   31 +-
 test/js/returnemptystring-test.js                  |    2 +-
 test/js/returnnull-test.js                         |    2 +-
 test/js/returnundefined-test.js                    |    2 +-
 test/js/returnvalue-test.js                        |    6 +-
 test/js/settemplate-test.js                        |    2 +-
 test/js/strings-test.js                            |   16 +-
 test/js/symbols-test.js                            |    2 +-
 test/js/threadlocal-test.js                        |    2 +-
 ...{returnemptystring-test.js => trycatch-test.js} |   13 +-
 test/js/weak-test.js                               |   21 +-
 test/js/{weak-test.js => weak2-test.js}            |   32 +-
 tools/1to2.js                                      |  412 +++
 tools/README.md                                    |   14 +
 tools/package.json                                 |   19 +
 120 files changed, 9487 insertions(+), 4076 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-nan.git



More information about the Pkg-javascript-commits mailing list