File stdlib2.spec of Package stdlib2
%define bname stdlib2
Name: %bname
Version: 0.0.1
Release: 5
Summary: Erlang/OTP collection of useful functions, data structures, and behaviours
License: BSD-2-Clause
Group: Development/Tools/Other
URL: https://github.com/cannedprimates/%bname
Source: %bname.tar.xz
Patch1: %bname-config.patch
Patch3: %bname-stacktrace.patch
Patch4: %bname-doc.patch
Patch5: %bname-no_inline.patch
BuildArch: noarch
Provides: erlang-%bname = %version-release
BuildRequires: rpm-macros-erlang rpm-build-erlang
BuildRequires: rebar >= 2.6.1-7
%description
Erlang/OTP collection of useful functions, data structures, and behaviours.
%package doc
Summary: Documentation of %bname
Group: Documentation/HTML
Provides: erlang-%bname-doc = %version-%release
Conflicts: %name < 0.0.1-3
%description doc
Erlang/OTP collection of useful functions, data structures, and behaviours.
This package contains documantation for %bname.
%prep
%setup -q -n %bname
%patch1 -p1
%patch3 -p1
%patch4 -p1
%patch5 -p1
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, L, {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_function]" 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/
%if 0
%check
ERL_COMPILER_OPTIONS="[inline,verbose,nowarn_deprecated_function]" rebar -C %bname.rebar.config eunit
%endif
%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
* Sun Sep 24 2023 Led <ledest@gmail.com> 0.0.1-5
- update patches:
+ stdlib2-config.patch
* Fri Jan 06 2023 Led <ledest@gmail.com> 0.0.1-4
- remove patches:
+ stdlib2-maybe.patch
* Fri Jun 10 2022 Led <ledest@gmail.com> 0.0.1-3
- add patches:
+ stdlib2-config.patch
+ stdlib2-maybe.patch
+ stdlib2-stacktrace.patch
+ stdlib2-doc.patch
- move docs to separate subpackage
* Sun Aug 20 2017 Led <ledest@gmail.com> 0.0.1-2
- add no_inline option for s2_loop module
* Sun Aug 13 2017 Led <ledest@gmail.com> 0.0.1-1
- initial build