%global npm_name ansi-regex %{?nodejs_find_provides_and_requires} %global enable_tests 1 Name: nodejs-ansi-regex Version: 2.0.0 Release: 1 Summary: Regular expression for matching ANSI escape codes License: MIT URL: https://github.com/sindresorhus/ansi-regex Source0: https://registry.npmjs.org/ansi-regex/-/ansi-regex-%{version}.tgz Source1: tests-%{version}.tar.bz2 Source10: dl-tests.sh BuildArch: noarch ExclusiveArch: %{nodejs_arches} noarch BuildRequires: nodejs-packaging %if 0%{?enable_tests} BuildRequires: npm(mocha) %endif %description Regular expression for matching ANSI escape codes %prep %setup -q -n package %setup -q -T -D -a 1 -n package %build %install mkdir -p %{buildroot}%{nodejs_sitelib}/%{npm_name} cp -pr package.json index.js \ %{buildroot}%{nodejs_sitelib}/%{npm_name} %{nodejs_symlink_deps} %if 0%{?enable_tests} %check %{nodejs_symlink_deps} --check %{__nodejs} -e 'require("./")' %{_bindir}/mocha -R spec test/test.js %endif %files %{nodejs_sitelib}/ansi-regex %doc readme.md %license license %changelog * Mon Aug 17 2020 Shaoqiang Kang - 2.0.0-1 - Package init