diff --git a/2.0.0.tar.gz b/2.0.0.tar.gz new file mode 100644 index 0000000..32c78c9 Binary files /dev/null and b/2.0.0.tar.gz differ diff --git a/nodejs-ansi-regex.spec b/nodejs-ansi-regex.spec new file mode 100644 index 0000000..926d063 --- /dev/null +++ b/nodejs-ansi-regex.spec @@ -0,0 +1,45 @@ +%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://github.com/sindresorhus/ansi-regex/archive/%{version}.tar.gz +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 +%autosetup -n ansi-regex-%{version} + +%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 diff --git a/nodejs-ansi-regex.yaml b/nodejs-ansi-regex.yaml new file mode 100644 index 0000000..d000f13 --- /dev/null +++ b/nodejs-ansi-regex.yaml @@ -0,0 +1,4 @@ +version_control: github +src_repo: sindresorhus/ansi-regex +tag_prefix: "v" +seperator: "."