Hello community,

here is the log from the commit of package nodejs4 for openSUSE:Factory checked 
in at 2017-10-25 17:49:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nodejs4 (Old)
 and      /work/SRC/openSUSE:Factory/.nodejs4.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "nodejs4"

Wed Oct 25 17:49:02 2017 rev:16 rq:536529 version:4.8.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/nodejs4/nodejs4.changes  2017-08-13 
14:57:07.286208433 +0200
+++ /work/SRC/openSUSE:Factory/.nodejs4.new/nodejs4.changes     2017-10-25 
17:49:14.226583412 +0200
@@ -1,0 +2,20 @@
+Wed Oct 25 07:02:20 UTC 2017 - qantas94he...@gmail.com
+
+- New upstream maintenance release 4.8.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-v4.8.4.tar.xz

New:
----
  node-v4.8.5.tar.xz

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

Other differences:
------------------
++++++ nodejs4.spec ++++++
--- /var/tmp/diff_new_pack.DKxVWL/_old  2017-10-25 17:49:15.382529158 +0200
+++ /var/tmp/diff_new_pack.DKxVWL/_new  2017-10-25 17:49:15.386528971 +0200
@@ -26,9 +26,11 @@
 ###########################################################
 
 Name:           nodejs4
-Version:        4.8.4
+Version:        4.8.5
 Release:        0
 
+%define node_version_number 4
+
 %if 0%{?sles_version} == 11
 %define _libexecdir %{_exec_prefix}/lib
 %endif
@@ -112,23 +114,39 @@
 BuildRequires:  binutils-gold
 %endif
 
-%if 4 >= 8
+# Node.js 4/6/7 requires GCC 4.8.5+.
+#
+# For Node.js 8.x, upstream requires GCC 4.9.4+, as GCC 4.8 may have
+# slightly buggy C++11 support: https://github.com/nodejs/node/pull/13466
+#
+# If the default compiler is not supported, use the most recent compiler
+# version available.
 %if 0%{?sles_version} == 11
+# GCC 5 is only available in the SUSE:SLE-11:SP4:Update repository (SDK).
+%if %node_version_number >= 8
 BuildRequires:  gcc5-c++
 %define cc_exec  gcc-5
 %define cpp_exec g++-5
 %else
+BuildRequires:  gcc48-c++
+%define cc_exec  gcc-4.8
+%define cpp_exec g++-4.8
+%endif # node >= 8
+%endif # sles == 11
+
+# SLE 12 and Leap 42
+%if 0%{?suse_version} == 1315
+%if %node_version_number >= 8
 BuildRequires:  gcc6-c++
 %define cc_exec  gcc-6
 %define cpp_exec g++-6
-%endif  # node8+ GCC requirements
-%else   # older than node8
-%if 0%{?sles_version} == 11
-BuildRequires:  gcc48-c++
-%else
+%endif
+%endif
+
+# No special version defined, use default.
+%if ! 0%{?cc_exec:1}
 BuildRequires:  gcc-c++
 %endif
-%endif # node7,6,5
 
 BuildRequires:  curl
 BuildRequires:  fdupes
@@ -222,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 4 < 6
+%if %node_version_number < 6
 %patch1 -p1
 %endif
-%if 4 < 7
+%if %node_version_number < 6
 %patch2 -p1
 %endif
-%if 4 < 8
+%if %node_version_number < 6
 %patch3 -p1
 %endif
 %patch101 -p1
@@ -262,10 +280,6 @@
 # script, so we'll do it thus:
 export CFLAGS="%{optflags}"
 export CXXFLAGS="%{optflags}"
-# It seems that GCC 4.8 is needed to compile on SLE 11 SP4.
-%if 0%{?sles_version} == 11
-export CXX="g++-4.8"
-%endif
 
 %if 0%{?cc_exec:1}
 export CC=%{?cc_exec}
