Hello community,

here is the log from the commit of package nodejs6 for openSUSE:Factory checked 
in at 2017-10-26 18:44:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nodejs6 (Old)
 and      /work/SRC/openSUSE:Factory/.nodejs6.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "nodejs6"

Thu Oct 26 18:44:20 2017 rev:15 rq:536528 version:6.11.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/nodejs6/nodejs6.changes  2017-10-05 
12:07:20.308380144 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs6.new/nodejs6.changes     2017-10-26 
18:44:22.143993381 +0200
@@ -1,0 +2,20 @@
+Wed Oct 25 05:19:03 UTC 2017 - qantas94he...@gmail.com
+
+- New upstream LTS release 6.11.5:
+  * zlib: (CVE-2017-14919: only affects TW) In zlib v1.2.9, a
+    change was made that causes an exception to be thrown when a
+    raw deflate stream is initialized with windowBits set to 8.
+    Node.js will now gracefully set windowBits to 9 (replicating
+    the legacy behavior) to avoid a DOS vector.
+
+-------------------------------------------------------------------
+Thu Oct 19 08:07:05 UTC 2017 - adam.ma...@suse.de
+
+- Make sure npm program remains executable
+
+-------------------------------------------------------------------
+Fri Oct 13 11:04:51 UTC 2017 - adam.ma...@suse.de
+
+- Replace {{node_version_major}} with RPM define %node_version_number
+  for simpler spec file review.
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ nodejs6.spec ++++++
--- /var/tmp/diff_new_pack.ihXaZA/_old  2017-10-26 18:44:23.159945966 +0200
+++ /var/tmp/diff_new_pack.ihXaZA/_new  2017-10-26 18:44:23.159945966 +0200
@@ -26,9 +26,11 @@
 ###########################################################
 
 Name:           nodejs6
-Version:        6.11.4
+Version:        6.11.5
 Release:        0
 
+%define node_version_number 6
+
 %if 0%{?sles_version} == 11
 %define _libexecdir %{_exec_prefix}/lib
 %endif
@@ -121,7 +123,7 @@
 # version available.
 %if 0%{?sles_version} == 11
 # GCC 5 is only available in the SUSE:SLE-11:SP4:Update repository (SDK).
-%if 6 >= 8
+%if %node_version_number >= 8
 BuildRequires:  gcc5-c++
 %define cc_exec  gcc-5
 %define cpp_exec g++-5
@@ -134,7 +136,7 @@
 
 # SLE 12 and Leap 42
 %if 0%{?suse_version} == 1315
-%if 6 >= 8
+%if %node_version_number >= 8
 BuildRequires:  gcc6-c++
 %define cc_exec  gcc-6
 %define cpp_exec g++-6
@@ -238,13 +240,13 @@
 %prep
 echo "`grep node-v%{version}.tar.xz %{S:1} | head -n1 | cut -c1-64`  %{S:0}" | 
sha256sum -c
 %setup -q -n node-v%{version}
-%if 6 < 6
+%if %node_version_number < 6
 %patch1 -p1
 %endif
-%if 6 < 6
+%if %node_version_number < 6
 %patch2 -p1
 %endif
-%if 6 < 6
+%if %node_version_number < 6
 %patch3 -p1
 %endif
 %patch101 -p1
@@ -311,59 +313,42 @@
 rm -f %{buildroot}%{_datadir}/doc/node/lldb_commands.py
 
 # npm man page
-install -D -m 644 deps/npm/man/man1/npm.1 %{buildroot}%{_mandir}/man1/npm6.1
+install -D -m 644 deps/npm/man/man1/npm.1 
%{buildroot}%{_mandir}/man1/npm%{node_version_number}.1
 
 #node-gyp needs common.gypi too
 install -D -m 644 common.gypi \
-       
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/node-gyp/common.gypi
+       
%{buildroot}%{_libdir}/node_modules/npm%{node_version_number}/node_modules/node-gyp/common.gypi
 #       %%{buildroot}%%{_datadir}/node/common.gypi
 # install addon-rpm.gypi
 install -D -m 644 addon-rpm.gypi \
-       
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/node-gyp/addon-rpm.gypi
+       
%{buildroot}%{_libdir}/node_modules/npm%{node_version_number}/node_modules/node-gyp/addon-rpm.gypi
 
 # clean
 # hidden files and directories
