diff --git a/nodejs-which.spec b/nodejs-which.spec new file mode 100644 index 0000000..56b6b02 --- /dev/null +++ b/nodejs-which.spec @@ -0,0 +1,57 @@ +%{?nodejs_find_provides_and_requires} + +%global enable_tests 0 + +Name: nodejs-which +Version: 1.3.0 +Release: 1 +Summary: A JavaScript implementation of the 'which' command +License: MIT +URL: https://github.com/isaacs/node-which +Source0: https://github.com/isaacs/node-which/archive/v%{version}.tar.gz +BuildArch: noarch +ExclusiveArch: %{nodejs_arches} noarch +BuildRequires: nodejs-packaging npm(isexe) + +%if 0%{?enable_tests} +BuildRequires: npm(tap) npm(mkdirp) npm(rimraf) +%endif + +%description +%{summary}. + + +%prep +%autosetup -n node-which-%{version} + + +%build +#nothing to do + + +%install +mkdir -p %{buildroot}%{nodejs_sitelib}/which +cp -pr bin which.js package.json %{buildroot}%{nodejs_sitelib}/which +mkdir -p %{buildroot}%{_bindir} +ln -sf ../lib/node_modules/which/bin/which %{buildroot}%{_bindir}/which-nodejs +%nodejs_symlink_deps + + +%check +%nodejs_symlink_deps --check +%__nodejs -e "require('./')" +%if 0%{?enable_tests} +%tap test/*.js +%endif + + +%files +%doc README.md +%license LICENSE +%{nodejs_sitelib}/which +%{_bindir}/which-nodejs + + +%changelog +* Tue Aug 11 2020 wangxiao - 1.3.0-1 +- package init diff --git a/nodejs-which.yaml b/nodejs-which.yaml new file mode 100644 index 0000000..dd0d49d --- /dev/null +++ b/nodejs-which.yaml @@ -0,0 +1,5 @@ +git_url: https://github.com/isaacs/node-which +version_control: github +src_repo: isaacs/node-which +tag_prefix: "^v" +seperator: "." diff --git a/v1.3.0.tar.gz b/v1.3.0.tar.gz new file mode 100644 index 0000000..fe20559 Binary files /dev/null and b/v1.3.0.tar.gz differ