@@ -299,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/npm4.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/npm4/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/npm4/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/npm4 -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/npm4 -name "*.bat" -delete
-find %{buildroot}%{_libdir}/node_modules/npm4 -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/npm4 -name "Makefile" -delete
-rm -rf %{buildroot}%{_libdir}/node_modules/npm4/{test,scripts}
-find %{buildroot}%{_libdir}/node_modules/npm4/node_modules -name "*.sh" -delete
-rm -rf %{buildroot}%{_libdir}/node_modules/npm4/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/npm4/node_modules -name "example*" 
-print0 | xargs -0 rm -rf --
-find %{buildroot}%{_libdir}/node_modules/npm4/NODE_MODULES -name "test*" 
-print0 | xargs -0 rm -rf --
-find %{buildroot}%{_libdir}/node_modules/npm4/node_modules -name "*_test.*" 
-delete
-find %{buildroot}%{_libdir}/node_modules/npm4/node_modules -type d -name 
"benchmark" -print0 | xargs -0 rm -rf --
-# README.md LICENSE file permission
-find %{buildroot}%{_libdir}/node_modules/npm4 -name "README.md" -exec chmod -x 
{} +
-find %{buildroot}%{_libdir}/node_modules/npm4 -name "LICENSE" -exec chmod -x 
{} +
-# browser.js is useless for npm cli
-find %{buildroot}%{_libdir}/node_modules/npm4 -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/npm4/node_modules/request/node_modules/hawk/node_modules/sntp/lib/index.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/node_modules/qs/lib/parse.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/node_modules/hawk/lib/index.js
 \
-   %{buildroot}%{_libdir}/node_modules/npm4/node_modules/config-chain/index.js 
\
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/node_modules/qs/lib/stringify.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/node_modules/hawk/lib/client.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/node_modules/hawk/lib/crypto.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/node_modules/hawk/lib/utils.js
 \
-   %{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/index.js \
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/node_modules/qs/lib/index.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/node_modules/hawk/node_modules/boom/lib/index.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/node_modules/hawk/lib/server.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/node_modules/hawk/node_modules/cryptiles/lib/index.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/node_modules/hawk/node_modules/sntp/index.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/request/node_modules/qs/lib/utils.js
 \
-   
%{buildroot}%{_libdir}/node_modules/npm4/node_modules/uid-number/get-uid-gid.js 
\
-   %{buildroot}%{_libdir}/node_modules/npm4/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/npm4
-%fdupes %{buildroot}%{_includedir}/node4
+%fdupes %{buildroot}%{_libdir}/node_modules/npm%{node_version_number}
+%fdupes %{buildroot}%{_includedir}/node%{node_version_number}
 
 # Update alternatives
 mkdir -p %{buildroot}%{_sysconfdir}/alternatives
@@ -363,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 4 >= 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
@@ -372,33 +369,33 @@
 
 # Check that Node.js isn't completely broken.
 %check
-%{buildroot}%{_bindir}/node4 -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}/node4
-%{_mandir}/man1/node4.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/npm4
+%exclude %{_libdir}/node_modules/npm%{node_version_number}
 
-%files -n npm4
+%files -n npm%{node_version_number}
 %defattr(-, root, root)
-%{_bindir}/npm4
-%{_libdir}/node_modules/npm4
-%{_mandir}/man1/npm4.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 4 >= 8
-%{_bindir}/npx4
+%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
@@ -407,10 +404,10 @@
 
 %files devel
 %defattr(-, root, root)
-%{_includedir}/node4
+%{_includedir}/node%{node_version_number}
 %dir %{_datadir}/systemtap
 %dir %{_datadir}/systemtap/tapset
-%{_datadir}/systemtap/tapset/node4.stp
+%{_datadir}/systemtap/tapset/node%{node_version_number}.stp
 
 %files docs
 %defattr(-,root,root)
@@ -418,31 +415,31 @@
 
 %post
 update-alternatives \
-        --install %{_bindir}/node-default node-default %{_bindir}/node4 4 \
-        --slave %{_mandir}/man1/node.1%{ext_man} node.1%{ext_man} 
%{_mandir}/man1/node4.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}/node4 ] ; then
-    update-alternatives --remove node-default %{_bindir}/node4
+if [ ! -f %{_bindir}/node%{node_version_number} ] ; then
+    update-alternatives --remove node-default 
%{_bindir}/node%{node_version_number}
 fi
 
-%post -n npm4
+%post -n npm%{node_version_number}
 update-alternatives \