-find %{buildroot}%{_libdir}/node_modules/npm6 -name ".*" -print0 | xargs -r0 
-0 rm -rf --
+find %{buildroot}%{_libdir}/node_modules/npm%{node_version_number} -name ".*" 
-print0 | xargs -r0 -0 rm -rf --
 # windows stuff
-find %{buildroot}%{_libdir}/node_modules/npm6 -name "*.bat" -delete
-find %{buildroot}%{_libdir}/node_modules/npm6 -name "*.cmd" -delete
+find %{buildroot}%{_libdir}/node_modules/npm%{node_version_number} -name 
"*.bat" -delete
+find %{buildroot}%{_libdir}/node_modules/npm%{node_version_number} -name 
"*.cmd" -delete
 # build stuff
-find %{buildroot}%{_libdir}/node_modules/npm6 -name "Makefile" -delete
-rm -rf %{buildroot}%{_libdir}/node_modules/npm6/{test,scripts}
-find %{buildroot}%{_libdir}/node_modules/npm6/node_modules -name "*.sh" -delete
-rm -rf %{buildroot}%{_libdir}/node_modules/npm6/node_modules/node-gyp/src
+find %{buildroot}%{_libdir}/node_modules/npm%{node_version_number} -name 
"Makefile" -delete
+rm -rf 
%{buildroot}%{_libdir}/node_modules/npm%{node_version_number}/{test,scripts}
+find 
%{buildroot}%{_libdir}/node_modules/npm%{node_version_number}/node_modules 
-name "*.sh" -delete
+rm -rf 
%{buildroot}%{_libdir}/node_modules/npm%{node_version_number}/node_modules/node-gyp/src
 # remove examples/tests/benchmark stuff
-find %{buildroot}%{_libdir}/node_modules/npm6/node_modules -name "example*" 
-print0 | xargs -0 rm -rf --
-find %{buildroot}%{_libdir}/node_modules/npm6/NODE_MODULES -name "test*" 
-print0 | xargs -0 rm -rf --
-find %{buildroot}%{_libdir}/node_modules/npm6/node_modules -name "*_test.*" 
-delete
-find %{buildroot}%{_libdir}/node_modules/npm6/node_modules -type d -name 
"benchmark" -print0 | xargs -0 rm -rf --
-# README.md LICENSE file permission
-find %{buildroot}%{_libdir}/node_modules/npm6 -name "README.md" -exec chmod -x 
{} +
-find %{buildroot}%{_libdir}/node_modules/npm6 -name "LICENSE" -exec chmod -x 
{} +
-# browser.js is useless for npm cli
-find %{buildroot}%{_libdir}/node_modules/npm6 -name "browser.js" -delete
+find 
%{buildroot}%{_libdir}/node_modules/npm%{node_version_number}/node_modules 
-name "example*" -print0 | xargs -0 rm -rf --
+find 
%{buildroot}%{_libdir}/node_modules/npm%{node_version_number}/NODE_MODULES 
-name "test*" -print0 | xargs -0 rm -rf --
+find 
%{buildroot}%{_libdir}/node_modules/npm%{node_version_number}/node_modules 
-name "*_test.*" -delete
+find 
%{buildroot}%{_libdir}/node_modules/npm%{node_version_number}/node_modules 
-type d -name "benchmark" -print0 | xargs -0 rm -rf --
+
 # fix permissions
-chmod 0644 
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/hawk/node_modules/sntp/lib/index.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/qs/lib/parse.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/hawk/lib/index.js
 \
-   %{buildroot}%{_libdir}/node_modules/npm6/node_modules/config-chain/index.js 
\
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/qs/lib/stringify.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/hawk/lib/client.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/hawk/lib/crypto.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/hawk/lib/utils.js
 \
