nodejs-sprintf-js/nodejs-sprintf-js.spec
2022-05-10 16:43:30 +08:00

53 lines
1.2 KiB
RPMSpec

%{?nodejs_find_provides_and_requires}
%global packagename sprintf-js
%global enable_tests 1
Name: nodejs-sprintf-js
Version: 1.1.0
Release: 2
Summary: JavaScript sprintf implementation
License: BSD-3-Clause
URL: https://github.com/alexei/sprintf.js.git
Source0: https://registry.npmjs.org/sprintf-js/-/sprintf-js-%{version}.tgz
ExclusiveArch: %{nodejs_arches} noarch
BuildArch: noarch
BuildRequires: nodejs-packaging
%if 0%{?enable_tests}
BuildRequires: mocha
%endif
Requires: nodejs
%description
JavaScript sprintf implementation
%prep
%setup -q -n package
rm -rf dist/
%build
%install
mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename}
cp -pr *.json src/ \
%{buildroot}%{nodejs_sitelib}/%{packagename}
%nodejs_symlink_deps
%check
%nodejs_symlink_deps --check
%if 0%{?enable_tests}
/usr/bin/mocha -R spec
%else
%{_bindir}/echo -e "\e[101m -=#=- Tests disabled -=#=- \e[0m"
%endif
%files
%{!?_licensedir:%global license %doc}
%doc *.md demo/
%license LICENSE
%{nodejs_sitelib}/%{packagename}
%changelog
* Tue May 10 2022 liyanan <liyanan32@h-partners.com> - 1.1.0-2
- License compliance rectification
* Fri Aug 21 2020 wangchong <wangchong56@huawei.com> - 1.1.0-1
- package init