54 lines
1.4 KiB
RPMSpec
54 lines
1.4 KiB
RPMSpec
%{?nodejs_find_provides_and_requires}
|
|
%global enable_tests 1
|
|
Name: nodejs-commander
|
|
Version: 2.9.0
|
|
Release: 1
|
|
Summary: Node.js command-line interfaces made easy
|
|
License: MIT
|
|
URL: https://github.com/tj/commander
|
|
Source0: https://registry.npmjs.org/commander/-/commander-%{version}.tgz
|
|
Source1: tests-v%{version}.tar.bz2
|
|
Source2: examples-v%{version}.tar.bz2
|
|
Source10: dl-tests.sh
|
|
Patch0: nodejs-commander-2.9.0-Fix-engine-dep.patch
|
|
BuildArch: noarch
|
|
ExclusiveArch: %{nodejs_arches} noarch
|
|
ExclusiveArch: %{ix86} x86_64 %{arm} noarch
|
|
BuildRequires: nodejs-packaging
|
|
%if 0%{?enable_tests}
|
|
BuildRequires: npm(should) npm(sinon) npm(graceful-readlink)
|
|
%endif
|
|
%description
|
|
The complete solution for Node.js command-line interfaces,
|
|
inspired by Ruby's commander.
|
|
|
|
%prep
|
|
%setup -q -n package
|
|
%setup -q -T -D -a 1 -n package
|
|
%setup -q -T -D -a 2 -n package
|
|
%patch0 -p1
|
|
|
|
%build
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{nodejs_sitelib}/commander
|
|
cp -pr package.json index.js \
|
|
%{buildroot}%{nodejs_sitelib}/commander
|
|
%nodejs_symlink_deps
|
|
|
|
%check
|
|
%nodejs_symlink_deps --check
|
|
%{__nodejs} -e 'require("./")'
|
|
%if 0%{?enable_tests}
|
|
./test/run test/test.*.js
|
|
%endif
|
|
|
|
%files
|
|
%doc Readme.md examples/
|
|
%license LICENSE
|
|
%{nodejs_sitelib}/commander
|
|
|
|
%changelog
|
|
* Mon Aug 17 2020 Anan Fu <fuanan3@huawei.com> - 2.9.0-1
|
|
- package init
|