File otpbp.spec of Package otpbp
%define bname otpbp
Name: %bname
Version: 7.6.3
Release: 1
Summary: Erlang OTP backports
License: GPL-3.0+
Group: Development/Tools/Other
URL: https://github.com/Ledest/%bname
Source: %bname-%version.tar.xz
#Patch: %bname-%version-git.patch
BuildArch: noarch
Provides: erlang-%bname = %version-%release
Requires: erlang >= 1:20.0
BuildRequires: rpm-macros-erlang rpm-build-erlang
BuildRequires: rebar >= 2.6.1-7
BuildRequires: erlang >= 1:20.0
BuildRequires: erlang-kernel-devel >= 1:20.0
BuildRequires: erlang-public_key-devel >= 1:20.0
BuildRequires: erlang_beam(crypto)
BuildRequires: erlang_beam(ct)
BuildRequires: erlang_beam(diameter) erlang_beam(diameter_config) erlang_beam(diameter_service)
BuildRequires: erlang_beam(disksup)
BuildRequires: erlang_beam(eldap)
BuildRequires: erlang_beam(ftp)
BuildRequires: erlang_beam(http_uri) erlang_beam(httpd_util)
BuildRequires: erlang_beam(snmpa)
BuildRequires: erlang_beam(ssl)
%description
Erlang OTP backports.
%package devel
Summary: Headers and parse transformer of %bname
Group: Development/Tools/Other
Provides: erlang-%bname-devel = %version-%release
Conflicts: %name < 0.22.0
%description devel
Erlang OTP backports.
This package contains headers and parse transformer of %bname.
%package doc
Summary: Documentation of %bname
Group: Documentation/HTML
Provides: erlang-%bname-doc = %version-%release
Conflicts: %name < 0.22.0
%description doc
Erlang OTP backports.
This package contains documentation of %bname.
%prep
%setup -q -n %bname-%version
#patch -p1
ln -sf rebar.config.script %bname.rebar.config.script
erl -noshell -eval '
{ok, [{application, %bname, L}]} = file:consult("src/%bname.app.src"),
S = [description, vsn, registered, applications, modules, env, links, licenses],
file:write_file("src/%bname.app.src",
io_lib:format("{application, %bname, ~91p}.~n",
[[E || {K, _} = E <- L, lists:member(K, [description, vsn, registered, applications,
modules, env, links, licenses])]]),
[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
erl -noshell -eval '
Es = lists:foldl(fun(F, A) ->
{ok, {M, [{exports, Fs}]}} = beam_lib:chunks(F, [exports]),
case lists:sort(Fs) of
[{module_info, 0}, {module_info, 1}] -> [M|A];
_ -> A
end
end, [], filelib:wildcard("./ebin/*.beam")),
lists:foreach(fun(E) -> io:fwrite("%_otplibdir/%bname-%version/ebin/~s.beam~n", [E]) end, lists:sort(Es)),
{ok, [{application, %bname, L}]} = file:consult("ebin/%bname.app"),
{_, Ms} = lists:keyfind(modules, 1, L),
file:write_file("ebin/%bname.app",
io_lib:format("{application, %bname, ~81p}.~n", [lists:keyreplace(modules, 1, L, {modules, Ms -- Es})]),
[raw]),
init:stop().' | sed 's/^/%%exclude /' > exclude.list
%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/include
install -p -m 0644 include/* %buildroot%_otplibdir/%bname-%version/include/
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/%bname-%version/doc %buildroot%_docdir/%name/html
install -p -m 0644 README* TODO %buildroot%_docdir/%name/
%check
ERL_COMPILER_OPTIONS="[inline,verbose]" rebar -C %bname.rebar.config eunit -v
%files -f exclude.list
%defattr(-,root,root)
%_otplibdir/*
%exclude %_otplibdir/%bname-*/doc
%exclude %_otplibdir/%bname-*/include
%exclude %_otplibdir/%bname-*/ebin/%{bname}_pt.*
%files devel
%defattr(-,root,root)
%dir %_otplibdir/%bname-*
%dir %_otplibdir/%bname-*/ebin
%_otplibdir/%bname-*/include
%_otplibdir/%bname-*/ebin/%{bname}_pt.*
%files doc
%defattr(-,root,root)
%doc %_docdir/%name
%doc %dir %_otplibdir/%bname-*
%doc %_otplibdir/%bname-*/doc
%changelog
* Tue Feb 11 2025 Led <ledest@gmail.com> 7.6.3-1
- 7.6.3
* Wed Feb 05 2025 Led <ledest@gmail.com> 7.6.2-1
- 7.6.2
* Tue Dec 17 2024 Led <ledest@gmail.com> 7.6.1-1
- 7.6.1
* Tue Nov 12 2024 Led <ledest@gmail.com> 7.6.0-1
- 7.6.0
* Mon Nov 11 2024 Led <ledest@gmail.com> 7.5.1-1
- 7.5.1
* Thu Nov 07 2024 Led <ledest@gmail.com> 7.5.0-1
- 7.5.0
* Sun Nov 03 2024 Led <ledest@gmail.com> 7.4.0-1
- 7.4.0
* Thu Oct 17 2024 Led <ledest@gmail.com> 7.3.4-1
- 7.3.4
* Fri Oct 11 2024 Led <ledest@gmail.com> 7.3.3-1
- 7.3.3
* Mon Sep 23 2024 Led <ledest@gmail.com> 7.3.2-1
- 7.3.2
* Mon Sep 09 2024 Led <ledest@gmail.com> 7.3.1-1
- 7.3.1
* Mon Aug 19 2024 Led <ledest@gmail.com> 7.3.0-1
- 7.3.0
* Fri Aug 16 2024 Led <ledest@gmail.com> 7.2.0-1
- 7.2.0
* Fri Aug 16 2024 Led <ledest@gmail.com> 7.1.1-1
- 7.1.1
* Tue Jul 02 2024 Led <ledest@gmail.com> 7.1.0-1
- 7.1.0
* Wed Jun 19 2024 Led <ledest@gmail.com> 7.0.4-1
- 7.0.4
* Tue Jun 11 2024 Led <ledest@gmail.com> 7.0.3-1
- 7.0.3
* Mon Jun 10 2024 Led <ledest@gmail.com> 7.0.2-1
- 7.0.2
* Wed May 08 2024 Led <ledest@gmail.com> 7.0.1-1
- 7.0.1
* Wed May 08 2024 Led <ledest@gmail.com> 7.0.0-1
- 7.0.0
* Wed May 08 2024 Led <ledest@gmail.com> 6.13.2-2
- fix Requires and BuildRequires
* Wed May 01 2024 Led <ledest@gmail.com> 6.13.2-1
- 6.13.2
* Wed May 01 2024 Led <ledest@gmail.com> 6.13.1-1
- 6.13.1
* Wed May 01 2024 Led <ledest@gmail.com> 6.13.0-1
- 6.13.0
* Sat Apr 27 2024 Led <ledest@gmail.com> 6.12.0-1
- 6.12.0
* Thu Apr 11 2024 Led <ledest@gmail.com> 6.11.2-1
- 6.11.2
* Tue Mar 26 2024 Led <ledest@gmail.com> 6.11.1-2
- update BuildRequires
* Tue Mar 26 2024 Led <ledest@gmail.com> 6.11.1-1
- 6.11.1
* Tue Mar 26 2024 Led <ledest@gmail.com> 6.11.0-1
- 6.11.0
* Fri Mar 22 2024 Led <ledest@gmail.com> 6.10.0-1
- 6.10.0
* Sun Mar 10 2024 Led <ledest@gmail.com> 6.9.2-1
- 6.9.2
* Sun Mar 10 2024 Led <ledest@gmail.com> 6.9.1-1
- 6.9.1
* Sat Mar 09 2024 Led <ledest@gmail.com> 6.9.0-1
- 6.9.0
* Tue Feb 27 2024 Led <ledest@gmail.com> 6.8.0-1
- 6.8.0
* Mon Jan 29 2024 Led <ledest@gmail.com> 6.7.1-1
- 6.7.1
* Wed Jan 10 2024 Led <ledest@gmail.com> 6.7.0-1
- 6.7.0
* Fri Dec 15 2023 Led <ledest@gmail.com> 6.6.4-1
- 6.6.4
* Mon Dec 11 2023 Led <ledest@gmail.com> 6.6.3-1
- 6.6.3
* Sun Dec 10 2023 Led <ledest@gmail.com> 6.6.2-1
- 6.6.2
* Sun Dec 10 2023 Led <ledest@gmail.com> 6.6.1-1
- 6.6.1
* Sun Dec 10 2023 Led <ledest@gmail.com> 6.6.0-1
- 6.6.0
* Sun Nov 26 2023 Led <ledest@gmail.com> 6.5.0-1
- 6.5.0
* Fri Nov 17 2023 Led <ledest@gmail.com> 6.4.0-1
- 6.4.0
* Tue Nov 14 2023 Led <ledest@gmail.com> 6.3.3-1
- 6.3.3
* Tue Nov 14 2023 Led <ledest@gmail.com> 6.3.2-1
- 6.3.2
* Mon Nov 13 2023 Led <ledest@gmail.com> 6.3.1-1
- 6.3.1
* Mon Nov 13 2023 Led <ledest@gmail.com> 6.2.1-1
- 6.2.1
* Mon Nov 13 2023 Led <ledest@gmail.com> 6.2.0-1
- 6.2.0
* Sun Nov 12 2023 Led <ledest@gmail.com> 6.1.0-1
- 6.1.0
* Sat Nov 04 2023 Led <ledest@gmail.com> 6.0.0-1
- 6.0.0
* Fri Nov 03 2023 Led <ledest@gmail.com> 5.13.1-1
- 5.13.1
* Sun Oct 29 2023 Led <ledest@gmail.com> 5.13.0-1
- 5.13.0
* Sun Oct 29 2023 Led <ledest@gmail.com> 5.12.1-1
- 5.12.1
* Sat Oct 28 2023 Led <ledest@gmail.com> 5.12.0-1
- 5.12.0
* Thu Oct 26 2023 Led <ledest@gmail.com> 5.11.2-1
- 5.11.2
* Thu Oct 26 2023 Led <ledest@gmail.com> 5.11.1-1
- 5.11.1
* Thu Oct 26 2023 Led <ledest@gmail.com> 5.11.0-1
- 5.11.0
* Tue Oct 24 2023 Led <ledest@gmail.com> 5.10.1-1
- 5.10.1
* Tue Oct 24 2023 Led <ledest@gmail.com> 5.10.0-1
- 5.10.0
* Thu Oct 19 2023 Led <ledest@gmail.com> 5.9.0-1
- 5.9.0
* Fri Sep 29 2023 Led <ledest@gmail.com> 5.8.0-1
- 5.8.0
* Wed Sep 13 2023 Led <ledest@gmail.com> 5.7.0-1
- 5.7.0
* Wed Sep 13 2023 Led <ledest@gmail.com> 5.6.1-1
- 5.6.1
* Wed Sep 13 2023 Led <ledest@gmail.com> 5.6.0-1
- 5.6.0
* Sun Sep 03 2023 Led <ledest@gmail.com> 5.5.0-1
- 5.5.0
* Sun Aug 20 2023 Led <ledest@gmail.com> 5.4.2-1
- 5.4.2
* Sun Aug 06 2023 Led <ledest@gmail.com> 5.4.1-1
- 5.4.1
* Tue Aug 01 2023 Led <ledest@gmail.com> 5.4.0-1
- 5.4.0
* Mon Jul 31 2023 Led <ledest@gmail.com> 5.3.0-1
- 5.3.0
* Mon Jul 31 2023 Led <ledest@gmail.com> 5.2.2-3
- git d505b79
* Sun Jul 30 2023 Led <ledest@gmail.com> 5.2.2-2
- git 3bea582
* Sun Jul 30 2023 Led <ledest@gmail.com> 5.2.2-1
- 5.2.2
- git 6675e0d
* Sat Jul 22 2023 Led <ledest@gmail.com> 5.1.2-1
- 5.1.2
* Sat Jul 15 2023 Led <ledest@gmail.com> 5.1.0-1
- 5.1.0
* Sat Jul 15 2023 Led <ledest@gmail.com> 5.0.0-1
- 5.0.0
* Wed Jun 28 2023 Led <ledest@gmail.com> 4.48.0-1
- 4.48.0
* Fri Jun 23 2023 Led <ledest@gmail.com> 4.47.0-1
- 4.47.0
* Tue Jun 20 2023 Led <ledest@gmail.com> 4.46.0-1
- 4.46.0
* Sat Jun 17 2023 Led <ledest@gmail.com> 4.45.0-1
- 4.45.0
* Fri Jun 09 2023 Led <ledest@gmail.com> 4.44.0-1
- 4.44.0
* Wed Jun 07 2023 Led <ledest@gmail.com> 4.43.0-1
- 4.43.0
* Wed May 10 2023 Led <ledest@gmail.com> 4.42.0-1
- 4.42.0
* Wed Apr 12 2023 Led <ledest@gmail.com> 4.41.0-1
- 4.41.0
* Thu Apr 06 2023 Led <ledest@gmail.com> 4.40.0-1
- 4.40.0
* Tue Apr 04 2023 Led <ledest@gmail.com> 4.39.0-1
- 4.39.0
* Mon Mar 27 2023 Led <ledest@gmail.com> 4.38.1-1
- 4.38.1
* Wed Mar 22 2023 Led <ledest@gmail.com> 4.38.0-1
- 4.38.0
* Fri Mar 03 2023 Led <ledest@gmail.com> 4.37.1-1
- 4.37.1
* Fri Mar 03 2023 Led <ledest@gmail.com> 4.37.0-1
- 4.37.0
* Thu Feb 09 2023 Led <ledest@gmail.com> 4.36.0-1
- 4.36.0
* Mon Jan 30 2023 Led <ledest@gmail.com> 4.35.0-1
- 4.35.0
* Sat Dec 24 2022 Led <ledest@gmail.com> 4.34.1-1
- 4.34.1
* Sat Dec 24 2022 Led <ledest@gmail.com> 4.34.0-1
- 4.34.0
* Thu Dec 15 2022 Led <ledest@gmail.com> 4.33.0-1
- 4.33.0
* Thu Dec 15 2022 Led <ledest@gmail.com> 4.32.3-1
- 4.32.3
* Thu Dec 15 2022 Led <ledest@gmail.com> 4.32.2-1
- 4.32.2
* Fri Nov 18 2022 Led <ledest@gmail.com> 4.32.1-1
- 4.32.1
* Fri Nov 18 2022 Led <ledest@gmail.com> 4.32.0-1
- 4.32.0
* Wed Oct 26 2022 Led <ledest@gmail.com> 4.31.1-1
- 4.31.1
* Wed Oct 26 2022 Led <ledest@gmail.com> 4.31.0-1
- 4.31.0
* Wed Oct 12 2022 Led <ledest@gmail.com> 4.30.1-1
- 4.30.1
* Wed Oct 12 2022 Led <ledest@gmail.com> 4.30.0-1
- 4.30.0
* Tue Oct 11 2022 Led <ledest@gmail.com> 4.29.3-1
- 4.29.3
* Thu Sep 08 2022 Led <ledest@gmail.com> 4.29.2-1
- 4.29.2
* Sun Aug 21 2022 Led <ledest@gmail.com> 4.29.1-1
- 4.29.1
* Sun Aug 14 2022 Led <ledest@gmail.com> 4.29.0-1
- 4.29.0
* Sun Aug 07 2022 Led <ledest@gmail.com> 4.28.0-1
- 4.28.0
* Sun Aug 07 2022 Led <ledest@gmail.com> 4.27.0-1
- 4.27.0
* Sun Aug 07 2022 Led <ledest@gmail.com> 4.26.3-1
- 4.26.3
* Sun Aug 07 2022 Led <ledest@gmail.com> 4.26.2-1
- 4.26.2
* Fri Aug 05 2022 Led <ledest@gmail.com> 4.26.1-1
- 4.26.1
* Fri Aug 05 2022 Led <ledest@gmail.com> 4.26.0-1
- 4.26.0
* Mon Jul 25 2022 Led <ledest@gmail.com> 4.25.0-1
- 4.25.0
* Thu Jul 21 2022 Led <ledest@gmail.com> 4.24.3-1
- 4.24.3
* Mon Jun 27 2022 Led <ledest@gmail.com> 4.24.2-1
- 4.24.2
* Thu Jun 23 2022 Led <ledest@gmail.com> 4.24.1-1
- 4.24.1
* Wed Apr 06 2022 Led <ledest@gmail.com> 4.24.0-1
- 4.24.0
* Thu Mar 24 2022 Led <ledest@gmail.com> 4.23.0-1
- 4.23.0
* Thu Oct 14 2021 Led <ledest@gmail.com> 4.22.1-1
- 4.22.1
* Sat Sep 11 2021 Led <ledest@gmail.com> 4.22.0-1
- 4.22.0
* Fri Sep 10 2021 Led <ledest@gmail.com> 4.21.0-4
- fix BuildRequires
* Fri Sep 10 2021 Led <ledest@gmail.com> 4.21.0-3
- update BuildRequires
* Fri Sep 10 2021 Led <ledest@gmail.com> 4.21.0-2
- update BuildRequires
* Fri Sep 10 2021 Led <ledest@gmail.com> 4.21.0-1
- 4.21.0
* Thu Sep 09 2021 Led <ledest@gmail.com> 4.20.1-1
- 4.20.1
* Fri Sep 03 2021 Led <ledest@gmail.com> 4.19.0-1
- 4.19.0
* Thu Aug 26 2021 Led <ledest@gmail.com> 4.18.0-1
- 4.18.0
* Sun Aug 22 2021 Led <ledest@gmail.com> 4.17.0-1
- 4.17.0
* Sun Aug 22 2021 Led <ledest@gmail.com> 4.16.0-1
- 4.16.0
* Sat Aug 21 2021 Led <ledest@gmail.com> 4.15.0-1
- 4.15.0
* Wed Aug 18 2021 Led <ledest@gmail.com> 4.14.0-1
- 4.14.0
* Sat Aug 14 2021 Led <ledest@gmail.com> 4.13.1-1
- 4.13.1
* Sat Aug 14 2021 Led <ledest@gmail.com> 4.13.0-1
- 4.13.0
* Thu Jul 15 2021 Led <ledest@gmail.com> 4.12.0-1
- 4.12.0
* Tue Jun 22 2021 Led <ledest@gmail.com> 4.11.0-1
- 4.11.0
* Wed Apr 14 2021 Led <ledest@gmail.com> 4.10.0-1
- 4.10.0
* Tue Apr 13 2021 Led <ledest@gmail.com> 4.9.0-1
- 4.9.0
* Tue Apr 13 2021 Led <ledest@gmail.com> 4.8.0-1
- 4.8.0
* Tue Apr 13 2021 Led <ledest@gmail.com> 4.7.0-1
- 4.7.0
* Tue Apr 13 2021 Led <ledest@gmail.com> 4.6.1-1
- 4.6.1
* Tue Mar 30 2021 Led <ledest@gmail.com> 4.6.0-1
- 4.6.0
* Mon Mar 22 2021 Led <ledest@gmail.com> 4.5.0-1
- 4.5.0
* Mon Mar 22 2021 Led <ledest@gmail.com> 4.4.1-1
- 4.4.1
* Sun Mar 21 2021 Led <ledest@gmail.com> 4.4.0-1
- 4.4.0
* Thu Mar 18 2021 Led <ledest@gmail.com> 4.3.3-1
- 4.3.3
* Tue Mar 16 2021 Led <ledest@gmail.com> 4.3.2-1
- 4.3.2
* Tue Mar 16 2021 Led <ledest@gmail.com> 4.3.1-1
- 4.3.1
* Sun Feb 21 2021 Led <ledest@gmail.com> 4.3.0-1
- 4.3.0
* Wed Feb 17 2021 Led <ledest@gmail.com> 4.2.0-1
- 4.2.0
* Sat Feb 13 2021 Led <ledest@gmail.com> 4.1.0-1
- 4.1.0
* Sat Feb 13 2021 Led <ledest@gmail.com> 4.0.2-1
- 4.0.2
* Sun Feb 07 2021 Led <ledest@gmail.com> 4.0.1-1
- 4.0.1
* Sun Feb 07 2021 Led <ledest@gmail.com> 4.0.0-1
- 4.0.0
* Sun Feb 07 2021 Led <ledest@gmail.com> 3.8.0-2
- fix BuildRequires
* Thu Jan 14 2021 Led <ledest@gmail.com> 3.8.0-1
- 3.8.0
* Fri Dec 18 2020 Led <ledest@gmail.com> 3.7.0-1
- 3.7.0
* Tue Dec 01 2020 Led <ledest@gmail.com> 3.6.0-1
- 3.6.0
* Tue Dec 01 2020 Led <ledest@gmail.com> 3.5.0-1
- 3.5.0
* Mon Nov 30 2020 Led <ledest@gmail.com> 3.4.1-1
- 3.4.1
* Tue Nov 24 2020 Led <ledest@gmail.com> 3.4.0-1
- 3.4.0
- update BuildRequires
* Mon Nov 02 2020 Led <ledest@gmail.com> 3.3.0-1
- 3.3.0
* Fri Oct 16 2020 Led <ledest@gmail.com> 3.2.2-1
- 3.2.2
* Fri Oct 16 2020 Led <ledest@gmail.com> 3.2.1-1
- 3.2.1
* Fri Oct 16 2020 Led <ledest@gmail.com> 3.2.0-1
- 3.2.0
* Fri Oct 09 2020 Led <ledest@gmail.com> 3.1.0-1
- 3.1.0
* Tue Jul 07 2020 Led <ledest@gmail.com> 3.0.1-1
- 3.0.1
* Sun May 31 2020 Led <ledest@gmail.com> 3.0.0-1
- 3.0.0
* Fri May 29 2020 Led <ledest@gmail.com> 2.5.0-1
- 2.5.0
* Tue May 19 2020 Led <ledest@gmail.com> 2.4.3-1
- 2.4.3
* Sat Mar 28 2020 Led <ledest@gmail.com> 2.4.2-1
- 2.4.2
* Sat Mar 28 2020 Led <ledest@gmail.com> 2.4.1-1
- 2.4.1
* Wed Mar 25 2020 Led <ledest@gmail.com> 2.4.0-1
- 2.4.0
* Thu Feb 27 2020 Led <ledest@gmail.com> 2.3.1-1
- 2.3.1
* Tue Feb 25 2020 Led <ledest@gmail.com> 2.3.0-1
- 2.3.0
* Fri Feb 21 2020 Led <ledest@gmail.com> 2.2.0-1
- 2.2.0
* Mon Feb 10 2020 Led <ledest@gmail.com> 2.1.0-1
- 2.1.0
* Thu Dec 19 2019 Led <ledest@gmail.com> 2.0.2-1
- 2.0.2
* Wed Dec 04 2019 Led <ledest@gmail.com> 2.0.1-1
- 2.0.1
* Sun Nov 17 2019 Led <ledest@gmail.com> 1.6.4-1
- 1.6.4
* Sat Nov 16 2019 Led <ledest@gmail.com> 1.6.3-1
- 1.6.3
* Sun Oct 27 2019 Led <ledest@gmail.com> 1.6.2-1
- 1.6.2
* Sat Oct 26 2019 Led <ledest@gmail.com> 1.6.1-1
- 1.6.1
* Sat Oct 12 2019 Led <ledest@gmail.com> 1.6.0-1
- 1.6.0
* Fri Sep 27 2019 Led <ledest@gmail.com> 1.5.0-1
- 1.5.0
* Sun Sep 15 2019 Led <ledest@gmail.com> 1.4.0-1
- 1.4.0
* Sat Sep 14 2019 Led <ledest@gmail.com> 1.3.1-1
- 1.3.1
* Thu Aug 29 2019 Led <ledest@gmail.com> 1.3.0-1
- 1.3.0
* Mon Aug 19 2019 Led <ledest@gmail.com> 1.2.1-1
- 1.2.1
* Thu Aug 15 2019 Led <ledest@gmail.com> 1.2.0-2
- don't exclude otpbp_pt from modules in otpbp.app
* Wed Aug 14 2019 Led <ledest@gmail.com> 1.2.0-1
- 1.2.0
* Mon Jul 29 2019 Led <ledest@gmail.com> 1.1.0-4
- fix .app edition
* Mon Jul 29 2019 Led <ledest@gmail.com> 1.1.0-3
- revert unicode_util module
* Mon Jul 29 2019 Led <ledest@gmail.com> 1.1.0-2
- don't include empty modules
* Sat Jul 27 2019 Led <ledest@gmail.com> 1.1.0-1
- 1.1.0
* Sat Jul 27 2019 Led <ledest@gmail.com> 1.0.0-1
- 1.0.0
* Mon Jul 08 2019 Led <ledest@gmail.com> 0.44.0-1
- 0.44.0
* Sun May 26 2019 Led <ledest@gmail.com> 0.43.0-1
- 0.43.0
* Sun May 26 2019 Led <ledest@gmail.com> 0.42.0-1
- 0.42.0
* Sun May 26 2019 Led <ledest@gmail.com> 0.41.0-1
- 0.41.0
* Thu Mar 21 2019 Led <ledest@gmail.com> 0.40.6-1
- 0.40.6
* Thu Jan 17 2019 Led <ledest@gmail.com> 0.40.5-1
- 0.40.5
* Fri Jan 04 2019 Led <ledest@gmail.com> 0.40.4-1
- 0.40.4
* Wed Dec 05 2018 Led <ledest@gmail.com> 0.40.3-1
- 0.40.3
- add %%check
* Fri Nov 16 2018 Led <ledest@gmail.com> 0.40.2-1
- 0.40.2
* Tue Nov 06 2018 Led <ledest@gmail.com> 0.40.1-1
- 0.40.1
* Fri Sep 14 2018 Led <ledest@gmail.com> 0.40.0-1
- 0.40.0
* Fri Jul 27 2018 Led <ledest@gmail.com> 0.39.0-1
- 0.39.0
* Sat Jun 09 2018 Led <ledest@gmail.com> 0.38.2-1
- 0.38.2
* Sat Jun 09 2018 Led <ledest@gmail.com> 0.38.1-1
- 0.38.1
* Fri Jun 08 2018 Led <ledest@gmail.com> 0.38.0-1
- 0.38.0
* Mon Jun 04 2018 Led <ledest@gmail.com> 0.37.2-1
- 0.37.2
* Sun Jun 03 2018 Led <ledest@gmail.com> 0.37.1-1
- 0.37.1
* Mon May 14 2018 Led <ledest@gmail.com> 0.36.1-2
- add README to doc subpackage
* Thu May 10 2018 Led <ledest@gmail.com> 0.36.1-1
- 0.36.1
* Sun Apr 29 2018 Led <ledest@gmail.com> 0.36.0-1
- 0.36.0
* Mon Mar 26 2018 Led <ledest@gmail.com> 0.35.0-1
- 0.35.0
* Tue Mar 20 2018 Led <ledest@gmail.com> 0.34.0-1
- 0.34.0
* Wed Mar 07 2018 Led <ledest@gmail.com> 0.33.0-1
- 0.33.0
* Sat Mar 03 2018 Led <ledest@gmail.com> 0.32.5-1
- 0.32.5
* Thu Mar 01 2018 Led <ledest@gmail.com> 0.32.4-1
- 0.32.4
* Fri Jan 19 2018 Led <ledest@gmail.com> 0.32.3-1
- 0.32.3
* Fri Jan 19 2018 Led <ledest@gmail.com> 0.32.2-1
- 0.32.2
* Tue Jan 16 2018 Led <ledest@gmail.com> 0.32.1-1
- 0.32.1
* Tue Jan 02 2018 Led <ledest@gmail.com> 0.32.0-1
- 0.32.0
* Thu Dec 14 2017 Led <ledest@gmail.com> 0.31.0-1
- 0.31.0
* Thu Dec 07 2017 Led <ledest@gmail.com> 0.30.1-1
- 0.30.1
* Fri Dec 01 2017 Led <ledest@gmail.com> 0.30.0-1
- 0.30.0
* Mon Nov 13 2017 Led <ledest@gmail.com> 0.29.1-1
- 0.29.1
* Mon Sep 18 2017 Led <ledest@gmail.com> 0.28.8-1
- 0.28.8
* Thu Jul 13 2017 Led <ledest@gmail.com> 0.28.7-1
- 0.28.7
* Sun Jun 25 2017 Led <ledest@gmail.com> 0.28.6-1
- 0.28.6
* Wed Jun 21 2017 Led <ledest@gmail.com> 0.28.5-1
- 0.28.5
* Fri Jun 16 2017 Led <ledest@gmail.com> 0.28.3-1
- 0.28.3
* Fri Jun 16 2017 Led <ledest@gmail.com> 0.28.2-1
- 0.28.2
* Fri Jun 16 2017 Led <ledest@gmail.com> 0.28.1-1
- 0.28.1
* Sun Jun 04 2017 Led <ledest@gmail.com> 0.28.0-1
- 0.28.0
* Wed May 31 2017 Led <ledest@gmail.com> 0.27.3-1
- 0.27.3
* Wed May 31 2017 Led <ledest@gmail.com> 0.27.2-1
- 0.27.2
* Wed May 31 2017 Led <ledest@gmail.com> 0.27.1-1
- 0.27.1
* Wed May 31 2017 Led <ledest@gmail.com> 0.27.0-1
- 0.27.0
* Sun May 28 2017 Led <ledest@gmail.com> 0.26.7-2
- update %%files
* Sun May 28 2017 Led <ledest@gmail.com> 0.26.7-1
- 0.26.7
* Sun May 28 2017 Led <ledest@gmail.com> 0.26.6-1
- 0.26.6
* Sun May 28 2017 Led <ledest@gmail.com> 0.26.5-1
- 0.26.5
* Sun May 28 2017 Led <ledest@gmail.com> 0.26.4-1
- 0.26.4
* Sun May 28 2017 Led <ledest@gmail.com> 0.26.3-1
- 0.26.3
* Sun May 28 2017 Led <ledest@gmail.com> 0.26.2-1
- 0.26.2
* Sun May 28 2017 Led <ledest@gmail.com> 0.26.1-1
- 0.26.1
* Sat May 27 2017 Led <ledest@gmail.com> 0.26.0-1
- 0.26.0
* Sat May 27 2017 Led <ledest@gmail.com> 0.25.1-1
- 0.25.1
* Thu May 04 2017 Led <ledest@gmail.com> 0.25.0-1
- 0.25.0
* Tue Apr 11 2017 Led <ledest@gmail.com> 0.24.0-1
- 0.24.0
* Tue Mar 28 2017 Led <ledest@gmail.com> 0.23.1-1
- 0.23.1
* Sun Mar 12 2017 Led <ledest@gmail.com> 0.23.0-2
- cosmetic fix description
* Sat Mar 11 2017 Led <ledest@gmail.com> 0.23.0-1
- 0.23.0
* Sat Feb 25 2017 Led <ledest@gmail.com> 0.22.1-2
- add Conflicts
* Fri Feb 24 2017 Led <ledest@gmail.com> 0.22.1-1
- 0.22.1
- move docs to doc subpackage
- move parse transformer to devel subpackage
* Wed Feb 01 2017 Led <ledest@gmail.com> 0.20.2-1
- 0.20.2
* Sat Jan 28 2017 Led <ledest@gmail.com> 0.20.1-1
- 0.20.1
* Mon Dec 19 2016 Led <ledest@gmail.com> 0.20.0-1
- 0.20.0
* Sun Dec 04 2016 Led <ledest@gmail.com> 0.19.0-1
- 0.19.0
* Sat Aug 27 2016 Led <ledest@gmail.com> 0.16.7-1
- 0.16.7
* Fri Aug 26 2016 Led <ledest@gmail.com> 0.16.6-1
- 0.16.6
* Wed May 11 2016 Led <ledest@gmail.com> 0.16.5-1
- 0.16.5
* Tue Apr 26 2016 Led <ledest@gmail.com> 0.13.1-2
- fix build docs
* Tue Apr 26 2016 Led <ledest@gmail.com> 0.13.1-1
- 0.13.1
* Tue Mar 22 2016 Led <ledest@gmail.com> 0.12.7-2
- add URL
* Tue Mar 22 2016 Led <ledest@gmail.com> 0.12.7-1
- initial build