Update to 9.11.1
https://nodejs.org/en/blog/release/v9.11.0/ https://nodejs.org/en/blog/release/v9.11.1/ Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
This commit is contained in:
parent
2096fce045
commit
cac139539e
1
.gitignore
vendored
1
.gitignore
vendored
@ -90,3 +90,4 @@
|
|||||||
/node-v9.8.0-stripped.tar.gz
|
/node-v9.8.0-stripped.tar.gz
|
||||||
/node-v9.9.0-stripped.tar.gz
|
/node-v9.9.0-stripped.tar.gz
|
||||||
/node-v9.10.0-stripped.tar.gz
|
/node-v9.10.0-stripped.tar.gz
|
||||||
|
/node-v9.11.1.tar.gz
|
||||||
|
25
nodejs.spec
25
nodejs.spec
@ -21,8 +21,8 @@
|
|||||||
# than a Fedora release lifecycle.
|
# than a Fedora release lifecycle.
|
||||||
%global nodejs_epoch 1
|
%global nodejs_epoch 1
|
||||||
%global nodejs_major 9
|
%global nodejs_major 9
|
||||||
%global nodejs_minor 10
|
%global nodejs_minor 11
|
||||||
%global nodejs_patch 0
|
%global nodejs_patch 1
|
||||||
%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 1
|
%global nodejs_release 1
|
||||||
@ -62,6 +62,11 @@
|
|||||||
%global nghttp2_patch 0
|
%global nghttp2_patch 0
|
||||||
%global nghttp2_version %{nghttp2_major}.%{nghttp2_minor}.%{nghttp2_patch}
|
%global nghttp2_version %{nghttp2_major}.%{nghttp2_minor}.%{nghttp2_patch}
|
||||||
|
|
||||||
|
# ICU - from configure in the configure_intl() function
|
||||||
|
%global icu_major 61
|
||||||
|
%global icu_minor 1
|
||||||
|
%global icu_version %{icu_major}.%{icu_minor}
|
||||||
|
|
||||||
# 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 an upcoming major release
|
# Note: this will be unmerged in an upcoming major release
|
||||||
@ -118,7 +123,6 @@ Patch1: 0001-Disable-running-gyp-files-for-bundled-deps.patch
|
|||||||
Patch2: 0001-Fix-aarch64-debug.patch
|
Patch2: 0001-Fix-aarch64-debug.patch
|
||||||
|
|
||||||
BuildRequires: python2-devel
|
BuildRequires: python2-devel
|
||||||
BuildRequires: libicu-devel
|
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
BuildRequires: gcc >= 4.9.4
|
BuildRequires: gcc >= 4.9.4
|
||||||
BuildRequires: gcc-c++ >= 4.9.4
|
BuildRequires: gcc-c++ >= 4.9.4
|
||||||
@ -183,6 +187,11 @@ 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}
|
||||||
|
|
||||||
|
# Node.js is bound to a specific version of ICU which may not match the OS
|
||||||
|
# We cannot pin the OS to this version of ICU because every update includes
|
||||||
|
# an ABI-break, so we'll use the bundled copy.
|
||||||
|
Provides: bundled(icu) = %{icu_version}
|
||||||
|
|
||||||
# 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
|
||||||
@ -259,8 +268,7 @@ The API documentation for the Node.js JavaScript runtime.
|
|||||||
|
|
||||||
# remove bundled dependencies that we aren't building
|
# remove bundled dependencies that we aren't building
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
rm -rf deps/icu-small \
|
rm -rf deps/zlib
|
||||||
deps/zlib
|
|
||||||
|
|
||||||
%patch2 -p1
|
%patch2 -p1
|
||||||
|
|
||||||
@ -294,7 +302,6 @@ export PYTHON_DISALLOW_AMBIGUOUS_VERSION=0
|
|||||||
--shared-openssl \
|
--shared-openssl \
|
||||||
--shared-zlib \
|
--shared-zlib \
|
||||||
--without-dtrace \
|
--without-dtrace \
|
||||||
--with-intl=system-icu \
|
|
||||||
--debug-http2 \
|
--debug-http2 \
|
||||||
--debug-nghttp2 \
|
--debug-nghttp2 \
|
||||||
--openssl-use-def-ca-store
|
--openssl-use-def-ca-store
|
||||||
@ -306,7 +313,6 @@ export PYTHON_DISALLOW_AMBIGUOUS_VERSION=0
|
|||||||
--shared-http-parser \
|
--shared-http-parser \
|
||||||
--shared-nghttp2 \
|
--shared-nghttp2 \
|
||||||
--with-dtrace \
|
--with-dtrace \
|
||||||
--with-intl=system-icu \
|
|
||||||
--debug-http2 \
|
--debug-http2 \
|
||||||
--debug-nghttp2 \
|
--debug-nghttp2 \
|
||||||
--openssl-use-def-ca-store
|
--openssl-use-def-ca-store
|
||||||
@ -469,6 +475,11 @@ NODE_PATH=%{buildroot}%{_prefix}/lib/node_modules %{buildroot}/%{_bindir}/node -
|
|||||||
%{_pkgdocdir}/npm/doc
|
%{_pkgdocdir}/npm/doc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Apr 05 2018 Stephen Gallagher <sgallagh@redhat.com> - 1:9.11.1-1
|
||||||
|
- Update to 9.11.1
|
||||||
|
- https://nodejs.org/en/blog/release/v9.11.0/
|
||||||
|
- https://nodejs.org/en/blog/release/v9.11.1/
|
||||||
|
|
||||||
* Wed Mar 28 2018 Stephen Gallagher <sgallagh@redhat.com> - 1:9.10.0-1
|
* Wed Mar 28 2018 Stephen Gallagher <sgallagh@redhat.com> - 1:9.10.0-1
|
||||||
- Update to 9.10.0
|
- Update to 9.10.0
|
||||||
- https://nodejs.org/en/blog/release/v9.10.0/
|
- https://nodejs.org/en/blog/release/v9.10.0/
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (node-v9.10.0-stripped.tar.gz) = 2efdfdc66ba8acea3636b96cb958e98db2e7332d30eb2be2a08ed3f62f5c9079cf58277694318b8677c84c13bbf4e3fe79b76cd04277e5768d605d68810a3c1c
|
SHA512 (node-v9.11.1.tar.gz) = 6bdd0afa3bdcc633075bbaf1c3a9b8c1a914a881da2dc942ff1477a2b000930a8777c0498db5edcb1eeaa7f13cff942ab88bf0764e296d49e0d1a9a677a52bb0
|
||||||
|
Loading…
Reference in New Issue
Block a user