1
0
libtorrent-rasterbar/libtorrent-rasterbar.spec
Alexei Sorokin 721390ceba Accepting request 833549 from home:alois:branches:devel:libraries:c_c++
- Switch to cmake build
- Remove references to python2
- Add libtorrent-rasterbar-fix_pkgconfig_path.patch and
  libtorrent-rasterbar-fix_library_version.patch
- Build in c++14 mode (qbittorrent prefers it)

OBS-URL: https://build.opensuse.org/request/show/833549
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libtorrent-rasterbar?expand=0&rev=136
2020-09-10 18:21:46 +00:00

170 lines
5.0 KiB
RPMSpec

#
# spec file for package libtorrent-rasterbar
#
# Copyright (c) 2020 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 _name libtorrent
%define sover 10
%bcond_with examples
%bcond_with tests
Name: libtorrent-rasterbar
Version: 1.2.10
Release: 0
Summary: A C++ implementation of the BitTorrent protocol
License: BSD-3-Clause
Group: Development/Libraries/C and C++
URL: https://libtorrent.org/
Source: https://github.com/arvidn/%{_name}/releases/download/%{_name}-%{version}/%{name}-%{version}.tar.gz
# PATCH-FIX-UPSTREAM libtorrent-rasterbar-fix_pkgconfig_path.patch
Patch0: libtorrent-rasterbar-fix_pkgconfig_path.patch
# PATCH-FIX-OPENSUSE libtorrent-rasterbar-fix_library_version.patch
Patch1: libtorrent-rasterbar-fix_library_version.patch
# for directory ownership
BuildRequires: cmake-full
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: libboost_chrono-devel
BuildRequires: libboost_python3-devel
BuildRequires: libboost_random-devel
BuildRequires: libboost_system-devel
BuildRequires: pkgconfig
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: pkgconfig(openssl)
%description
libtorrent-rasterbar is a C++ library that aims to be a good
alternative to all the other bittorrent implementations around.
It is a library and not a full featured client, although it comes
with a working example client.
This package holds the sample client and example files for
libtorrent-rasterbar.
%package -n %{name}%{sover}
Summary: A C++ implementation of the BitTorrent protocol
Group: System/Libraries
%description -n %{name}%{sover}
libtorrent-rasterbar is a C++ library that aims to be a good
alternative to all the other bittorrent implementations around.
It is a library and not a full featured client, although it comes
with a working example client.
%package -n python3-%{name}
Summary: Python Bindings for libtorrent-rasterbar
Group: Development/Libraries/Python
%description -n python3-%{name}
Python Bindings for the libtorrent-rasterbar package.
### conditional here? %%if %%{with examples}
%package tools
Summary: Example tools from libtorrent-rasterbar
Group: Development/Libraries/C and C++
%description tools
Example tools from the libtorrent-rasterbar package.
%package devel
Summary: Header files for libtorrent, a C++ implementation of the BitTorrent protocol
Group: Development/Libraries/C and C++
Requires: %{name}%{sover} = %{version}
Requires: gcc-c++
Requires: libboost_headers-devel
Requires: pkgconfig(openssl)
%description devel
libtorrent-rasterbar is a C++ library that aims to be a good
alternative to all the other bittorrent implementations around.
It is a library and not a full featured client, although it comes
with a working example client.
This package holds the development files for libtorrent-rasterbar.
%package doc
Summary: Documentation for libtorrent-rasterbar
Group: Documentation/HTML
BuildArch: noarch
%description doc
Documentation for the libtorrent-rasterbar package.
%prep
%autosetup -p1
%build
export CXXFLAGS="-std=c++14"
%cmake \
%if %{with tests}
-Dbuild_tests=ON \
%endif
%if %{with examples}
-Dbuild_examples=ON \
%endif
-Dpython-bindings=ON
%cmake_build
%install
%cmake_install
# Move doc to a separate package.
mkdir -p %{buildroot}%{_docdir}/%{name}/
cp -r docs/* %{buildroot}%{_docdir}/%{name}/
%if %{with examples}
install -Dm0755 build/examples/dump_torrent build/examples/make_torrent \
build/examples/simple_client -t %{buildroot}%{_bindir}
%endif
%fdupes %{buildroot}%{python3_sitearch}
%if %{with tests}
%check
%ctest --verbose --exclude-regex "(test_flags|test_resume|test_torrent|test_url_seed|test_upnp)"
%endif
%post -n %{name}%{sover} -p /sbin/ldconfig
%postun -n %{name}%{sover} -p /sbin/ldconfig
%if %{with examples}
%files tools
%{_bindir}/dump_torrent
%{_bindir}/make_torrent
%{_bindir}/simple_client
%endif
%files -n %{name}%{sover}
%license COPYING
%doc AUTHORS ChangeLog
%{_libdir}/%{name}.so.%{sover}*
%files -n python3-%{name}
%{python3_sitearch}/%{_name}*.so
%{python3_sitearch}/%{_name}.egg-info
%files devel
%{_datadir}/cmake/Modules/FindLibtorrentRasterbar.cmake
%{_includedir}/%{_name}/
%{_libdir}/cmake/LibtorrentRasterbar
%{_libdir}/%{name}.so
%{_libdir}/pkgconfig/%{name}.pc
%files doc
%doc %{_docdir}/%{name}/
%changelog