nodejs-ejs/nodejs-ejs.spec

48 lines
1.2 KiB
RPMSpec
Raw Permalink Normal View History

2020-08-20 20:02:50 +08:00
%{?nodejs_find_provides_and_requires}
%global enable_tests 1
Name: nodejs-ejs
Version: 1.0.0
Release: 2
2020-08-20 20:02:50 +08:00
Summary: Embedded JavaScript templates for Node.js
License: MIT
2020-08-25 16:33:46 +08:00
URL: https://github.com/tj/ejs
2020-09-08 10:28:20 +08:00
Source0: https://github.com/tj/ejs/archive/%{version}.tar.gz
2020-08-25 16:33:46 +08:00
Patch0: nodejs-ejs_fix-should-syntax.patch
2020-08-20 20:02:50 +08:00
BuildArch: noarch
ExclusiveArch: %{nodejs_arches} noarch
ExclusiveArch: %{ix86} x86_64 %{arm} noarch
BuildRequires: nodejs-packaging
%if 0%{?enable_tests}
BuildRequires: npm(mocha) npm(should)
%endif
%description
%{summary}.
%prep
%autosetup -n ejs-%{version} -p1
2020-08-20 20:02:50 +08:00
%build
%install
mkdir -p %{buildroot}%{nodejs_sitelib}/ejs
cp -pr package.json ejs.js ejs.min.js index.js lib/ \
%{buildroot}%{nodejs_sitelib}/ejs
%nodejs_symlink_deps
%if 0%{?enable_tests}
%check
%nodejs_symlink_deps --check
%{nodejs_sitelib}/mocha/bin/mocha --require should --reporter spec
%endif
%files
%doc History.md Readme.md examples/
%{nodejs_sitelib}/ejs
%changelog
* Web 09 Jun 2021 zhaoyao<zhaoyao32@huawei.com> - 1.0.0-2
- %prep no longer patch with git
2020-08-20 20:02:50 +08:00
* Tue Aug 18 2020 Anan Fu <fuanan3@huawei.com> - 1.0.0-1
- package init