-   %{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/index.js \
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/qs/lib/index.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/hawk/node_modules/boom/lib/index.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/hawk/lib/server.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/hawk/node_modules/cryptiles/lib/index.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/hawk/node_modules/sntp/index.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/request/node_modules/qs/lib/utils.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm6/node_modules/uid-number/get-uid-gid.js 
\
-   %{buildroot}%{_libdir}/node_modules/npm6/bin/read-package-json.js
+find %{buildroot}%{_libdir}/node_modules -type f -exec chmod -x {} +
+chmod 0755 
%{buildroot}%{_libdir}/node_modules/npm%{node_version_number}/bin/np*-cli.js
+# browser.js is useless for npm cli
+find %{buildroot}%{_libdir}/node_modules/npm%{node_version_number} -name 
"browser.js" -delete
 
 # file duplicates
-%fdupes %{buildroot}%{_libdir}/node_modules/npm6
-%fdupes %{buildroot}%{_includedir}/node6
+%fdupes %{buildroot}%{_libdir}/node_modules/npm%{node_version_number}
+%fdupes %{buildroot}%{_includedir}/node%{node_version_number}
 
 # Update alternatives
 mkdir -p %{buildroot}%{_sysconfdir}/alternatives
@@ -375,7 +360,7 @@
 ln -s %{_sysconfdir}/alternatives/node.1%{ext_man}     
%{buildroot}%{_mandir}/man1/node.1%{ext_man}
 ln -s %{_sysconfdir}/alternatives/npm-default          
%{buildroot}%{_bindir}/npm-default
 ln -s %{_sysconfdir}/alternatives/npm.1%{ext_man}      
%{buildroot}%{_mandir}/man1/npm.1%{ext_man}
-%if 6 >= 8
+%if %{node_version_number} >= 8
 ln -s -f npx-default      %{buildroot}%{_sysconfdir}/alternatives/npx-default
 ln -s -f npx.1%{ext_man}  
%{buildroot}%{_sysconfdir}/alternatives/npx.1%{ext_man}
 ln -s %{_sysconfdir}/alternatives/npx-default          
%{buildroot}%{_bindir}/npx-default
@@ -384,33 +369,33 @@
 
 # Check that Node.js isn't completely broken.
 %check
-%{buildroot}%{_bindir}/node6 -e 
'require("assert").strictEqual(process.versions.node, "%{version}");'
+%{buildroot}%{_bindir}/node%{node_version_number} -e 
'require("assert").strictEqual(process.versions.node, "%{version}");'
 
 %files
 %defattr(-, root, root)
 %doc AUTHORS LICENSE *.md
 %doc deps/v8/tools/gdbinit
 %dir %{_libdir}/node_modules
-%{_bindir}/node6
-%{_mandir}/man1/node6.1%{ext_man}
+%{_bindir}/node%{node_version_number}
+%{_mandir}/man1/node%{node_version_number}.1%{ext_man}
 %ghost %{_bindir}/node-default
 %ghost %{_mandir}/man1/node.1%{ext_man}
 %ghost %{_sysconfdir}/alternatives/node-default
 %ghost %{_sysconfdir}/alternatives/node.1%{ext_man}
-%exclude %{_libdir}/node_modules/npm6
+%exclude %{_libdir}/node_modules/npm%{node_version_number}
 
-%files -n npm6
+%files -n npm%{node_version_number}
 %defattr(-, root, root)
-%{_bindir}/npm6
-%{_libdir}/node_modules/npm6
-%{_mandir}/man1/npm6.1%{ext_man}
+%{_bindir}/npm%{node_version_number}
+%{_libdir}/node_modules/npm%{node_version_number}
+%{_mandir}/man1/npm%{node_version_number}.1%{ext_man}
 %ghost %{_bindir}/npm-default
 %ghost %{_mandir}/man1/npm.1%{ext_man}
 %ghost %{_sysconfdir}/alternatives/npm-default
 %ghost %{_sysconfdir}/alternatives/npm.1%{ext_man}
 
-%if 6 >= 8
-%{_bindir}/npx6
+%if %{node_version_number} >= 8
+%{_bindir}/npx%{node_version_number}
 %ghost %{_bindir}/npx-default
 %ghost %{_mandir}/man1/npx.1%{ext_man}
 %ghost %{_sysconfdir}/alternatives/npx-default
@@ -419,10 +404,10 @@
 
 %files devel
 %defattr(-, root, root)
-%{_includedir}/node6
+%{_includedir}/node%{node_version_number}
 %dir %{_datadir}/systemtap
 %dir %{_datadir}/systemtap/tapset
-%{_datadir}/systemtap/tapset/node6.stp
+%{_datadir}/systemtap/tapset/node%{node_version_number}.stp
 
 %files docs
 %defattr(-,root,root)
@@ -430,31 +415,31 @@
 
 %post
 update-alternatives \
-        --install %{_bindir}/node-default node-default %{_bindir}/node6 6 \
-        --slave %{_mandir}/man1/node.1%{ext_man} node.1%{ext_man} 
%{_mandir}/man1/node6.1%{ext_man}
+        --install %{_bindir}/node-default node-default 
%{_bindir}/node%{node_version_number} %{node_version_number} \
+        --slave %{_mandir}/man1/node.1%{ext_man} node.1%{ext_man} 
%{_mandir}/man1/node%{node_version_number}.1%{ext_man}
 
 %postun
-if [ ! -f %{_bindir}/node6 ] ; then
-    update-alternatives --remove node-default %{_bindir}/node6
+if [ ! -f %{_bindir}/node%{node_version_number} ] ; then
+    update-alternatives --remove node-default 
%{_bindir}/node%{node_version_number}
 fi
 
-%post -n npm6
+%post -n npm%{node_version_number}
 update-alternatives \
-        --install %{_bindir}/npm-default npm-default %{_bindir}/npm6 6 \
-        --slave %{_mandir}/man1/npm.1%{ext_man} npm.1%{ext_man} 
%{_mandir}/man1/npm6.1%{ext_man}
-%if 6 >= 8
+        --install %{_bindir}/npm-default npm-default 
%{_bindir}/npm%{node_version_number} %{node_version_number} \
+        --slave %{_mandir}/man1/npm.1%{ext_man} npm.1%{ext_man} 
%{_mandir}/man1/npm%{node_version_number}.1%{ext_man}
+%if %{node_version_number} >= 8
 update-alternatives \
-        --install %{_bindir}/npx-default npx-default %{_bindir}/npx6 6 \
-        --slave %{_mandir}/man1/npx.1%{ext_man} npx.1%{ext_man} 
%{_mandir}/man1/npx6.1%{ext_man}
+        --install %{_bindir}/npx-default npx-default 
%{_bindir}/npx%{node_version_number} %{node_version_number} \
+        --slave %{_mandir}/man1/npx.1%{ext_man} npx.1%{ext_man} 
%{_mandir}/man1/npx%{node_version_number}.1%{ext_man}
 %endif
 
-%postun -n npm6
-if [ ! -f %{_bindir}/npm6 ] ; then
-    update-alternatives --remove npm-default %{_bindir}/npm6
+%postun -n npm%{node_version_number}
+if [ ! -f %{_bindir}/npm%{node_version_number} ] ; then
+    update-alternatives --remove npm-default 
%{_bindir}/npm%{node_version_number}
 fi
-%if 6 >= 8
-if [ ! -f %{_bindir}/npx6 ] ; then
-    update-alternatives --remove npx-default %{_bindir}/npx6
+%if %{node_version_number} >= 8
+if [ ! -f %{_bindir}/npx%{node_version_number} ] ; then
+    update-alternatives --remove npx-default 
%{_bindir}/npx%{node_version_number}
 fi
 %endif
 

++++++ SHASUMS256.txt ++++++
--- /var/tmp/diff_new_pack.ihXaZA/_old  2017-10-26 18:44:23.207943726 +0200
+++ /var/tmp/diff_new_pack.ihXaZA/_new  2017-10-26 18:44:23.207943726 +0200
@@ -1,42 +1,42 @@
-1a7c75efe627e63abfb2d663a379b39aea1ce367bcb5d02d315726c96af72d04  
node-v6.11.4-aix-ppc64.tar.gz
-02d569fd805b8bfa7627c11d90e0876109d19c27e3b5285effe9385b6632728f  
node-v6.11.4-darwin-x64.tar.gz
-1e1dddda3898250afcc4ca928fc294abd4da17fd86910591bbc6deeb3a41dd19  
node-v6.11.4-darwin-x64.tar.xz
-10a8916ce5de142921c2346595bb8777a4c0a38e15335a5a7f8f88bcfc64954c  
node-v6.11.4-headers.tar.gz
-a232cfcea8a376f3e7fb95e4a7a9da13bf29edbbca286a8976f3fad14eb492b4  
node-v6.11.4-headers.tar.xz
-a0942b7b2cd0e79c63fc9d5c6ae62863e0752b185769b71c6b54f5313dcb07b1  
node-v6.11.4-linux-arm64.tar.gz
-f8ab07e3209e07a8ba74e0ad704f91eeddeaf9817a6e599f89928c153231330e  
node-v6.11.4-linux-arm64.tar.xz
-270ac0a770d551460f4841f4c192e697e51660fab967cf721348608729928cb5  
node-v6.11.4-linux-armv6l.tar.gz
-f6cba5c2d770c036852e875711ec74871a3b5fc11bce27597ae32672f9a5d101  
node-v6.11.4-linux-armv6l.tar.xz
-00cd026d561783b46380269f1f304c865b369e05108991c16eae1ea21b9412a0  
node-v6.11.4-linux-armv7l.tar.gz
-35bcad5396e61311ee7feec8eeeeaba7675a1660081a10751c851c831d3a66cb  
node-v6.11.4-linux-armv7l.tar.xz
-109fdfbba8cdd0b4cad0974061a470fc0433e71e1f1a4dc96ff41a0ce56193b5  
node-v6.11.4-linux-ppc64le.tar.gz
-8d4a2f56a1ab8c7353776a182410a550f586af0d14290c46564f35abaa769049  
node-v6.11.4-linux-ppc64le.tar.xz
-fa3f9c4513ffe6736cbf2552f8207569347cdf5b4c12b51b6472917e39060a8b  
node-v6.11.4-linux-ppc64.tar.gz
-3fe05cedde62771842b631206d01f7180661fec60293e104ac06c8f103c9c540  
node-v6.11.4-linux-ppc64.tar.xz
-43a73fd4f4c1c0a2b5b2216cbeebed5640f82284bd2b1678539010ec7271b916  
node-v6.11.4-linux-s390x.tar.gz
-48031013cf162b10bdc0a1269c21366cef16f609e60919c42052fa8f9af6fd28  
node-v6.11.4-linux-s390x.tar.xz
-31af453105ab3eaf0f266de083374a98c25e9bdc4c14a7d449e6a97e5814df0f  
node-v6.11.4-linux-x64.tar.gz
-74e125920e141357bab6ded58198c5f5ee98bf638aaff474ffb355ab699d6a26  
node-v6.11.4-linux-x64.tar.xz
-7d289b722eb2f0210e228c8af521b30686108c67315687a8f942e0d8f7303e94  
node-v6.11.4-linux-x86.tar.gz
-8d596073472915713c6368776e97b165fabd6e94ee6813128dbc403c066dcc2e  
node-v6.11.4-linux-x86.tar.xz
-22917c22b637b7cafdabf00d099b6c5a3a01bc902a800d1718be5c6128820784  
node-v6.11.4.pkg
-086c534a4bf1e70e480e78c99c126d1e209fe87d725b5d2ddffcb966ddf64bfa  
node-v6.11.4-sunos-x64.tar.gz
-765db9fc092fce67286ea81faaedbb3918591854b0369723ce4b2a9557d7f16d  
node-v6.11.4-sunos-x64.tar.xz
-87297b7c8bf05d2f8de7b990506de8d0e8238f46be096be9274bab481e505488  
node-v6.11.4-sunos-x86.tar.gz
-6d0679f854d3e9610a4db813a62e209d7e76516c4e43ce132574b22a1e6464a7  
node-v6.11.4-sunos-x86.tar.xz
-94557aa1b9adaa71a424eb7efe8877d7e65bda6e496350c4bac5f64ec715bb1c  
node-v6.11.4.tar.gz
-4c2f0435e3088136ac4bc75236a7717f189d590a13f490065e7b3b8e5aacd450  
node-v6.11.4.tar.xz
-81d3b153a4dcfe25df925d3f7a589121fce1f1523cf67aa8156115968938eb76  
node-v6.11.4-win-x64.7z
-3542c689e9636d65e6268ee82b2ca549dafc2e0d1553987b42bd93f50b1909ff  
node-v6.11.4-win-x64.zip
-2e4bbc044561c029c73ad07d8cf2b9455fdcf2892797dcb5757a8f8bca4d4f5e  
node-v6.11.4-win-x86.7z
-84601504841f1d4e29f4922321d58a3cdbf6b66233106bf335ad16fe4fc22f89  
node-v6.11.4-win-x86.zip
-b8f166a77783905385ca1ba9758a025a4ac61eb9c2a14c500be59f09fed66335  
node-v6.11.4-x64.msi
-703961d99bbf6f01268ef552af4c641649ea38182767015dbb1ec4a09ca07325  
node-v6.11.4-x86.msi
-a469db1801f6bd8c2848ccbb04b51b0b1df0198101fcd5a82eeedd7a1fe86b9a  
win-x64/node.exe
-8d910f92455961ee8fa956041e0ff6fc98de9af64da45351e1144e9047f03427  
win-x64/node.lib
-809e26f2ff5d30475b701edc2fd09f1505e88366c7bf548adb0c4bc56e27883b  
win-x64/node_pdb.7z
-b8cd4f68f76f39db21031c65161d5985ceeeead182f548aaf9bd4c7e9f310314  
win-x64/node_pdb.zip
-858b7c60450d0f554ba5c4a3e1a68707a0ed29ba2e2714e72e2e3e20c18e1f0c  
win-x86/node.exe
-96dbc4725b3ba3a23ed6659992e35ead19a4927750074f78d3d6d0002d3d25de  
win-x86/node.lib
-de8b7a5c237527f221815fdf799210e3b0cd5e22a1c5543293cb931a9c9f33c3  
win-x86/node_pdb.7z
-1a58c6b9046486a9466e840d61bbbd139231cd519f401493a688025a52020b17  
win-x86/node_pdb.zip
+907cc72126bfcfed2040ded546649ee1023d8839fc898447bf8435f8b204b654  
node-v6.11.5-aix-ppc64.tar.gz
+fc0a3ba17e0be7ffe86f9941212dd00905524d6d48dd8cafb63da6adca20a4fc  
node-v6.11.5-darwin-x64.tar.gz
+daedeac624d5a1c177254fa080de7f0ee5426fce57e7bcad554b354c81a69cbc  
node-v6.11.5-darwin-x64.tar.xz
+9e5ab2412d1f2d0a0dc30592e2b2f707e20203ef3d2f7472f0b3ad5d5c8d5e83  
node-v6.11.5-headers.tar.gz
+90c65a66f2538bade1b470d0bf9deaeef1652f39aadb0d5b2e1d2e218828462d  
node-v6.11.5-headers.tar.xz
+b879b852c3588f3ce7d748273ede959306268e5b2ca199d76b4592c2fb4a0d43  
node-v6.11.5-linux-arm64.tar.gz
+7f073097e0016aaa1abac8a4e554dd1e534339540be12fbd582670c45436ddca  
node-v6.11.5-linux-arm64.tar.xz
+d25348044b63bc1546951a2b05f7c4f48d74bc3519fd911f9006e979c4511b0f  
node-v6.11.5-linux-armv6l.tar.gz
+043049e3bd4782a435abfef73696d6bc8f0c75938592503352d47755e807f0f7  
node-v6.11.5-linux-armv6l.tar.xz
+17529148085a8d9e6d8c37f29b12aea0f0c3ef1585bb45290b7a16c76ecd392d  
node-v6.11.5-linux-armv7l.tar.gz
+c2cf97f23c8d55e0d919fb4e3649fd69ccc8acc6668891fc13a052a8679d801e  
node-v6.11.5-linux-armv7l.tar.xz
+12237a2616212f29ce1957e1ec3514eff1abfe433f5cd5aec47fceb79ecb0f86  
node-v6.11.5-linux-ppc64le.tar.gz
+867003e1fc47a1e41b4f35a2f7874e54c3d85ae3568d460a05891500abeabf29  
node-v6.11.5-linux-ppc64le.tar.xz
+7aa9f48abdeb3f38cf025966a3b821c56fc6f91aea977906513db6f28b283bd0  
node-v6.11.5-linux-ppc64.tar.gz
+c6102cf999afc833afb16068f841318fb31fd4168ca0bf6e9c9649ce929df4e7  
node-v6.11.5-linux-ppc64.tar.xz
+796e1dd5d4585066b0c4c492162b1962d8d02efec31d40296a15b9cdf8d7fe52  
node-v6.11.5-linux-s390x.tar.gz
+a2d4e4dc8c02fee8e491b411653e0892005831b8caff9d3de220ad1cefb9bcb2  
node-v6.11.5-linux-s390x.tar.xz
+fffd25c9e9b6d2235e97ba8be1dd6ea5f31e32ea445c5cc704ca84ef44db66c1  
node-v6.11.5-linux-x64.tar.gz
+8f8ddac70a5213032bbfdcb3cac6e0723374428ad4fa4af2d9b4444177f2b1a9  
node-v6.11.5-linux-x64.tar.xz
+8594a9087f66efbccc1ef4a6eee1484ab14edac2b379b87affeee29fcbbd6d36  
node-v6.11.5-linux-x86.tar.gz
+6d8f3e0fd49f44d75c10b21c0bcb92a524faf7cbab8b740e0b9a2f8b3efe4a63  
node-v6.11.5-linux-x86.tar.xz
+4455eb8a57f9d72300b019212b229c0aa4eb5294391cb3f6df351f928b1a44c9  
node-v6.11.5.pkg
+577f9e938613c4be6137b95bcde51050b4213577457ba9c2ee57ca343df62bd2  
node-v6.11.5-sunos-x64.tar.gz
+11b1d072f42ac2bf6812afb5d098781f5c384096586126fa22047d02f50d405d  
node-v6.11.5-sunos-x64.tar.xz
+708888589d29d8ad8c5190b90e2eb5a0a33ce82d37e8693bd798630ecbc7bc6a  
node-v6.11.5-sunos-x86.tar.gz
+7375dbabf0470ec5cc4522339605fe0fc84e539a17c1fd3aa782fdf3f230cea4  
node-v6.11.5-sunos-x86.tar.xz
+c4aed94e82dbf246a1c9e0705c3054f0c0f3d9c4d8d025d877e0ef1f7b6cde4c  
node-v6.11.5.tar.gz
+1c6de415216799fbaeca82304b3fef87accc7101ebf2ead7d5c545e0779e8aaf  
node-v6.11.5.tar.xz
+5ac17f02726b23fe88ed1653d6082f59da42fe17c92570d021c0d8cf594a58d9  
node-v6.11.5-win-x64.7z
+cedd481dfd9b28ce95828fd6b218b286893a308280e499e225fa193d26d580c9  
node-v6.11.5-win-x64.zip
+405db7d106865f074f9cb99790ed0f3946678cdd09ce8b193f6c691be56af9be  
node-v6.11.5-win-x86.7z
+f1089e4b3cfa8d3b1bbddafbc4e501633dc96f4293c08d3f008cdebf6b26786d  
node-v6.11.5-win-x86.zip
+33360c037c792457a2e4b37fd107b26c353f70e779f9236b351bd64d7d0c0240  
node-v6.11.5-x64.msi
+ff85c2c9e8f5748a62dc90bd1aca3087f45f2e202f35f87de45fdf84e9c74ae3  
node-v6.11.5-x86.msi
+2b345a44438b5242f6b6a6f6eee6c1b297b026e5d46e34626dadbd6498eeff77  
win-x64/node.exe
+d13f3c134ea716d1781e1e1c205bb173fefad3cf9378d44825aa52aef0dff473  
win-x64/node.lib
+9e75b7e9fc443749d6b422f2fab524f5cd45321b6965d9896ff7e1388fb6d370  
win-x64/node_pdb.7z
+6bbecdad2ab888660273d557651d781039985c7cbeb625424ffdc797aa5d6319  
win-x64/node_pdb.zip
+b46e1ec5f6b4df812ae8e32e95cbed19e3132d522603d0fde1f4ab0b2a936d09  
win-x86/node.exe
+45dd98664f0bed3159264f22faaa577d34722abfb53166c36de0be55d2d78fbc  
win-x86/node.lib
+909f875ad6508a9486e74addb739e2e525b7a54cf43cc66809d5a46bc2838045  
win-x86/node_pdb.7z
+9b7eefa65919db30f145d16aafc769853209e2c233ed6132566a2da96f4383dd  
win-x86/node_pdb.zip

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

++++++ node-v6.11.4.tar.xz -> node-v6.11.5.tar.xz ++++++
/work/SRC/openSUSE:Factory/nodejs6/node-v6.11.4.tar.xz 
/work/SRC/openSUSE:Factory/.nodejs6.new/node-v6.11.5.tar.xz differ: char 27, 
line 1



Reply via email to