diff --git a/nodejs-p-limit.spec b/nodejs-p-limit.spec new file mode 100644 index 0000000..a17f944 --- /dev/null +++ b/nodejs-p-limit.spec @@ -0,0 +1,47 @@ +%{?nodejs_find_provides_and_requires} +%global packagename p-limit +%global enable_tests 0 +Name: nodejs-p-limit +Version: 1.1.0 +Release: 1 +Summary: Run multiple promise-returning & async functions with limited concurrency +License: MIT +URL: https://github.com/sindresorhus/p-limit +Source0: https://github.com/sindresorhus/p-limit/archive/v%{version}.tar.gz +ExclusiveArch: %{nodejs_arches} noarch +BuildArch: noarch +BuildRequires: nodejs-packaging +%if 0%{?enable_tests} +BuildRequires: npm(ava) +%endif +%description +Run multiple promise-returning & async functions with limited concurrency + +%prep +%autosetup -n p-limit-%{version} + +%build + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename} +cp -pr package.json index.js \ + %{buildroot}%{nodejs_sitelib}/%{packagename} +%nodejs_symlink_deps + +%check +%nodejs_symlink_deps --check +%{__nodejs} -e 'require("./")' +%if 0%{?enable_tests} +%{_bindir}/ava +%else +%{_bindir}/echo -e "\e[101m -=#=- Tests disabled -=#=- \e[0m" +%endif + +%files +%doc readme.md +%license license +%{nodejs_sitelib}/%{packagename} + +%changelog +* Mon Aug 31 2020 wutao - 1.1.0-1 +- Package init diff --git a/nodejs-p-limit.yaml b/nodejs-p-limit.yaml new file mode 100644 index 0000000..16fe19c --- /dev/null +++ b/nodejs-p-limit.yaml @@ -0,0 +1,4 @@ +version_control: github +src_repo: sindresorhus/p-limit +tag_prefix: "^v" +seperator: "." diff --git a/v1.1.0.tar.gz b/v1.1.0.tar.gz new file mode 100644 index 0000000..083f232 Binary files /dev/null and b/v1.1.0.tar.gz differ