Update to 8.9.4
https://nodejs.org/en/blog/release/v8.9.4/ Switch to system copy of nghttp2 Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
This commit is contained in:
parent
308def1440
commit
cbcccf5797
1
.gitignore
vendored
1
.gitignore
vendored
@ -83,3 +83,4 @@
|
|||||||
/node-v8.9.0-stripped.tar.gz
|
/node-v8.9.0-stripped.tar.gz
|
||||||
/node-v8.9.1-stripped.tar.gz
|
/node-v8.9.1-stripped.tar.gz
|
||||||
/node-v8.9.3-stripped.tar.gz
|
/node-v8.9.3-stripped.tar.gz
|
||||||
|
/node-v8.9.4-stripped.tar.gz
|
||||||
|
33
nodejs.spec
33
nodejs.spec
@ -22,17 +22,17 @@
|
|||||||
%global nodejs_epoch 1
|
%global nodejs_epoch 1
|
||||||
%global nodejs_major 8
|
%global nodejs_major 8
|
||||||
%global nodejs_minor 9
|
%global nodejs_minor 9
|
||||||
%global nodejs_patch 3
|
%global nodejs_patch 4
|
||||||
%global nodejs_abi %{nodejs_major}.%{nodejs_minor}
|
%global nodejs_abi %{nodejs_major}.%{nodejs_minor}
|
||||||
%global nodejs_version %{nodejs_major}.%{nodejs_minor}.%{nodejs_patch}
|
%global nodejs_version %{nodejs_major}.%{nodejs_minor}.%{nodejs_patch}
|
||||||
%global nodejs_release 2
|
%global nodejs_release 1
|
||||||
|
|
||||||
# == Bundled Dependency Versions ==
|
# == Bundled Dependency Versions ==
|
||||||
# v8 - from deps/v8/include/v8-version.h
|
# v8 - from deps/v8/include/v8-version.h
|
||||||
%global v8_major 6
|
%global v8_major 6
|
||||||
%global v8_minor 1
|
%global v8_minor 1
|
||||||
%global v8_build 534
|
%global v8_build 534
|
||||||
%global v8_patch 48
|
%global v8_patch 50
|
||||||
# V8 presently breaks ABI at least every x.y release while never bumping SONAME
|
# V8 presently breaks ABI at least every x.y release while never bumping SONAME
|
||||||
%global v8_abi %{v8_major}.%{v8_minor}
|
%global v8_abi %{v8_major}.%{v8_minor}
|
||||||
%global v8_version %{v8_major}.%{v8_minor}.%{v8_build}.%{v8_patch}
|
%global v8_version %{v8_major}.%{v8_minor}.%{v8_build}.%{v8_patch}
|
||||||
@ -56,9 +56,15 @@
|
|||||||
%global libuv_patch 0
|
%global libuv_patch 0
|
||||||
%global libuv_version %{libuv_major}.%{libuv_minor}.%{libuv_patch}
|
%global libuv_version %{libuv_major}.%{libuv_minor}.%{libuv_patch}
|
||||||
|
|
||||||
|
# nghttp2 - from deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h
|
||||||
|
%global nghttp2_major 1
|
||||||
|
%global nghttp2_minor 25
|
||||||
|
%global nghttp2_patch 0
|
||||||
|
%global nghttp2_version %{nghttp2_major}.%{nghttp2_minor}.%{nghttp2_patch}
|
||||||
|
|
||||||
# punycode - from lib/punycode.js
|
# punycode - from lib/punycode.js
|
||||||
# Note: this was merged into the mainline since 0.6.x
|
# Note: this was merged into the mainline since 0.6.x
|
||||||
# Note: this will be unmerged in v7 or v8
|
# Note: this will be unmerged in an upcoming major release
|
||||||
%global punycode_major 2
|
%global punycode_major 2
|
||||||
%global punycode_minor 0
|
%global punycode_minor 0
|
||||||
%global punycode_patch 0
|
%global punycode_patch 0
|
||||||
@ -67,8 +73,8 @@
|
|||||||
# npm - from deps/npm/package.json
|
# npm - from deps/npm/package.json
|
||||||
%global npm_epoch 1
|
%global npm_epoch 1
|
||||||
%global npm_major 5
|
%global npm_major 5
|
||||||
%global npm_minor 5
|
%global npm_minor 6
|
||||||
%global npm_patch 1
|
%global npm_patch 0
|
||||||
%global npm_version %{npm_major}.%{npm_minor}.%{npm_patch}
|
%global npm_version %{npm_major}.%{npm_minor}.%{npm_patch}
|
||||||
|
|
||||||
# In order to avoid needing to keep incrementing the release version for the
|
# In order to avoid needing to keep incrementing the release version for the
|
||||||
@ -121,12 +127,15 @@ BuildRequires: gcc-c++ >= 4.9.4
|
|||||||
%if %{with bootstrap}
|
%if %{with bootstrap}
|
||||||
Provides: bundled(http-parser) = %{http_parser_version}
|
Provides: bundled(http-parser) = %{http_parser_version}
|
||||||
Provides: bundled(libuv) = %{libuv_version}
|
Provides: bundled(libuv) = %{libuv_version}
|
||||||
|
Provides: bundled(nghttp2) = %{nghttp2_version}
|
||||||
%else
|
%else
|
||||||
BuildRequires: systemtap-sdt-devel
|
BuildRequires: systemtap-sdt-devel
|
||||||
BuildRequires: http-parser-devel >= 2.7.0
|
BuildRequires: http-parser-devel >= 2.7.0
|
||||||
Requires: http-parser >= 2.7.0
|
Requires: http-parser >= 2.7.0
|
||||||
BuildRequires: libuv-devel >= 1:1.9.1
|
BuildRequires: libuv-devel >= 1:1.9.1
|
||||||
Requires: libuv >= 1:1.9.1
|
Requires: libuv >= 1:1.9.1
|
||||||
|
BuildRequires: libnghttp2-devel >= 1.25.0
|
||||||
|
Requires: libnghttpd2 >= 1.25.0
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
BuildRequires: (openssl-devel <= 1:1.1.0 or compat-openssl10-devel)
|
BuildRequires: (openssl-devel <= 1:1.1.0 or compat-openssl10-devel)
|
||||||
@ -174,10 +183,6 @@ Provides: bundled(c-ares) = %{c_ares_version}
|
|||||||
# See https://github.com/nodejs/node/commit/d726a177ed59c37cf5306983ed00ecd858cfbbef
|
# See https://github.com/nodejs/node/commit/d726a177ed59c37cf5306983ed00ecd858cfbbef
|
||||||
Provides: bundled(v8) = %{v8_version}
|
Provides: bundled(v8) = %{v8_version}
|
||||||
|
|
||||||
# As of v8.4.0, Node.js has http/2 support. They however don't provide --shared-<lib>
|
|
||||||
# option yet.
|
|
||||||
Provides: bundled(nghttp2) = 1.25.0
|
|
||||||
|
|
||||||
# Make sure we keep NPM up to date when we update Node.js
|
# Make sure we keep NPM up to date when we update Node.js
|
||||||
%if 0%{?epel}
|
%if 0%{?epel}
|
||||||
# EPEL doesn't support Recommends, so make it strict
|
# EPEL doesn't support Recommends, so make it strict
|
||||||
@ -294,6 +299,7 @@ export CXXFLAGS="$(echo ${CXXFLAGS} | tr '\n\\' ' ')"
|
|||||||
--shared-zlib \
|
--shared-zlib \
|
||||||
--shared-libuv \
|
--shared-libuv \
|
||||||
--shared-http-parser \
|
--shared-http-parser \
|
||||||
|
--shared-nghttp2 \
|
||||||
--with-dtrace \
|
--with-dtrace \
|
||||||
--with-intl=system-icu \
|
--with-intl=system-icu \
|
||||||
--debug-http2 \
|
--debug-http2 \
|
||||||
@ -453,7 +459,12 @@ NODE_PATH=%{buildroot}%{_prefix}/lib/node_modules %{buildroot}/%{_bindir}/node -
|
|||||||
%{_pkgdocdir}/npm/doc
|
%{_pkgdocdir}/npm/doc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Dec 08 2017 Stephen Gallagher <sgallagh@redhat.com> - -
|
* Thu Jan 11 2018 Stephen Gallagher <sgallagh@redhat.com> - 1:8.9.4-1
|
||||||
|
- Update to 8.9.4
|
||||||
|
- https://nodejs.org/en/blog/release/v8.9.4/
|
||||||
|
- Switch to system copy of nghttp2
|
||||||
|
|
||||||
|
* Fri Dec 08 2017 Stephen Gallagher <sgallagh@redhat.com> - 1:8.9.3-2
|
||||||
- Update to 8.9.3
|
- Update to 8.9.3
|
||||||
- https://nodejs.org/en/blog/release/v8.9.3/
|
- https://nodejs.org/en/blog/release/v8.9.3/
|
||||||
- https://nodejs.org/en/blog/release/v8.9.2/
|
- https://nodejs.org/en/blog/release/v8.9.2/
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (node-v8.9.3-stripped.tar.gz) = 4aa1e9e5a5a0d4ef404804b5c8a7dac34511290cb8abfdaeb46c05f2ad80298556c2990ca3cdedf482371ce1fb31fa97a7ea6d6f23283c250c52aa1716c2f6bf
|
SHA512 (node-v8.9.4-stripped.tar.gz) = de10b27c87e2b4fd7a09f58921a7b4733e86cf41c0360f15f23f0d02a78830e34ae1360b6868124194d684de53f12c1f815b63283b062c76730b9c4165bc5224
|
||||||
|
Loading…
Reference in New Issue
Block a user