53 lines
1.4 KiB
RPMSpec
53 lines
1.4 KiB
RPMSpec
%{?nodejs_find_provides_and_requires}
|
|
%global packagename cli-color
|
|
%global enable_tests 0
|
|
Name: nodejs-cli-color
|
|
Version: 1.1.0
|
|
Release: 2
|
|
Summary: Colors, formatting and other tools for the console
|
|
License: MIT
|
|
URL: https://github.com/medikoo/cli-color.git
|
|
Source0: https://registry.npmjs.org/cli-color/-/cli-color-%{version}.tgz
|
|
BuildArch: noarch
|
|
ExclusiveArch: %{nodejs_arches} noarch
|
|
BuildRequires: nodejs-packaging npm(ansi-regex) npm(d) npm(es5-ext) npm(es6-iterator)
|
|
BuildRequires: npm(memoizee) npm(timers-ext)
|
|
%if 0%{?enable_tests}
|
|
BuildRequires: npm(tad)
|
|
%endif
|
|
Requires: nodejs
|
|
%description
|
|
Colors, formatting and other tools for the console
|
|
|
|
%prep
|
|
%setup -q -n package
|
|
%nodejs_fixdep d '<2.0.0'
|
|
|
|
%build
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename}
|
|
cp -pr package.json *.js lib/ bin/ \
|
|
%{buildroot}%{nodejs_sitelib}/%{packagename}
|
|
%nodejs_symlink_deps
|
|
|
|
%check
|
|
%nodejs_symlink_deps --check
|
|
%{__nodejs} -e 'require("./")'
|
|
%if 0%{?enable_tests}
|
|
%{_bindir}/tad
|
|
%endif
|
|
|
|
%files
|
|
%{!?_licensedir:%global license %doc}
|
|
%doc *.md examples/
|
|
%license LICENSE
|
|
%{nodejs_sitelib}/%{packagename}
|
|
|
|
%changelog
|
|
* Thu Nov 26 2020 caodongxia <caodongxia@huawei.com> - 1.1.0-2
|
|
- Delete file nodejs-cli-color.spec.old
|
|
|
|
* Mon Aug 17 2020 Anan Fu <fuanan3@huawei.com> - 1.1.0-1
|
|
- package init
|