Summary: Multipath TCP daemon Name: mptcpd Epoch: 1 Version: 0.5.1 Release: 1%{?dist} License: BSD URL: https://multipath-tcp.org Requires(post): systemd Requires(preun): systemd Requires(postun): systemd BuildRequires: gcc BuildRequires: libtool BuildRequires: automake BuildRequires: autoconf BuildRequires: autoconf-archive BuildRequires: libell-devel BuildRequires: systemd-units BuildRequires: systemd-rpm-macros Source0: https://github.com/intel/mptcpd/archive/v%{version}/%{name}-%{version}.tar.gz %description The Multipath TCP Daemon is a daemon for Linux based operating systems that performs multipath TCP path management related operations in user space. It interacts with the Linux kernel through a generic netlink connection to track per-connection information (e.g. available remote addresses), available network interfaces, request new MPTCP subflows, handle requests for subflows, etc. %package devel Summary: MPTCP path manager header files Group: Development/Libraries Requires: pkgconfig Requires: %{name}%{?_isa} = %{version}-%{release} License: BSD %description devel Header files for adding MPTCP path manager support to applications %prep %autosetup -p1 %build autoreconf --install --symlink --force %configure --enable-debug=info %make_build V=1 %install install -d %{buildroot}/%{_libexecdir} install -d %{buildroot}/%{_mandir}/man8 install -d %{buildroot}/%{_sysconfdir}/%{name} %make_install find %{buildroot} -name '*.la' -exec rm -f {} ';' %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %systemd_postun mptcp.service %files %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf %dir %{_sysconfdir}/%{name} %dir %{_libdir}/%{name} %{_libdir}/libmptcpd.* %{_libdir}/%{name}/*.so %{_libexecdir}/%{name} %{_unitdir}/mptcp.service %{_mandir}/man8/mptcpd.8.gz # todo add %doc %license COPYING %files devel %doc COPYING %dir %{_includedir}/mptcpd %{_includedir}/mptcpd/*.h %{_libdir}/pkgconfig/mptcpd.pc %changelog * Mon Dec 14 2020 Davide Caratti - 1:0.5.1-1 - fix rpmlint errors - use tagged version to fix build error with libell-0.35 * Tue Oct 13 2020 Davide Caratti - 1:0.5-1 - add debuginfo package - add systemd unitfile and configuration - add devel package * Thu Jul 30 2020 Davide Caratti - 1:0.5-0 - initial build