File cluster_info.spec of Package cluster_info
%define bname cluster_info
Name: %bname
Version: 2.1.0
Release: 3
Summary: Cluster info/postmortem Erlang/OTP application
License: Apache-2.0
Group: Development/Tools/Other
URL: https://github.com/basho/%bname
Source: %bname-%version.tar.xz
#Patch0: %bname-%version-git.patch
Patch11: %bname-stacktrace.patch
BuildArch: noarch
Provides: erlang-%bname = %version-release
BuildRequires: rpm-macros-erlang rpm-build-erlang
BuildRequires: rebar >= 2.6.1-7
%description
The %bname application provides a flexible and easily-extendible way to
dump the state of a cluster of Erlang nodes.
%package doc
Summary: Documentation of %bname
Group: Documentation/HTML
Provides: erlang-%bname-doc = %version-%release
Conflicts: %name < 2.0.5-3
%description doc
The %bname application provides a flexible and easily-extendible way to
dump the state of a cluster of Erlang nodes.
This package contains documentation of %bname.
%prep
%setup -q -n %bname-%version
#patch -p1 -P0
%patch -p1 -P11
erl -noshell -eval '
{ok, [{application, %bname, L}]} = file:consult("src/%bname.app.src"),
file:write_file("src/%bname.app.src",
io_lib:format("{application, %bname, ~81p}.~n",
[lists:keystore(vsn, 1, lists:keystore(modules, 1, L, {modules, []}), {vsn, "%version"})]),
[raw]),
init:stop().'
%build
erl -noshell -eval '
{ok, L} = file:consult("rebar.config"),
file:write_file("%bname.rebar.config", [[io_lib:print(E), ".\n"] || E <- lists:keydelete(deps, 1, L)], [raw]),
init:stop().'
ERL_COMPILER_OPTIONS="[inline,verbose,nowarn_deprecated_catch]" rebar -C %bname.rebar.config compile -v
rebar -C %bname.rebar.config doc -v
%install
install -d -m 0755 %buildroot%_otplibdir/%bname-%version/ebin
install -p -m 0644 ebin/* %buildroot%_otplibdir/%bname-%version/ebin/
install -d -m 0755 %buildroot%_otplibdir/%bname-%version/doc
install -p -m 0644 doc/*.{css,html,png} %buildroot%_otplibdir/%bname-%version/doc/
install -d -m 0755 %buildroot%_docdir/%name
ln -sf %_otplibdir/%name-%version/doc %buildroot%_docdir/%name/html
install -p -m 0644 *.md %buildroot%_docdir/%name/
%check
ERL_COMPILER_OPTIONS="[inline,verbose,nowarn_deprecated_catch]" rebar -C %bname.rebar.config eunit -v
%files
%defattr(-,root,root)
%_otplibdir/*
%exclude %_otplibdir/%bname-*/doc
%files doc
%defattr(-,root,root)
%doc %_docdir/%name
%doc %dir %_otplibdir/%bname-*
%doc %_otplibdir/%bname-*/doc
%changelog
* Fri Mar 14 2025 Led <ledest@gmail.com> 2.1.0-3
- add nowarn_deprecated_catch compile option
* Tue Feb 18 2025 Led <ledest@gmail.com> 2.1.0-2
- fix patches applying
* Tue Mar 07 2023 Led <ledest@gmail.com> 2.1.0-1
- 2.1.0
- remove patches:
+ 0001-Rebar3-and-Thumbs-on-R16-OTP20.patch
+ 0002-Add-compatibility-for-OTP-21-stack-traces.patch
* Sat Aug 21 2021 Led <ledest@gmail.com> 2.0.5-4
- add patches:
+ 0001-Rebar3-and-Thumbs-on-R16-OTP20.patch
+ 0002-Add-compatibility-for-OTP-21-stack-traces.patch
+ cluster_info-stacktrace.patch
- add %%check
* Sat Jul 06 2019 Led <ledest@gmail.com> 2.0.5-3
- fix build on Erlang/OTP >= 21
- move doc to separate subpackage
* Sun Aug 13 2017 Led <ledest@gmail.com> 2.0.5-2
- fix description
* Sun Aug 13 2017 Led <ledest@gmail.com> 2.0.5-1
- initial build