[Pkg-javascript-commits] [node-nan] branch master updated (12e93ce -> 29e9d90)

Andrew Kelley andrewrk-guest at moszumanska.debian.org
Mon May 18 20:19:17 UTC 2015


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

andrewrk-guest pushed a change to branch master
in repository node-nan.

      from  12e93ce   Update changelog, release
       new  9e28a18   update upstream URL from rvagg/nan to nodejs/nan
       new  9cd91c5   prepare for new upstream version
       new  8d7c5d5   Imported Upstream version 1.8.4
       new  d51e27c   Merge tag 'upstream/1.8.4'
       new  158dbc6   add myself to uploaders
       new  c4ca1eb   bump standards version to 3.9.6
       new  4d1c36e   disable tests
       new  5ce79ec   add upstream tests
       new  29e9d90   embed xtend module

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:
 .travis.yml                            |   12 +-
 CHANGELOG.md                           |  146 +-
 LICENSE                                |   46 -
 LICENSE.md                             |   13 +
 Makefile                               |   29 +-
 README.md                              |  428 ++++-
 appveyor.yml                           |   24 +-
 cpplint.py                             | 3138 ++++++++++++++++++++++++--------
 debian/changelog                       |    6 +
 debian/control                         |    9 +-
 debian/copyright                       |    4 +-
 debian/patches/embed-xtend.patch       |   33 +
 debian/patches/series                  |    1 +
 debian/rules                           |    4 +
 debian/watch                           |    2 +-
 examples/async_pi_estimate/addon.cc    |   13 +-
 examples/async_pi_estimate/addon.js    |    8 +
 examples/async_pi_estimate/async.cc    |   13 +-
 examples/async_pi_estimate/async.h     |    9 +-
 examples/async_pi_estimate/pi_est.cc   |   12 +-
 examples/async_pi_estimate/pi_est.h    |    8 +-
 examples/async_pi_estimate/sync.cc     |   13 +-
 examples/async_pi_estimate/sync.h      |    9 +-
 nan.h                                  | 1333 +++++++-------
 nan_implementation_12_inl.h            |  261 +++
 nan_implementation_pre_12_inl.h        |  267 +++
 nan_new.h                              |  328 ++++
 nan_string_bytes.h                     |  312 ++++
 package.json                           |   14 +-
 test/binding.gyp                       |   89 +-
 test/cpp/asyncprogressworker.cpp       |   66 +
 test/cpp/asyncworker.cpp               |    8 +-
 test/cpp/asyncworkererror.cpp          |    8 +-
 test/cpp/bufferworkerpersistent.cpp    |    8 +-
 test/cpp/gc.cpp                        |   38 +
 test/cpp/isolatedata.cpp               |    8 +-
 test/cpp/makecallback.cpp              |   14 +-
 test/cpp/morenews.cpp                  |   10 +-
 test/cpp/multifile1.cpp                |    8 +-
 test/cpp/multifile2.cpp                |    8 +-
 test/cpp/multifile2.h                  |    9 +-
 test/cpp/nancallback.cpp               |   52 +
 test/cpp/nannew.cpp                    |  502 +++++
 test/cpp/news.cpp                      |   56 +-
 test/cpp/objectwraphandle.cpp          |   61 +
 test/cpp/optionvalues.cpp              |    8 +-
 test/cpp/persistent.cpp                |   10 +-
 test/cpp/returnemptystring.cpp         |    8 +-
 test/cpp/returnnull.cpp                |    8 +-
 test/cpp/returnundefined.cpp           |    8 +-
 test/cpp/returnvalue.cpp               |   26 +-
 test/cpp/settemplate.cpp               |   14 +-
 test/cpp/settergetter.cpp              |    8 +-
 test/cpp/strings.cpp                   |   46 +-
 test/cpp/symbols.cpp                   |    8 +-
 test/cpp/threadlocal.cpp               |   68 +
 test/cpp/weak.cpp                      |    8 +-
 test/js/asyncprogressworker-test.js    |   23 +
 test/js/asyncworker-test.js            |    8 +
 test/js/asyncworkererror-test.js       |    8 +
 test/js/bufferworkerpersistent-test.js |    8 +
 test/js/gc-test.js                     |   23 +
 test/js/isolatedata-test.js            |    8 +
 test/js/makecallback-test.js           |    8 +
 test/js/morenews-test.js               |    8 +
 test/js/multifile-test.js              |    8 +
 test/js/nancallback-test.js            |   30 +
 test/js/nannew-test.js                 |   51 +
 test/js/news-test.js                   |   16 +-
 test/js/objectwraphandle-test.js       |   22 +
 test/js/optionvalues-test.js           |    8 +
 test/js/persistent-test.js             |    8 +
 test/js/returnemptystring-test.js      |    8 +
 test/js/returnnull-test.js             |    8 +
 test/js/returnundefined-test.js        |    8 +
 test/js/returnvalue-test.js            |   14 +-
 test/js/settemplate-test.js            |    8 +
 test/js/settergetter-test.js           |    8 +
 test/js/strings-test.js                |   13 +-
 test/js/symbols-test.js                |    8 +
 test/js/threadlocal-test.js            |   13 +
 test/js/weak-test.js                   |    8 +
 82 files changed, 6199 insertions(+), 1794 deletions(-)
 delete mode 100644 LICENSE
 create mode 100644 LICENSE.md
 create mode 100644 debian/patches/embed-xtend.patch
 create mode 100644 debian/patches/series
 create mode 100644 nan_implementation_12_inl.h
 create mode 100644 nan_implementation_pre_12_inl.h
 create mode 100644 nan_new.h
 create mode 100644 nan_string_bytes.h
 create mode 100644 test/cpp/asyncprogressworker.cpp
 create mode 100644 test/cpp/gc.cpp
 create mode 100644 test/cpp/nancallback.cpp
 create mode 100644 test/cpp/nannew.cpp
 create mode 100644 test/cpp/objectwraphandle.cpp
 create mode 100644 test/cpp/threadlocal.cpp
 create mode 100644 test/js/asyncprogressworker-test.js
 create mode 100644 test/js/gc-test.js
 create mode 100644 test/js/nancallback-test.js
 create mode 100644 test/js/nannew-test.js
 create mode 100644 test/js/objectwraphandle-test.js
 create mode 100644 test/js/threadlocal-test.js

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