-        --install %{_bindir}/npm-default npm-default %{_bindir}/npm4 4 \
-        --slave %{_mandir}/man1/npm.1%{ext_man} npm.1%{ext_man} 
%{_mandir}/man1/npm4.1%{ext_man}
-%if 4 >= 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}/npx4 4 \
-        --slave %{_mandir}/man1/npx.1%{ext_man} npx.1%{ext_man} 
%{_mandir}/man1/npx4.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 npm4
-if [ ! -f %{_bindir}/npm4 ] ; then
-    update-alternatives --remove npm-default %{_bindir}/npm4
+%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 4 >= 8
-if [ ! -f %{_bindir}/npx4 ] ; then
-    update-alternatives --remove npx-default %{_bindir}/npx4
+%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.DKxVWL/_old  2017-10-25 17:49:15.430526906 +0200
+++ /var/tmp/diff_new_pack.DKxVWL/_new  2017-10-25 17:49:15.434526718 +0200
@@ -1,39 +1,39 @@
-06213900c7d6ed598355cd11348b204bbb4d8069eaa7425c067ee596f38e7c4d  
node-v4.8.4-darwin-x64.tar.gz
-0b944e08b51233005fa954056f1762a3fad92280e48e384b46dd5bd5695e6afd  
node-v4.8.4-darwin-x64.tar.xz
-fe5cbb91c64df926c49d923348b4861a4e9284c8ecc87e504fbd8ddfbada8384  
node-v4.8.4-headers.tar.gz
-34e879759e0b577dd3900df2092ab3c15df040fbce1fbecc6cca2bef7301ffdf  
node-v4.8.4-headers.tar.xz
-1eb8f8cadc8024fcb01f333ca8cac1db39735491a35122bf5ab1a40ee6bedced  
node-v4.8.4-linux-arm64.tar.gz
-ae2f5a61b6218fced05de8ca8d163d985238aa5e535af1ba2075bd53aa31244f  
node-v4.8.4-linux-arm64.tar.xz
-aaf8c7c4160ef4932004989cddc3723d8a5170ad86a2bd27e10b3e452702e086  
node-v4.8.4-linux-armv6l.tar.gz
-3daa79540c2133859d8d474004e6a7821cca4aa34931657f790707664c5f6346  
node-v4.8.4-linux-armv6l.tar.xz
-8d85b03be742b9494032f34833d766e3037934372cd0e118fd79fde00a3d8d91  
node-v4.8.4-linux-armv7l.tar.gz
-294ef24d3ec7224702b882d81ff9fa7e8c4988af7824c8378cafd2b72294fb14  
node-v4.8.4-linux-armv7l.tar.xz
-2a0627ad0683677febe99a523bb759f40c1934b7da2a1d9623dddda4ecd50063  
node-v4.8.4-linux-ppc64le.tar.gz
-a107957c34b21998abc914006b9566c262243ae38502595611da5cbdebea9283  
node-v4.8.4-linux-ppc64le.tar.xz
-9f252a4e892cdf99a081f3dfdb37ebdfc2c180df39f8850a35dc46fc59d3c2f6  
node-v4.8.4-linux-ppc64.tar.gz
-bb8d7167de39198fa631ab8a5b96cefa377048c5886895e1ddb2686991a39abe  
node-v4.8.4-linux-ppc64.tar.xz
-d1297b6ddec12498f19589c0f44768a9f250ad36ea17f1f715b44aeb89cd32b2  
node-v4.8.4-linux-x64.tar.gz
-a98fc4cf9fcfe1c94dc34c8f58383dc4c2a40f0078735bd8dbf4fa20e075af17  
node-v4.8.4-linux-x64.tar.xz
-53f377f91aad1719539ba7fb591587b3ff8db25dd22d5f23647753cf60184044  
node-v4.8.4-linux-x86.tar.gz
-49ceb4e295837b182a61afd03b9aee353734aba646e98686d928bba2cfe502ce  
node-v4.8.4-linux-x86.tar.xz
-b228e03c67aafb2b01456ef58dc6b238db6d31627205c7a69a6e8e072c961c9a  
node-v4.8.4.pkg
-edff2a0eb071df6d15706202d82da7f4f6fa113e77881d6b70b0b6c350816cd8  
node-v4.8.4-sunos-x64.tar.gz
-11a061ddcb6f877ffb977a269e731e59071d6b3314d254d0a5898e69438f193b  
node-v4.8.4-sunos-x64.tar.xz
-44803d9efb3f5b3b77f90d19e233c8a4e98b752de13ff10ceff9fe8a8094d011  
node-v4.8.4-sunos-x86.tar.gz
-d9a618c458e9ca91a2787fcd6598da5d77aff9292360078356d11ab11b515c88  
node-v4.8.4-sunos-x86.tar.xz
-b5480f69e9e929d2814de900fb5e673743a9d93f4fecbd79066baf18219f8584  
node-v4.8.4.tar.gz
-35fe633a48cbe93c79327161d9dc964ac9810f4ceb2ed8628487e6e14a15905b  
node-v4.8.4.tar.xz
-bad999c784955ed808a2ce67ed2c0dc4b71e2abde873fbe912128f74ae5310b0  
node-v4.8.4-win-x64.7z
-8ebb31340af2d490a272cf0d3fdf07a60914fd79f40ac54b25babba7fcd9af25  
node-v4.8.4-win-x64.zip
-95c026c449f653a4de6768ae3c319383411c9c4898bef25691ae0b6038774d31  
node-v4.8.4-win-x86.7z
-02a38a9a3c723e8df033a9d15d1ffe492b7da42cea8f56d81148c3ac930afe81  
node-v4.8.4-win-x86.zip
-f5a15cbf5944f566e0ff917686f9290a688dedc24ce4bd237846f6353c20b640  
node-v4.8.4-x64.msi
-72190dcb1cebdbb05899acc3dea5d2dcad94dc811db289d015bb0e065c92e4ae  
node-v4.8.4-x86.msi
-30e1308011f5e738d01ef406d3fe2648a66a7c042eb9aba3ca21b934a55fb61c  
win-x64/node.exe
-51e7ebeed49def988e3398bf8a70bbba67ed38346439924dbdf9c01827016789  
win-x64/node.lib
-0a919967ed1cb6d1f7763ddbb2594f8f93adbcab2296192310faaf52d35fd6d1  
win-x64/node_pdb.7z
-ab593c61f1a39c93774c551116fa96f6b904c3dde9a4caf95cd199aec33f8aca  
win-x64/node_pdb.zip
-540897f8d48d913b45eadb5201fc71475cd1652b414a7f035460aad2613c7594  
win-x86/node.exe
-35eb7a9960a773e8cac4c02336c500357a88c1937fda93466c1bd57eb8a63310  
win-x86/node.lib
-09dc53e16ab7d9b46419b5be872035349f428034beaa83008c3fd6798bdbc9e7  
win-x86/node_pdb.7z
-3070955c6e16c9f9ec5c6ce3a4bb1edc1efd2e1513ba6442d796f16207f5ee5e  
win-x86/node_pdb.zip
+7e0b0ea1ea8d37096561caed59368eebb773c2cdf9d455ad30381053fbc109ce  
node-v4.8.5-darwin-x64.tar.gz
+c32a9d5d47255a8dfd768787a0bac7d17d5f55709b20f7b59a3de3f013c6e7dc  
node-v4.8.5-darwin-x64.tar.xz
+68efec4d1b8cd080bbb622e6f690520bfae575c26aeaa983ae9eb0585e087658  
node-v4.8.5-headers.tar.gz
+311734f04786dad2ded0d31611d1a180983e0eba8da350622a395ea0dd9bc83b  
node-v4.8.5-headers.tar.xz
+9133ba0865f1d15c52a6fe550fb7a8df81ac81083661dd28ce0bec5fb97be6bf  
node-v4.8.5-linux-arm64.tar.gz
+826f8f898b70085443a6191321e7424967154596021f39bbd517c10ad78bd920  
node-v4.8.5-linux-arm64.tar.xz
+c2665427269408ba05a7917362af3c9ee28095931315987ec8e9ff332cc4df5d  
node-v4.8.5-linux-armv6l.tar.gz
+d219a26024498d4fdc615803621dead734a515087e1b98b38240deeb0c2c877d  
node-v4.8.5-linux-armv6l.tar.xz
+b6b1a85c7d8fe63aa9459748b035116ca71a42c0aac06eab6d876ebc67f7a136  
node-v4.8.5-linux-armv7l.tar.gz
+d054af00b6d67f3417e6062a967c7124bcdd45c83f1f103ae4705ff8e62e16ea  
node-v4.8.5-linux-armv7l.tar.xz
+53599540a678fd7114922b4f94b28518a76899f64d3c0e6ba94ccf5c266b5652  
node-v4.8.5-linux-ppc64le.tar.gz
+8b5ae4d119d645bcff7e93186aff6c5f8ee4ae7d9c66d2969ff70ddf01707ccc  
node-v4.8.5-linux-ppc64le.tar.xz
+f26cfd2e27cda911fbacf03d856cd8dcbbe0f54cf16958d94c58eb721d2e8946  
node-v4.8.5-linux-ppc64.tar.gz
+a97e732688f9b4a0c2b208160abd939c660d7298d299c3281947829c8f37ad57  
node-v4.8.5-linux-ppc64.tar.xz
+8a82f320795cf0874ccefb3e7890dffb02d59127ab8c5da1d6c96db1364baeaf  
node-v4.8.5-linux-x64.tar.gz
+3232b4576c33e0f9c555b6f2cf7571e89bf34b058b5c8154acf9de5109fc7e4e  
node-v4.8.5-linux-x64.tar.xz
+472e257f7ca5868902ee0670e90e86a59655074cba848b87cd9787052c106552  
node-v4.8.5-linux-x86.tar.gz
+f6392b06f1abbbbaebbc67b8815b719ea7a23e5d09d448b9d741e21084b4a95d  
node-v4.8.5-linux-x86.tar.xz
+19fdf0f9b070ebc9a72189c97546fabd50c0b29da50415e69f4bc6a47a3cf8db  
node-v4.8.5.pkg
+27dff44f867312e05db0e920fa42bcfbf8dd88173713458a605d86ed7de726e3  
node-v4.8.5-sunos-x64.tar.gz
+db2d17078e9706ac3970fe4de90a3123752b994243a1a6bf5073ed4003f313fa  
node-v4.8.5-sunos-x64.tar.xz
+11eca9ca85e042d776af869548a814bbd4deaf58c708ee502aec879d5b808f5a  
node-v4.8.5-sunos-x86.tar.gz
+0060848babf558feb6819130446e0f98b4c541b58a5eed225f26f652d297588e  
node-v4.8.5-sunos-x86.tar.xz
+23980b1d31c6b0e05eff2102ffa0059a6f7a93e27e5288eb5551b9b003ec0c07  
node-v4.8.5.tar.gz
+a48aeefc2b4fae0ea6410a8045ca106af244223012eab003bd5cb00aa3b50d53  
node-v4.8.5.tar.xz
+337457be3625a4a14acef74ce5de3747ad26c9c522f1b03c1fd0b33108612a18  
node-v4.8.5-win-x64.7z
+d891947117e244f6994ddac899884965b3a8c83ce8e79e3768c299a152204ce3  
node-v4.8.5-win-x64.zip
+c62eae06928a9e30560002128605adfc21132aab9088f5417721603d4eebdb45  
node-v4.8.5-win-x86.7z
+e912b9ca0c3d09dd16f8d8d916fba6b6db8f0467c2241b9cf5f17ded94a26afe  
node-v4.8.5-win-x86.zip
+e116d48230e8f546ac4f8e7b9f33262319765555ef70fad755bb0b4fa3de9d64  
node-v4.8.5-x64.msi
+28ebefc83293be6e2c18e75eea30103cc23e43f375e4577baf8a7b16ef599470  
node-v4.8.5-x86.msi
+13c81c59ca4c29d7b071b0e11bebb611f34a31d7ba888e342ddf0dd360659a7c  
win-x64/node.exe
+6769b66a08f4cde3e7d8d949e3e5973eec79fd5efb6ec6e9518dfa4605115543  
win-x64/node.lib
+ef91c423d4ba6e6f82251aeb70ae14559e49d2a2ee12d9fd71a96b4d917b804d  
win-x64/node_pdb.7z
+3d9f5e915a916d1846abd17ba85b991bc4ce0bccd8f4374b986a1149ca91674d  
win-x64/node_pdb.zip
+6450207c73f5813fe22fbb88d6315513ca99afabf055612cbee8ba6e0aa9303b  
win-x86/node.exe
+9d61f8ebd06acabfc7d1a04ed59376ed099b87499bfb31fd920ac4639ff88fe6  
win-x86/node.lib
+1f5914c7479135584bdc9d1ca38a2d7d1d9a490ae4935e854eec432e0dbed797  
win-x86/node_pdb.7z
+9a5b77b3b1a10bf43867064936f2262baa02b1a6957b92961fa6bcfcb4229d60  
win-x86/node_pdb.zip

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

++++++ node-v4.8.4.tar.xz -> node-v4.8.5.tar.xz ++++++
/work/SRC/openSUSE:Factory/nodejs4/node-v4.8.4.tar.xz 
/work/SRC/openSUSE:Factory/.nodejs4.new/node-v4.8.5.tar.xz differ: char 26, 
line 1



Reply via email to