[Pkg-javascript-commits] [node-nan] branch master updated (a9a40cc -> b07fcbd)

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 change to branch master
in repository node-nan.

      from  a9a40cc   Release
       new  630240e   Imported Upstream version 2.0.8
       new  df9d03a   Merge tag 'upstream/2.0.8'
       new  be35445   update changelog, update patches
       new  b07fcbd   fix clean target, bump build-deps

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:
 .travis.yml                                        |   42 +-
 CHANGELOG.md                                       |   78 +-
 LICENSE.md                                         |    2 +-
 Makefile                                           |   62 +-
 README.md                                          | 1385 ++--------
 appveyor.yml                                       |   12 +-
 debian/changelog                                   |    7 +
 debian/compat                                      |    2 +-
 debian/control                                     |    4 +-
 debian/patches/embed-xtend.patch                   |   33 -
 debian/patches/fix_regexp_test.patch               |   40 -
 debian/patches/rename_node.patch                   |    2 +-
 debian/patches/series                              |    2 -
 debian/rules                                       |    1 +
 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 +
 128 files changed, 9499 insertions(+), 4155 deletions(-)
 delete mode 100644 debian/patches/embed-xtend.patch
 delete mode 100644 debian/patches/fix_regexp_test.patch
 create mode 100755 doc/.build.sh
 create mode 100644 doc/asyncworker.md
 create mode 100644 doc/buffers.md
 create mode 100644 doc/callback.md
 create mode 100644 doc/converters.md
 create mode 100644 doc/errors.md
 create mode 100644 doc/maybe_types.md
 create mode 100644 doc/methods.md
 create mode 100644 doc/new.md
 create mode 100644 doc/node_misc.md
 create mode 100644 doc/persistent.md
 create mode 100644 doc/scopes.md
 create mode 100644 doc/script.md
 create mode 100644 doc/string_bytes.md
 create mode 100644 doc/v8_internals.md
 create mode 100644 doc/v8_misc.md
 create mode 100644 nan_callbacks.h
 create mode 100644 nan_callbacks_12_inl.h
 create mode 100644 nan_callbacks_pre_12_inl.h
 create mode 100644 nan_converters.h
 create mode 100644 nan_converters_43_inl.h
 create mode 100644 nan_converters_pre_43_inl.h
 create mode 100644 nan_maybe_43_inl.h
 create mode 100644 nan_maybe_pre_43_inl.h
 create mode 100644 nan_object_wrap.h
 create mode 100644 nan_persistent_12_inl.h
 create mode 100644 nan_persistent_pre_12_inl.h
 create mode 100644 nan_weak.h
 copy test/cpp/{settergetter.cpp => accessors.cpp} (66%)
 rename test/cpp/{settergetter.cpp => accessors2.cpp} (65%)
 create mode 100644 test/cpp/buffer.cpp
 create mode 100644 test/cpp/converters.cpp
 create mode 100644 test/cpp/error.cpp
 create mode 100644 test/cpp/indexedinterceptors.cpp
 create mode 100644 test/cpp/namedinterceptors.cpp
 delete mode 100644 test/cpp/optionvalues.cpp
 create mode 100644 test/cpp/trycatch.cpp
 create mode 100644 test/cpp/weak2.cpp
 copy test/js/{settergetter-test.js => accessors-test.js} (86%)
 rename test/js/{settergetter-test.js => accessors2-test.js} (86%)
 create mode 100644 test/js/buffer-test.js
 create mode 100644 test/js/converters-test.js
 create mode 100644 test/js/error-test.js
 create mode 100644 test/js/indexedinterceptors-test.js
 create mode 100644 test/js/namedinterceptors-test.js
 delete mode 100644 test/js/optionvalues-test.js
 copy test/js/{returnemptystring-test.js => trycatch-test.js} (71%)
 copy test/js/{weak-test.js => weak2-test.js} (55%)
 create mode 100755 tools/1to2.js
 create mode 100644 tools/README.md
 create mode 100644 tools/package.json

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