Move native module building tools here from Node.js
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
This commit is contained in:
parent
53057fc311
commit
2a08691cf3
@ -1,8 +1,8 @@
|
|||||||
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
|
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
|
||||||
|
|
||||||
Name: nodejs-packaging
|
Name: nodejs-packaging
|
||||||
Version: 2021.06
|
Version: 2022.10
|
||||||
Release: 7%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: RPM Macros and Utilities for Node.js Packaging
|
Summary: RPM Macros and Utilities for Node.js Packaging
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
License: MIT
|
License: MIT
|
||||||
@ -19,13 +19,19 @@ Source0007: nodejs-symlink-deps
|
|||||||
Source0008: nodejs.attr
|
Source0008: nodejs.attr
|
||||||
Source0009: nodejs.prov
|
Source0009: nodejs.prov
|
||||||
Source0010: nodejs.req
|
Source0010: nodejs.req
|
||||||
Source0011: nodejs-packaging-bundler
|
Source0011: nodejs_abi.attr
|
||||||
|
Source0012: nodejs_abi.req
|
||||||
|
|
||||||
|
Source0111: nodejs-packaging-bundler
|
||||||
|
|
||||||
# Created with `tar cfz test.tar.gz test`
|
# Created with `tar cfz test.tar.gz test`
|
||||||
Source0101: test.tar.gz
|
Source0101: test.tar.gz
|
||||||
|
|
||||||
BuildRequires: python3
|
BuildRequires: python3
|
||||||
|
|
||||||
|
# Several of the macros require the /usr/bin/node command, so we need to
|
||||||
|
# ensure that it is present when packaging.
|
||||||
|
Requires: /usr/bin/node
|
||||||
Requires: redhat-rpm-config
|
Requires: redhat-rpm-config
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -59,8 +65,10 @@ popd
|
|||||||
%install
|
%install
|
||||||
install -Dpm0644 macros.nodejs %{buildroot}%{macrosdir}/macros.nodejs
|
install -Dpm0644 macros.nodejs %{buildroot}%{macrosdir}/macros.nodejs
|
||||||
install -Dpm0644 nodejs.attr %{buildroot}%{_rpmconfigdir}/fileattrs/nodejs.attr
|
install -Dpm0644 nodejs.attr %{buildroot}%{_rpmconfigdir}/fileattrs/nodejs.attr
|
||||||
|
install -Dpm0644 nodejs_abi.attr %{buildroot}%{_rpmconfigdir}/fileattrs/nodejs_abi.attr
|
||||||
install -pm0755 nodejs.prov %{buildroot}%{_rpmconfigdir}/nodejs.prov
|
install -pm0755 nodejs.prov %{buildroot}%{_rpmconfigdir}/nodejs.prov
|
||||||
install -pm0755 nodejs.req %{buildroot}%{_rpmconfigdir}/nodejs.req
|
install -pm0755 nodejs.req %{buildroot}%{_rpmconfigdir}/nodejs.req
|
||||||
|
install -pm0755 nodejs_abi.req %{buildroot}%{_rpmconfigdir}/nodejs_abi.req
|
||||||
install -pm0755 nodejs-symlink-deps %{buildroot}%{_rpmconfigdir}/nodejs-symlink-deps
|
install -pm0755 nodejs-symlink-deps %{buildroot}%{_rpmconfigdir}/nodejs-symlink-deps
|
||||||
install -pm0755 nodejs-fixdep %{buildroot}%{_rpmconfigdir}/nodejs-fixdep
|
install -pm0755 nodejs-fixdep %{buildroot}%{_rpmconfigdir}/nodejs-fixdep
|
||||||
install -pm0755 nodejs-setversion %{buildroot}%{_rpmconfigdir}/nodejs-setversion
|
install -pm0755 nodejs-setversion %{buildroot}%{_rpmconfigdir}/nodejs-setversion
|
||||||
@ -84,6 +92,10 @@ install -Dpm0755 nodejs-packaging-bundler %{buildroot}%{_bindir}/nodejs-packagin
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 20 2022 Stephen Gallagher <sgallagh@redhat.com> - 2022.10-1
|
||||||
|
- Move native module building tools here from Node.js
|
||||||
|
- Add `Requires: /usr/bin/node`
|
||||||
|
|
||||||
* Tue Oct 18 2022 Davide Cavalca <dcavalca@fedoraproject.org> - 2021.06-7
|
* Tue Oct 18 2022 Davide Cavalca <dcavalca@fedoraproject.org> - 2021.06-7
|
||||||
- NPM bundler: recursively bundle modules for all packages found
|
- NPM bundler: recursively bundle modules for all packages found
|
||||||
|
|
||||||
|
2
nodejs_abi.attr
Normal file
2
nodejs_abi.attr
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
%__nodejs_native_requires %{_rpmconfigdir}/nodejs_abi.req
|
||||||
|
%__nodejs_native_path ^/usr/lib.*/node_modules/.*\\.node$
|
14
nodejs_abi.req
Executable file
14
nodejs_abi.req
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Get the version from the default Node.js
|
||||||
|
full_version=$(/usr/bin/node --version)
|
||||||
|
|
||||||
|
# Trim off the leading 'v'
|
||||||
|
full_version=${full_version:1}
|
||||||
|
|
||||||
|
# Get the different version components
|
||||||
|
split_version=(${full_version//\./ })
|
||||||
|
|
||||||
|
# Write out the Virtual Requires
|
||||||
|
echo "nodejs(abi${split_version[0]}) >= ${split_version[0]}.${split_version[1]}"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user