Hello community,

here is the log from the commit of package nodejs6 for openSUSE:Factory checked 
in at 2017-08-24 18:54:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nodejs6 (Old)
 and      /work/SRC/openSUSE:Factory/.nodejs6.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "nodejs6"

Thu Aug 24 18:54:06 2017 rev:12 rq:517635 version:6.11.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/nodejs6/nodejs6.changes  2017-08-13 
14:57:17.816730660 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs6.new/nodejs6.changes     2017-08-24 
18:54:14.797810357 +0200
@@ -1,0 +2,16 @@
+Thu Aug 17 08:57:20 UTC 2017 - [email protected]
+
+- New upstream LTS release 6.11.2
+  * configure: add mips64el to valid_arch (#13620)
+  * crypto: updated root certificates based on NSS 3.30
+    (#13279, #12402)
+  * deps: upgrade OpenSSL to version 1.0.2.l (#12913)
+  * http:
+    + parse errors are now reported when NODE_DEBUG=http (#13206)
+    + Agent constructor can now be invoked without new (#12927)
+  * zlib: node will now throw an Error when zlib rejects the value
+    of windowBits, instead of crashing (#13098)
+- Drop 0f3e69db.patch: fixed upstream
+- Modify versioned.patch: use correct "node6" directory
+
+-------------------------------------------------------------------

Old:
----
  node-v6.11.1.tar.xz

New:
----
  node-v6.11.2.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ nodejs6.spec ++++++
--- /var/tmp/diff_new_pack.CbAD9s/_old  2017-08-24 18:54:17.613413903 +0200
+++ /var/tmp/diff_new_pack.CbAD9s/_new  2017-08-24 18:54:17.621412776 +0200
@@ -26,7 +26,7 @@
 ###########################################################
 
 Name:           nodejs6
-Version:        6.11.1
+Version:        6.11.2
 Release:        0
 
 %if 0%{?sles_version} == 11
@@ -225,7 +225,7 @@
 %if 6 < 6
 %patch1 -p1
 %endif
-%if 6 < 7
+%if 6 < 6
 %patch2 -p1
 %endif
 %if 6 < 8

++++++ 0f3e69db.patch ++++++
--- /var/tmp/diff_new_pack.CbAD9s/_old  2017-08-24 18:54:17.713399824 +0200
+++ /var/tmp/diff_new_pack.CbAD9s/_new  2017-08-24 18:54:17.717399261 +0200
@@ -1,90 +1,2 @@
-commit 0f3e69db41c2b6a1863f2454b028f3b3b28a9613
-Author: Zuzana Svetlikova <[email protected]>
-Date:   Wed Apr 26 18:04:40 2017 +0200
-
-    v8: fix gcc 7 build errors
-    
-    Porting https://github.com/nodejs/node/pull/12392 to master
-    
-    Ref: https://github.com/nodejs/node/pull/12392
-    Fixes: https://github.com/nodejs/node/issues/10388
-    PR-URL: https://github.com/nodejs/node/pull/12676
-    Reviewed-By: Ben Noordhuis <[email protected]>
-    Reviewed-By: Anna Henningsen <[email protected]>
-
-Index: node-v6.10.3/deps/v8/src/objects-inl.h
-===================================================================
---- node-v6.10.3.orig/deps/v8/src/objects-inl.h
-+++ node-v6.10.3/deps/v8/src/objects-inl.h
-@@ -36,6 +36,27 @@
- namespace v8 {
- namespace internal {
- 
-+template <typename Derived, typename Shape, typename Key>
-+uint32_t HashTable<Derived, Shape, Key>::Hash(Key key) {
-+  if (Shape::UsesSeed) {
-+    return Shape::SeededHash(key, GetHeap()->HashSeed());
-+  } else {
-+    return Shape::Hash(key);
-+  }
-+}
-+
-+
-+template <typename Derived, typename Shape, typename Key>
-+uint32_t HashTable<Derived, Shape, Key>::HashForObject(Key key,
-+                                                       Object* object) {
-+  if (Shape::UsesSeed) {
-+    return Shape::SeededHashForObject(key, GetHeap()->HashSeed(), object);
-+  } else {
-+    return Shape::HashForObject(key, object);
-+  }
-+}
-+
-+
- PropertyDetails::PropertyDetails(Smi* smi) {
-   value_ = smi->value();
- }
-Index: node-v6.10.3/deps/v8/src/objects.h
-===================================================================
---- node-v6.10.3.orig/deps/v8/src/objects.h
-+++ node-v6.10.3/deps/v8/src/objects.h
-@@ -3261,22 +3261,10 @@ class HashTableBase : public FixedArray
- template <typename Derived, typename Shape, typename Key>
- class HashTable : public HashTableBase {
-  public:
--  // Wrapper methods
--  inline uint32_t Hash(Key key) {
--    if (Shape::UsesSeed) {
--      return Shape::SeededHash(key, GetHeap()->HashSeed());
--    } else {
--      return Shape::Hash(key);
--    }
--  }
--
--  inline uint32_t HashForObject(Key key, Object* object) {
--    if (Shape::UsesSeed) {
--      return Shape::SeededHashForObject(key, GetHeap()->HashSeed(), object);
--    } else {
--      return Shape::HashForObject(key, object);
--    }
--  }
-+  // Wrapper methods.  Defined in src/objects-inl.h
-+  // to break a cycle with src/heap/heap.h.
-+  inline uint32_t Hash(Key key);
-+  inline uint32_t HashForObject(Key key, Object* object);
- 
-   // Returns a new HashTable object.
-   MUST_USE_RESULT static Handle<Derived> New(
-Index: node-v6.10.3/deps/v8/src/objects-body-descriptors.h
-===================================================================
---- node-v6.10.3.orig/deps/v8/src/objects-body-descriptors.h
-+++ node-v6.10.3/deps/v8/src/objects-body-descriptors.h
-@@ -99,7 +99,7 @@ class FixedBodyDescriptor final : public
- 
-   template <typename StaticVisitor>
-   static inline void IterateBody(HeapObject* obj, int object_size) {
--    IterateBody(obj);
-+    IterateBody<StaticVisitor>(obj);
-   }
- };
- 
+Empty patch. Placeholder must exist as long as same patch
+for older Node codestreams exist.

++++++ SHASUMS256.txt ++++++
--- /var/tmp/diff_new_pack.CbAD9s/_old  2017-08-24 18:54:17.797387998 +0200
+++ /var/tmp/diff_new_pack.CbAD9s/_new  2017-08-24 18:54:17.797387998 +0200
@@ -1,42 +1,42 @@
-903c39914631c25509467516f22d2b8b320d08f17d1a4d2a7de740dffc7a1c1b  
node-v6.11.1-aix-ppc64.tar.gz
-a2b839259089ef26f20c17864ff5ce9cd1a67e841be3d129b38d288b45fe375b  
node-v6.11.1-darwin-x64.tar.gz
-60521df5c436552bc09ae68e8399e7e32cf34c36b21f1dd93c4ddfa421ed7ef0  
node-v6.11.1-darwin-x64.tar.xz
-333fd57e7ffa419655980b462ece5efc1b2f09c50c5d702ce2a24cb763f19885  
node-v6.11.1-headers.tar.gz
-cef0b18c510fc396e571576d6479072ae2895387335532dd6811ef337a0bfcb5  
node-v6.11.1-headers.tar.xz
-f8c898c39ecc9806fd6b5a3b49f037fee3cfe823238b8c119b4f6f8b7869168e  
node-v6.11.1-linux-arm64.tar.gz
-da1188f66aefab601c419b18d658b2fb22dbfcd8dd9db1efe033454182302a06  
node-v6.11.1-linux-arm64.tar.xz
-f725f0b55f1ddf8b297325e7d34e7dd2acb940c380adadae0489df438f7b5976  
node-v6.11.1-linux-armv6l.tar.gz
-9111c08c27553afe39bf75b5c70d1090e99eab79874a349d2475372447751171  
node-v6.11.1-linux-armv6l.tar.xz
-f48a17b7781052a57414f4c4f9b8cda61886ac82dbcc72cb054151b8ddae7f13  
node-v6.11.1-linux-armv7l.tar.gz
-81d5cfeca28134e1c4011ef473b836f17b9833ce35477ce3d5d5244a574cb2d7  
node-v6.11.1-linux-armv7l.tar.xz
-79d64e0265d29eb2ce2b592657ef36ef8f263db85bd81a01ddc6e20c9602117a  
node-v6.11.1-linux-ppc64le.tar.gz
-2ce2f559d7b3e165638659c4bd8190f0b944376f6af2613af08b7dca390d9ca3  
node-v6.11.1-linux-ppc64le.tar.xz
-af73c5213a986c3cbe152ea06fd02e9bf9ae534f01f0f9aebf976aa1aecf3ce8  
node-v6.11.1-linux-ppc64.tar.gz
-47a51a7a92ca4dfd24e3ea545d3ecb85de028fe0213472a041c7244d05dd0557  
node-v6.11.1-linux-ppc64.tar.xz
-afb203218defb33189e9205ea3aaed8b16d7f8e8ba1c754225d931919f42566a  
node-v6.11.1-linux-s390x.tar.gz
-8b3ab3eb08245ee5fa381952d5b2e6a12c29dc8216687adc8a0f775ae56a9fd1  
node-v6.11.1-linux-s390x.tar.xz
-175e00ad504f0dca5a4d2af0f941e27ea0bd3178529fd1a9c3d67f3d75afd864  
node-v6.11.1-linux-x64.tar.gz
-e68cc956f0ca5c54e7f3016d639baf987f6f9de688bb7b31339ab7561af88f41  
node-v6.11.1-linux-x64.tar.xz
-6471fbb402e2e26086e125abb6dfe51d1f1aaee4c7cc769539490de6bca635c3  
node-v6.11.1-linux-x86.tar.gz
-5bab3ae4e437b94dfe6116fab5e0ad30eb9ef91d728f8daa9518ced28910f2af  
node-v6.11.1-linux-x86.tar.xz
-b74310f4de51f60de8377686d8c150c737a3f41bb2bda353f4b170f9db58aa5f  
node-v6.11.1.pkg
-9d7826c823df9edc51967005d80ba93ba962000c99e9a32b8f2c380275698b82  
node-v6.11.1-sunos-x64.tar.gz
-a0312c958f07b54ec2be0123a3fd04490a0bd85f5a63ed52a0f5b572b1e5a822  
node-v6.11.1-sunos-x64.tar.xz
-f400f12a1c7e954247e48d858cac4282b821858ac1d40760cfd30544c63a6752  
node-v6.11.1-sunos-x86.tar.gz
-beda0888e07856c5c1ae5a27bdb83af63706a78d402d0dd742a26927d0b0c4ad  
node-v6.11.1-sunos-x86.tar.xz
-0187d4e4ef00cee2b70b0ad0689100050654f26629775d097b145d0d8727f9a0  
node-v6.11.1.tar.gz
-6f6655b85919aa54cb045a6d69a226849802fcc26491d0db4ce59873e41cc2b8  
node-v6.11.1.tar.xz
-22adcce6cbf2e40a879906be662f1818073f4668964d3b4ce544da56c17051f9  
node-v6.11.1-win-x64.7z
-9ffdaf75546fdc39b1a4f49ed816618c4669e34e2ee3b7a810ad89c8287f1293  
node-v6.11.1-win-x64.zip
-117bdeec7008492e2b313b637773375f07bf9582d13083566d3ad5e089f30875  
node-v6.11.1-win-x86.7z
-39be718eab141a38edc8abd6328362e8bb63c13c0d6114f8f59df95e0eb36952  
node-v6.11.1-win-x86.zip
-a3cd79655e4bff8c33884923eb0ccdb7290729e5f3352e8644d63e2849ae445d  
node-v6.11.1-x64.msi
-6d10c47ad968bee5bf8d467a375eb93c148a780e3c34ee8d656055035f1f90c8  
node-v6.11.1-x86.msi
-2b740a411bd8d6d63749452169fdeb662d7bbec35a5108c19753fe993e0df141  
win-x64/node.exe
-392f789336568f3c4d5f8f24ddfe62e8084f33ef10d0fb186cd508055e579e6e  
win-x64/node.lib
-db8ce8256c5281139de57cadd19910125123ba16184027f58f269f82d9e370e2  
win-x64/node_pdb.7z
-2fd21217fba052f49ce175f16398163eb7616f8052403d0c5a8264e3ff3bd583  
win-x64/node_pdb.zip
-781f24b0426f30fa4ac0baf2d22710a938360df4f8c4ae3285ca8921937d985c  
win-x86/node.exe
-5b0285b9e03214d384e7a72cf45bf0eb047481dcab85ab93932271020b78b342  
win-x86/node.lib
-95eb4925543f143da527ecfabf454c3e6f2845e76afa8cac49a2c66d5ec06727  
win-x86/node_pdb.7z
-37a7dc654c03fea7f98428ecb81a1b575de5f19efa0f382f81302fdac7bdf0d1  
win-x86/node_pdb.zip
+79ead2addfa70ea471406f48917530822e9214acd2351d1f02401b3c4dd7a34a  
node-v6.11.2-aix-ppc64.tar.gz
+810669aa5f812d02679c121c123a2b200e55abaa5a27aacf00b571f3cf3727d1  
node-v6.11.2-darwin-x64.tar.gz
+a2e81b5f60bd8a6de90e37c70d024fe61b1caa54dbe2f076a10abe673f490073  
node-v6.11.2-darwin-x64.tar.xz
+781273b2ae4dd489a04b16c58a4a10d30a5697e7e8bff90832a07208e3d31237  
node-v6.11.2-headers.tar.gz
+86d677881976c49cb80c6449564b027b3fe577c9f63c6f5111c648018f2aa6cf  
node-v6.11.2-headers.tar.xz
+914465dd907d2d785a6cb2e166ada7ce1e070f212267ce88ba7a326fe549a076  
node-v6.11.2-linux-arm64.tar.gz
+c94e2cf7a68c34b2c93af2388b57f71e730a0736cec80b37ad8700210835f7a4  
node-v6.11.2-linux-arm64.tar.xz
+bc44d3110f9c810a3018abd23627ddd1acfcbb83e8916647ee1435a4e7aa4fa2  
node-v6.11.2-linux-armv6l.tar.gz
+67e559617317aa85f0dfe3d8b95bc1461946f9835cebea4c1486807a87ef7b80  
node-v6.11.2-linux-armv6l.tar.xz
+0e758f5a87eb64bfb623d431cc31a50d1800158d83ab1a5d2f4c6b0d4140e850  
node-v6.11.2-linux-armv7l.tar.gz
+bc5d8f54c68ef1b7596dac4c793a30c44da747a1c41c99edcdbfb3f17be465ff  
node-v6.11.2-linux-armv7l.tar.xz
+095d0411667b00518f2ff0ea5eb17e01bfe17fe58b8eb8648e0be87bb89d8fb9  
node-v6.11.2-linux-ppc64le.tar.gz
+166ac9725a1e66cb79a21c42845b3c2ab55c7980fe5e21c3a95d5abce8f28a6c  
node-v6.11.2-linux-ppc64le.tar.xz
+e2a6501f8af6fcf8446d61084baf06a00c8ae728a012aef6d31fe9e16a39a8e2  
node-v6.11.2-linux-ppc64.tar.gz
+c25682fdb0749724659763a04dff1abe3182379cc2c05584bf7190497036e097  
node-v6.11.2-linux-ppc64.tar.xz
+a6a5a6cdcc03fc45467c8bda99b0932776495065dd8b096b680ba17ec0dd478d  
node-v6.11.2-linux-s390x.tar.gz
+8e566c2345618ec1acd982a7743968038ee0db16303e0f2af77bf8f2f7bc16eb  
node-v6.11.2-linux-s390x.tar.xz
+1ca74833ff79e6a3a713a88bba8e7f5f5cda5d4008a6ffeb2293a1bf98f83e04  
node-v6.11.2-linux-x64.tar.gz
+d8e209417b6e69d2c77d662c59d5b082da6d2290c846ca89af9c1239bb7c3626  
node-v6.11.2-linux-x64.tar.xz
+8fc3878009af0892330fbf1337d6bb0627016baff6581d2fea6ec21225be5149  
node-v6.11.2-linux-x86.tar.gz
+93b1a4dae0249a191e98a4841d860531c378ee2451cbdb6a2ac913304de3c3ae  
node-v6.11.2-linux-x86.tar.xz
+5b1a1b465dccf7c1718a312aa03c0fbb80630238cf5b484870fd06ad677e9246  
node-v6.11.2.pkg
+b767372038624ea92322c32c13a808446525d3053921ea83c5d23d5da23c6438  
node-v6.11.2-sunos-x64.tar.gz
+cd4883ce896097540559c918a171734fab8ff77095740f0a65cf474828e9b72c  
node-v6.11.2-sunos-x64.tar.xz
+00561dbf15bccd16e29670f84ccc03905507d31e6434e6a72a1f4a6211fae90e  
node-v6.11.2-sunos-x86.tar.gz
+21536664e7de358e28d5b52e7f6e070cfc1c376b1ff7e67b438727a14be25746  
node-v6.11.2-sunos-x86.tar.xz
+20146ed51b638404665737ed8a25cc06e96d7d7259eb90a4bdec4730a78002a6  
node-v6.11.2.tar.gz
+04af4992238b19124ea56f1bcfda36827613a24eb3b00fc3b50f261a415a26e4  
node-v6.11.2.tar.xz
+9189de5ef26e40bc77c2f999368a136c8dfb13d16298c0037a7cd2135adee4be  
node-v6.11.2-win-x64.7z
+b8a7f49baece10b01a51145edc95d5093e385e9e598a38f2e66c247caf6d0286  
node-v6.11.2-win-x64.zip
+e38c74a43f72cce05caeaf77afb49f6979345b7a891abdcd5d9e4b72d34cc710  
node-v6.11.2-win-x86.7z
+111631fa1f27b03bc96e3a400460713c79b7f24c924fc0a090983ed207ed8ef7  
node-v6.11.2-win-x86.zip
+ce57b050e11b3b8d46e18c85512384c8e2b1c0bd9f7832ba9786e175152a02a0  
node-v6.11.2-x64.msi
+7799df1770f0574c3fbc60343ed77a7823b3104910c9a5ebcb3e08c1e8c8eb28  
node-v6.11.2-x86.msi
+0640f37d16374247e2ebb2ce8347b93d517fbb69592f7ccf4707a9addc01555c  
win-x64/node.exe
+a7cc4c74c7281b4dc8ef40e13ce54eff2db4622af07c00b854b368a58938b8f4  
win-x64/node.lib
+32c279e7997c51cccc65dd445fbecc2c4e2312bc21b22193283a0500c361959a  
win-x64/node_pdb.7z
+cff0bfadb446b2e49db97916a6cf07f38bdf58e3981c1dd7809e7b5d63255ea9  
win-x64/node_pdb.zip
+0966b01b8bb9dc4fb294a1b5705c693006b54bdb9a369898e172642fe4ecda2e  
win-x86/node.exe
+b525d499e708bbf0df6ee04f4381911851ea4ebe374d194a639824e8bd3acf79  
win-x86/node.lib
+db6cc8f48362502dfb06b9c5e3abc2ded4da1e6981ed157030630a831f9e8800  
win-x86/node_pdb.7z
+0b3546a91f65688237fd47f5393ebffa2f487ee49828a2f4b7532ea5b368879c  
win-x86/node_pdb.zip

++++++ SHASUMS256.txt.sig ++++++
Binary files /var/tmp/diff_new_pack.CbAD9s/_old and 
/var/tmp/diff_new_pack.CbAD9s/_new differ

++++++ node-v6.11.1.tar.xz -> node-v6.11.2.tar.xz ++++++
/work/SRC/openSUSE:Factory/nodejs6/node-v6.11.1.tar.xz 
/work/SRC/openSUSE:Factory/.nodejs6.new/node-v6.11.2.tar.xz differ: char 26, 
line 1


++++++ versioned.patch ++++++
--- /var/tmp/diff_new_pack.CbAD9s/_old  2017-08-24 18:54:17.965364346 +0200
+++ /var/tmp/diff_new_pack.CbAD9s/_new  2017-08-24 18:54:17.965364346 +0200
@@ -8,10 +8,10 @@
 
 This is also important for generation of binary
 modules for multiple versions of NodeJS
-Index: node-v6.11.0/node.gyp
+Index: node-v6.11.2/node.gyp
 ===================================================================
---- node-v6.11.0.orig/node.gyp
-+++ node-v6.11.0/node.gyp
+--- node-v6.11.2.orig/node.gyp
++++ node-v6.11.2/node.gyp
 @@ -19,7 +19,7 @@
      'node_shared_openssl%': 'false',
      'node_v8_options%': '',
@@ -21,7 +21,7 @@
      'library_files': [
        'lib/internal/bootstrap_node.js',
        'lib/_debug_agent.js',
-@@ -762,10 +762,10 @@
+@@ -432,10 +432,10 @@
              {
                'action_name': 'node_dtrace_provider_o',
                'inputs': [
@@ -34,7 +34,7 @@
                ],
                'action': [ 'dtrace', '-G', '-xnolibs', '-s', 
'src/node_provider.d',
                  '<@(_inputs)', '-o', '<@(_outputs)' ]
-@@ -815,7 +815,7 @@
+@@ -485,7 +485,7 @@
                  '<(SHARED_INTERMEDIATE_DIR)/v8constants.h'
                ],
                'outputs': [
@@ -43,7 +43,18 @@
                ],
                'conditions': [
                  [ 'target_arch=="ia32"', {
-@@ -927,7 +927,7 @@
+@@ -546,8 +546,8 @@
+       ],
+ 
+       'variables': {
+-        'OBJ_PATH': '<(OBJ_DIR)/node/src',
+-        'OBJ_GEN_PATH': '<(OBJ_DIR)/node/gen',
++        'OBJ_PATH': '<(OBJ_DIR)/node6/src',
++        'OBJ_GEN_PATH': '<(OBJ_DIR)/node6/gen',
+         'OBJ_SUFFIX': 'o',
+         'conditions': [
+           ['OS=="win"', {
+@@ -655,7 +655,7 @@
      ['OS=="aix"', {
        'targets': [
          {
@@ -52,10 +63,10 @@
            'conditions': [
              ['node_shared=="true"', {
                'type': 'shared_library',
-Index: node-v6.11.0/Makefile
+Index: node-v6.11.2/Makefile
 ===================================================================
---- node-v6.11.0.orig/Makefile
-+++ node-v6.11.0/Makefile
+--- node-v6.11.2.orig/Makefile
++++ node-v6.11.2/Makefile
 @@ -37,10 +37,10 @@ BUILDTYPE_LOWER := $(shell echo $(BUILDT
  EXEEXT := $(shell $(PYTHON) -c \
                "import sys; print('.exe' if sys.platform == 'win32' else '')")
@@ -69,10 +80,10 @@
  
  # Flags for packaging.
  BUILD_DOWNLOAD_FLAGS ?= --download=all
-Index: node-v6.11.0/tools/install.py
+Index: node-v6.11.2/tools/install.py
 ===================================================================
---- node-v6.11.0.orig/tools/install.py
-+++ node-v6.11.0/tools/install.py
+--- node-v6.11.2.orig/tools/install.py
++++ node-v6.11.2/tools/install.py
 @@ -77,7 +77,7 @@ def install(paths, dst): map(lambda path
  def uninstall(paths, dst): map(lambda path: try_remove(path, dst), paths)
  
@@ -165,10 +176,10 @@
  
  def run(args):
    global node_prefix, install_path, target_defaults, variables
-Index: node-v6.11.0/doc/node.1
+Index: node-v6.11.2/doc/node.1
 ===================================================================
---- node-v6.11.0.orig/doc/node.1
-+++ node-v6.11.0/doc/node.1
+--- node-v6.11.2.orig/doc/node.1
++++ node-v6.11.2/doc/node.1
 @@ -26,12 +26,12 @@
  
  .SH NAME
@@ -201,10 +212,10 @@
  .RB [ \-\-v8-options ]
  
  Execute without arguments to start the REPL.
-Index: node-v6.11.0/src/node.stp
+Index: node-v6.11.2/src/node.stp
 ===================================================================
---- node-v6.11.0.orig/src/node.stp
-+++ node-v6.11.0/src/node.stp
+--- node-v6.11.2.orig/src/node.stp
++++ node-v6.11.2/src/node.stp
 @@ -1,4 +1,4 @@
 -probe node_net_server_connection = 
process("node").mark("net__server__connection")
 +probe node_net_server_connection = 
process("node6").mark("net__server__connection")
@@ -274,10 +285,10 @@
  {
    scavenge = 1 << 0;
    compact = 1 << 1;
-Index: node-v6.11.0/deps/npm/man/man1/npm.1
+Index: node-v6.11.2/deps/npm/man/man1/npm.1
 ===================================================================
---- node-v6.11.0.orig/deps/npm/man/man1/npm.1
-+++ node-v6.11.0/deps/npm/man/man1/npm.1
+--- node-v6.11.2.orig/deps/npm/man/man1/npm.1
++++ node-v6.11.2/deps/npm/man/man1/npm.1
 @@ -1,11 +1,11 @@
  .TH "NPM" "1" "November 2016" "" ""
  .SH "NAME"
@@ -407,20 +418,20 @@
  
  .RE
  
-Index: node-v6.11.0/deps/npm/bin/npm-cli.js
+Index: node-v6.11.2/deps/npm/bin/npm-cli.js
 ===================================================================
---- node-v6.11.0.orig/deps/npm/bin/npm-cli.js
-+++ node-v6.11.0/deps/npm/bin/npm-cli.js
+--- node-v6.11.2.orig/deps/npm/bin/npm-cli.js
++++ node-v6.11.2/deps/npm/bin/npm-cli.js
 @@ -1,4 +1,4 @@
 -#!/usr/bin/env node
 +#!/usr/bin/env node6
  ;(function () { // wrapper in case we're in module_context mode
    // windows: running "npm blah" in this folder will invoke WSH, not node.
    /*global WScript*/
-Index: node-v6.11.0/src/node_main.cc
+Index: node-v6.11.2/src/node_main.cc
 ===================================================================
---- node-v6.11.0.orig/src/node_main.cc
-+++ node-v6.11.0/src/node_main.cc
+--- node-v6.11.2.orig/src/node_main.cc
++++ node-v6.11.2/src/node_main.cc
 @@ -52,6 +52,7 @@ int wmain(int argc, wchar_t *wargv[]) {
  int main(int argc, char *argv[]) {
    // Disable stdio buffering, it interacts poorly with printf()


Reply via email to