You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.7 KiB
91 lines
2.7 KiB
# This macro is needed at the start for building on EL6 |
|
%{?nodejs_find_provides_and_requires} |
|
|
|
# Because the tests are not shipped with the tarball. |
|
%global enable_tests 0 |
|
|
|
%global barename string |
|
|
|
Name: nodejs-string |
|
Version: 3.1.1 |
|
Release: 9%{?dist} |
|
Summary: Enhancements to the vanilla JavasScript string |
|
|
|
License: MIT |
|
URL: https://www.npmjs.org/package/string |
|
Source0: http://registry.npmjs.org/%{barename}/-/%{barename}-%{version}.tgz |
|
|
|
BuildArch: noarch |
|
%if 0%{?fedora} >= 19 |
|
ExclusiveArch: %{nodejs_arches} noarch |
|
%else |
|
ExclusiveArch: %{ix86} x86_64 %{arm} noarch |
|
%endif |
|
|
|
BuildRequires: nodejs-packaging >= 6 |
|
|
|
%if 0%{?enable_tests} |
|
BuildRequires: npm(uglify-js) |
|
BuildRequires: npm(istanbul) |
|
BuildRequires: npm(mocha) |
|
%endif |
|
|
|
%description |
|
string contains methods that aren't included in the vanilla JavaScript string |
|
such as escaping html, decoding html entities, stripping tags, etc |
|
|
|
%prep |
|
%setup -q -n package |
|
|
|
# Remove bundled node_modules if there are any.. |
|
rm -rf node_modules/ |
|
|
|
%nodejs_fixdep --caret |
|
|
|
%build |
|
%nodejs_symlink_deps --build |
|
|
|
%install |
|
mkdir -p %{buildroot}%{nodejs_sitelib}/string |
|
cp -pr package.json lib \ |
|
%{buildroot}%{nodejs_sitelib}/string |
|
|
|
%nodejs_symlink_deps |
|
|
|
%check |
|
%if 0%{?enable_tests} |
|
%nodejs_symlink_deps --check |
|
mocha test |
|
%endif |
|
|
|
%files |
|
%doc CHANGELOG.md README.md |
|
%{nodejs_sitelib}/string/ |
|
|
|
%changelog |
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-9 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild |
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-8 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild |
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-7 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild |
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-6 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-5 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-4 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-3 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-2 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
|
|
|
* Mon May 11 2015 Ralph Bean <rbean@redhat.com> - 3.1.1-1 |
|
- Initial packaging for Fedora.
|
|
|