67 lines
1.4 KiB
RPMSpec
67 lines
1.4 KiB
RPMSpec
|
|
%{?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://registry.npmjs.org/which/-/which-%{version}.tgz
|
||
|
|
#git clone git://github.com/npm/node-which.git
|
||
|
|
#cd node-which
|
||
|
|
#git archive --prefix="test/" --format=tar tags/${tag}:test/
|
||
|
|
# | bzip2 > "$pwd"/tests-${tag}.tar.bz2
|
||
|
|
Source1: tests-%{version}.tar.bz2
|
||
|
|
|
||
|
|
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
|
||
|
|
%setup -q -n package
|
||
|
|
# setup the tests
|
||
|
|
%setup -q -T -D -a 1 -n package
|
||
|
|
|
||
|
|
|
||
|
|
%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 <wangxiao65@huawei.com> - 1.3.0-1
|
||
|
|
- package init
|