c8-stream-10
imports/c8-stream-10/nodejs-packaging-17-3.module+el8+2873+aa7dfd9a
commit
17749621d3
@ -0,0 +1 @@
|
|||||||
|
SOURCES/nodejs-packaging-fedora-17.tar.xz
|
@ -0,0 +1 @@
|
|||||||
|
da522c9640b73b1df7a3522bbec96c0475fc7cd2 SOURCES/nodejs-packaging-fedora-17.tar.xz
|
@ -0,0 +1,153 @@
|
|||||||
|
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
|
||||||
|
|
||||||
|
Name: nodejs-packaging
|
||||||
|
Version: 17
|
||||||
|
Release: 3%{?dist}
|
||||||
|
Summary: RPM Macros and Utilities for Node.js Packaging
|
||||||
|
BuildArch: noarch
|
||||||
|
License: MIT
|
||||||
|
URL: https://fedoraproject.org/wiki/Node.js/Packagers
|
||||||
|
Source0: https://releases.pagure.org/%{name}/%{name}-fedora-%{version}.tar.xz
|
||||||
|
ExclusiveArch: %{nodejs_arches} noarch
|
||||||
|
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
|
||||||
|
#nodejs-devel before 0.10.12 provided these macros and owned /usr/share/node
|
||||||
|
Recommends: nodejs(engine) >= 0.10.12
|
||||||
|
Requires: redhat-rpm-config
|
||||||
|
|
||||||
|
%description
|
||||||
|
This package contains RPM macros and other utilities useful for packaging
|
||||||
|
Node.js modules and applications in RPM-based distributions.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p 1 -n %{name}-fedora-%{version}
|
||||||
|
|
||||||
|
# Modify the shebangs
|
||||||
|
pathfix.py -pni "%{__python3}" \
|
||||||
|
nodejs-fixdep nodejs-setversion nodejs.prov nodejs.req nodejs-symlink-deps
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
#nothing to do
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
install -Dpm0644 macros.nodejs %{buildroot}%{macrosdir}/macros.nodejs
|
||||||
|
install -Dpm0644 nodejs.attr %{buildroot}%{_rpmconfigdir}/fileattrs/nodejs.attr
|
||||||
|
install -pm0755 nodejs.prov %{buildroot}%{_rpmconfigdir}/nodejs.prov
|
||||||
|
install -pm0755 nodejs.req %{buildroot}%{_rpmconfigdir}/nodejs.req
|
||||||
|
install -pm0755 nodejs-symlink-deps %{buildroot}%{_rpmconfigdir}/nodejs-symlink-deps
|
||||||
|
install -pm0755 nodejs-fixdep %{buildroot}%{_rpmconfigdir}/nodejs-fixdep
|
||||||
|
install -pm0755 nodejs-setversion %{buildroot}%{_rpmconfigdir}/nodejs-setversion
|
||||||
|
install -Dpm0644 multiver_modules %{buildroot}%{_datadir}/node/multiver_modules
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
./test/run
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license LICENSE
|
||||||
|
%{macrosdir}/macros.nodejs
|
||||||
|
%{_rpmconfigdir}/fileattrs/nodejs*.attr
|
||||||
|
%{_rpmconfigdir}/nodejs*
|
||||||
|
%{_datadir}/node/multiver_modules
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Mar 12 2019 zsvetlik@redhat.com - 17-3
|
||||||
|
- Change Requires to Recommends on nodejs dependency, so it is usable for building nodejs
|
||||||
|
|
||||||
|
* Wed Jul 04 2018 Tomas Orsava <torsava@redhat.com> - 17-2
|
||||||
|
- Switch hardcoded python3 shebangs into the %%{__python3} macro
|
||||||
|
|
||||||
|
* Thu May 3 2018 Tom Hughes <tom@compton.nu> - 17-1
|
||||||
|
- Fix version comparators with a space after the operator
|
||||||
|
|
||||||
|
* Tue May 1 2018 Tom Hughes <tom@compton.nu> - 16-1
|
||||||
|
- Rewrite nodejs.req to better match npm versioning rules
|
||||||
|
- Add tests for nodejs.req and nodejs.prov
|
||||||
|
|
||||||
|
* Mon Apr 30 2018 Tom Hughes <tom@compton.nu> - 15-1
|
||||||
|
- Fix caret dependency ranges
|
||||||
|
|
||||||
|
* Thu Apr 12 2018 Tom Hughes <tom@compton.nu> - 14-1
|
||||||
|
- Only match top level modules for requires and provides generation
|
||||||
|
|
||||||
|
* Wed Feb 28 2018 Tom Hughes <tom@compton.nu> - 13-1
|
||||||
|
- Add %%nodejs_setversion macro
|
||||||
|
|
||||||
|
* Fri Feb 23 2018 Tom Hughes <tom@compton.nu> - 12-1
|
||||||
|
- Port to python 3
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 11-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 13 2018 Tom Hughes <tom@compton.nu> - 11-1
|
||||||
|
- nodesjs.req: use boolean with for range dependencies
|
||||||
|
|
||||||
|
* Tue Sep 12 2017 Stephen Gallagher <sgallagh@redhat.com> - 10-1
|
||||||
|
- Release v10
|
||||||
|
- Automatically generate Provides for bundled npm dependencies
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 21 2017 Tom Hughes <tom@compton.nu> - 9-3
|
||||||
|
- switch source URL to pagure
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 2 2016 Tom Hughes <tom@compton.nu> - 9-1
|
||||||
|
- nodejs-fixdep: stop --move erroring on missing dependency types
|
||||||
|
|
||||||
|
* Sun Jan 31 2016 Tom Hughes <tom@compton.nu> - 8-1
|
||||||
|
- nodejs-fixdep: add --move option
|
||||||
|
- nodejs-symlink-deps: add --optional option
|
||||||
|
- req: generate suggests for optional dependencies
|
||||||
|
|
||||||
|
* Mon Nov 16 2015 Tom Hughes <tom@compton.nu> - 7-5
|
||||||
|
- nodejs-symlink-deps: handle caret in versions
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Mar 4 2015 Ville Skyttä <ville.skytta@iki.fi> - 7-3
|
||||||
|
- Install macros in %%{_rpmconfidir}/macros.d where available (#1074279)
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun May 25 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 7-1
|
||||||
|
- nodejs-symlink-deps: fix regression preventing multiply versioned modules from
|
||||||
|
being symlinked correctly
|
||||||
|
|
||||||
|
* Sat May 24 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 6-1
|
||||||
|
- nodejs-fixdep: use real option parsing
|
||||||
|
- nodejs-fixdep: support modifying optionalDependencies and devDependencies
|
||||||
|
- req: support the caret operator
|
||||||
|
- nodejs-symlink-deps: add --force option
|
||||||
|
- nodejs-symlink-deps: add --build alias for --check
|
||||||
|
- nodejs-fixdep: support converting to caret dependencies
|
||||||
|
- nodejs-fixdep: support non-dictionary dependency properties
|
||||||
|
- multiver_modules: add nan
|
||||||
|
|
||||||
|
* Mon Jul 29 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 4-1
|
||||||
|
- handle cases where the symlink target exists gracefully
|
||||||
|
|
||||||
|
* Wed Jul 10 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 3-1
|
||||||
|
- dependencies and engines can be lists or strings too
|
||||||
|
- handle unversioned dependencies on multiply versioned modules correctly
|
||||||
|
(RHBZ#982798)
|
||||||
|
- restrict to compatible arches
|
||||||
|
|
||||||
|
* Fri Jun 21 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 2-1
|
||||||
|
- move multiple version list to /usr/share/node
|
||||||
|
- bump nodejs Requires to 0.10.12
|
||||||
|
- add Requires: redhat-rpm-config
|
||||||
|
|
||||||
|
* Thu Jun 13 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1-1
|
||||||
|
- initial package
|
Loading…
Reference in new issue