nodejs-prelude-ls/nodejs-prelude-ls.spec

68 lines
1.7 KiB
RPMSpec
Raw Permalink Normal View History

2020-08-20 19:42:22 +08:00
%{?nodejs_find_provides_and_requires}
%global packagename prelude-ls
%global bootstrap 1
%global enable_tests 0
%define debug_package %{nil}
2020-08-20 19:42:22 +08:00
Name: nodejs-prelude-ls
Version: 1.2.1
2020-08-20 19:42:22 +08:00
Release: 1
Summary: The prelude.ls library is a functionally oriented utility
License: MIT
URL: https://github.com/gkz/prelude-ls.git
Source0: https://github.com/gkz/prelude-ls/archive/refs/tags/%{version}.tar.gz
2020-08-20 19:42:22 +08:00
BuildArch: noarch
2020-08-21 17:48:09 +08:00
ExclusiveArch: %{nodejs_arches} noarch
BuildRequires: nodejs-packaging
2020-08-20 19:42:22 +08:00
%if 0%{?enable_tests}
2020-08-21 17:48:09 +08:00
BuildRequires: mocha npm(sinon)
2020-08-20 19:42:22 +08:00
%endif
%if !0%{?bootstrap}
2020-08-21 17:48:09 +08:00
BuildRequires: npm(LiveScript)
2020-08-20 19:42:22 +08:00
%endif
%description
prelude.ls is a functionally oriented utility library. It is powerful and
flexible. Almost all of its functions are curried. It is written in, and is
the recommended base library for, LiveScript.
%prep
%setup -q -n prelude-ls-%{version}
2020-08-20 19:42:22 +08:00
%build
%if !0%{?bootstrap}
%{_bindir}/echo -e "\e[102m -=#=- Building from source -=#=- \e[0m"
rm -rf ./lib/
mkdir ./lib/
%{_bindir}/lsc --compile package.json.ls
%{_bindir}/lsc --output lib --bare --compile src/*.ls
rm -rf ./node_modules/
%endif
%install
mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename}
cp -pr package.json lib/ \
%{buildroot}%{nodejs_sitelib}/%{packagename}
%nodejs_symlink_deps
%check
%nodejs_symlink_deps --check
%{__nodejs} -e 'require("./")'
%if 0%{?enable_tests}
%{_bindir}/lsc -o test/ test/*.ls
%{_bindir}/mocha -R spec --ui tdd
%else
%{_bindir}/echo -e "\e[101m -=#=- Tests disabled -=#=- \e[0m"
%endif
%files
%{!?_licensedir:%global license %doc}
%doc *.md
%license LICENSE
%{nodejs_sitelib}/%{packagename}
%changelog
* Tue Jul 05 2022 xu_ping <xuping33@h-partners.com> - 1.2.1-1
- Upgrade 1.2.1
2020-08-20 19:42:22 +08:00
* Thu Aug 20 2020 wangchong <wangchong56@huawei.com> - 1.1.2-1
- package init