Merge branch '10'
This commit is contained in:
commit
4033b07c57
25
nodejs.spec
25
nodejs.spec
@ -17,7 +17,7 @@
|
|||||||
%global nodejs_abi %{nodejs_major}.%{nodejs_minor}
|
%global nodejs_abi %{nodejs_major}.%{nodejs_minor}
|
||||||
%global nodejs_soversion 64
|
%global nodejs_soversion 64
|
||||||
%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 2
|
||||||
|
|
||||||
# == Bundled Dependency Versions ==
|
# == Bundled Dependency Versions ==
|
||||||
# v8 - from deps/v8/include/v8-version.h
|
# v8 - from deps/v8/include/v8-version.h
|
||||||
@ -469,7 +469,7 @@ NODE_PATH=%{buildroot}%{_prefix}/lib/node_modules:%{buildroot}%{_prefix}/lib/nod
|
|||||||
|
|
||||||
%pretrans -n npm -p <lua>
|
%pretrans -n npm -p <lua>
|
||||||
-- Remove all of the symlinks from the bundled npm node_modules directory
|
-- Remove all of the symlinks from the bundled npm node_modules directory
|
||||||
-- This scriptlet can be removed in Fedora 31
|
-- Drop this scriptlet when F29 is EOL
|
||||||
base_path = "%{_prefix}/lib/node_modules/npm/node_modules/"
|
base_path = "%{_prefix}/lib/node_modules/npm/node_modules/"
|
||||||
d_st = posix.stat(base_path)
|
d_st = posix.stat(base_path)
|
||||||
if d_st then
|
if d_st then
|
||||||
@ -482,6 +482,23 @@ if d_st then
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
%pretrans -n v8-devel -p <lua>
|
||||||
|
-- Replace the v8 libplatform include directory with a symlink
|
||||||
|
-- Drop this scriptlet when F30 is EOL
|
||||||
|
path = "%{_includedir}/libplatform"
|
||||||
|
st = posix.stat(path)
|
||||||
|
if st and st.type == "directory" then
|
||||||
|
status = os.rename(path, path .. ".rpmmoved")
|
||||||
|
if not status then
|
||||||
|
suffix = 0
|
||||||
|
while not status do
|
||||||
|
suffix = suffix + 1
|
||||||
|
status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix)
|
||||||
|
end
|
||||||
|
os.rename(path, path .. ".rpmmoved")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%{_bindir}/node
|
%{_bindir}/node
|
||||||
%dir %{_prefix}/lib/node_modules
|
%dir %{_prefix}/lib/node_modules
|
||||||
@ -525,6 +542,7 @@ end
|
|||||||
%{_libdir}/libv8.so
|
%{_libdir}/libv8.so
|
||||||
%{_libdir}/libv8_libbase.so
|
%{_libdir}/libv8_libbase.so
|
||||||
%{_libdir}/libv8_libplatform.so
|
%{_libdir}/libv8_libplatform.so
|
||||||
|
%ghost %{_includedir}/libplatform.rpmmoved
|
||||||
|
|
||||||
|
|
||||||
%files -n npm
|
%files -n npm
|
||||||
@ -548,6 +566,9 @@ end
|
|||||||
%{_pkgdocdir}/npm/doc
|
%{_pkgdocdir}/npm/doc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Apr 24 2019 Stephen Gallagher <sgallagh@redhat.com> - 1:10.15.3-2
|
||||||
|
- Fix upgrade bug for v8-devel (BZ #1702609)
|
||||||
|
|
||||||
* Tue Apr 09 2019 Stephen Gallagher <sgallagh@redhat.com> - 1:10.15.3-1
|
* Tue Apr 09 2019 Stephen Gallagher <sgallagh@redhat.com> - 1:10.15.3-1
|
||||||
- Update to 10.15.3
|
- Update to 10.15.3
|
||||||
- https://nodejs.org/en/blog/release/v10.15.3/
|
- https://nodejs.org/en/blog/release/v10.15.3/
|
||||||
|
Loading…
Reference in New Issue
Block a user