Files
erlang-ranch/erlang-ranch.spec

70 lines
2.4 KiB
RPMSpec

#
# spec file
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define app_name ranch
Name: erlang-%{app_name}
Version: 2.1.0
%define app_ver %(echo "%{version}" | cut -d "+" -f1)
Release: 0
License: ISC
Summary: Socket acceptor pool for TCP protocols
URL: https://github.com/ninenines/ranch
Group: Development/Libraries/Other
Source: %{app_name}-%{version}.tar.xz
Requires: erlang
BuildRequires: erlang
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Ranch aims to provide everything you need to accept TCP connections with a
small code base and low latency while being easy to use directly as an
application or to embed into your own.
Ranch provides a modular design, letting you choose which transport and
protocol are going to be used for a particular listener. Listeners accept and
manage connections on one port, and include facilities to limit the number of
concurrent connections. Connections are sorted into pools, each pool having a
different configurable limit.
Ranch also allows you to upgrade the acceptor pool without having to close any
of the currently opened sockets.
%prep
%setup -q -n %{app_name}-%{version}
%build
%{__make} %{?_smp_mflags} clean all
%install
for dir in ebin ; do
mkdir -p %{buildroot}%{erlang_libdir}/%{app_name}-%{app_ver}/${dir}
cp -r ${dir}/* %{buildroot}%{erlang_libdir}/%{app_name}-%{app_ver}/${dir}/
done
%files
%defattr(-,root,root)
%license LICENSE
%doc README.asciidoc
%dir %{erlang_libdir}/%{app_name}-%{app_ver}
%dir %{erlang_libdir}/%{app_name}-%{app_ver}/ebin
%{erlang_libdir}/%{app_name}-%{app_ver}/ebin/%{app_name}.app
%{erlang_libdir}/%{app_name}-%{app_ver}/ebin/%{app_name}.appup
%{erlang_libdir}/%{app_name}-%{app_ver}/ebin/*.beam
%changelog