File bear.spec of Package bear
%define bname bear
Name: %bname
Version: 1.0.0
Release: 1
Summary: A set of statistics functions for Erlang
License: Apache-2.0
Group: Development/Tools/Other
URL: https://github.com/folsom-project/%bname
Source: %bname-%version.tar.xz
Patch0: %bname-%version-git.patch
BuildArch: noarch
Provides: erlang-%bname = %version-%release
BuildRequires: rpm-macros-erlang rpm-build-erlang
BuildRequires: rebar >= 2.6.1-7
%description
A set of statistics functions for Erlang.
Currently bear is focused on use inside the Folsom Erlang metrics library but all
of these functions are generic and useful in other situations.
%package doc
Summary: Documentation of %bname
Group: Documentation/HTML
Provides: erlang-%bname-doc = %version-%release
Conflicts: %name < 0.8.3
%description doc
Documentation of %bname.
%prep
%setup -q -n %bname-%version
%patch -p1 -P0
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:keydelete(maintainers, 1, L)]),
[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]" rebar %{?_smp_mflags} -C %bname.rebar.config compile -v
rebar %{?_smp_mflags} -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]" 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 May 10 2024 Led <ledest@gmail.com> 1.0.0-1
- 1.0.0
- git 9c7b657
- remove patches:
+ bear-0.8.7-test-export.patch
* Sun Mar 05 2023 Led <ledest@gmail.com> 0.8.8-1
- 0.8.8
* Mon Jul 13 2020 Led <ledest@gmail.com> 0.8.7-2
- clean up bear.app
* Tue Oct 30 2018 Led <ledest@gmail.com> 0.8.7-1
- 0.8.7
- add patches:
+ bear-0.8.7-test-export.patch
* Tue Dec 12 2017 Led <ledest@gmail.com> 0.8.5-4
- clean up %%prep
* Mon Sep 18 2017 Led <ledest@gmail.com> 0.8.5-3
- clean up %%prep
* Mon Sep 18 2017 Led <ledest@gmail.com> 0.8.5-2
- fix %%files
- fix changelog
* Mon Sep 18 2017 Led <ledest@gmail.com> 0.8.5-1
- 0.8.5
- git d1ff54d
- fix URL
- add doc subpackage
* Sun May 21 2017 Led <ledest@gmail.com> 0.8.2-3
- revert BuildRequires
* Sat May 20 2017 Led <ledest@gmail.com> 0.8.2-2
- update buildRequires
* Sun Feb 12 2017 Led <ledest@gmail.com> 0.8.2-1
- initial build