Hello community,
here is the log from the commit of package libtorrent-rasterbar for
openSUSE:Factory checked in at 2018-04-20 17:28:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libtorrent-rasterbar (Old)
and /work/SRC/openSUSE:Factory/.libtorrent-rasterbar.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libtorrent-rasterbar"
Fri Apr 20 17:28:48 2018 rev:54 rq:597444 version:1.1.7
Changes:
--------
---
/work/SRC/openSUSE:Factory/libtorrent-rasterbar/libtorrent-rasterbar.changes
2018-01-06 18:49:10.759259489 +0100
+++
/work/SRC/openSUSE:Factory/.libtorrent-rasterbar.new/libtorrent-rasterbar.changes
2018-04-20 17:30:43.099822831 +0200
@@ -1,0 +2,30 @@
+Tue Apr 17 08:46:45 UTC 2018 - [email protected]
+
+- Update to version 1.1.7:
+ * Don't perform DNS lookups for the DHT bootstrap unless DHT is
+ enabled.
+ * Fix an issue where setting file/piece priority would stop
+ checking.
+ * Expose post_dht_stats() to python bindings.
+ * Fix backwards compatibility to downloads without partfiles.
+ * Improve part-file related error messages.
+ * Fix reporting &redundant= in tracker announces.
+ * Fix tie-break in duplicate peer connection disconnect logic.
+ * Fix an issue with SSL tracker connections left in CLOSE_WAIT
+ state.
+ * Defer truncating existing files until the first time we write
+ to them.
+ * Fix an issue when receiving a torrent with 0-sized padfiles as
+ a magnet link.
+ * Fix an issue resuming 1.0.x downloads with a file priority 0.
+ * Fix torrent_status::next_announce.
+ * Fix pad-file scalability issue.
+ * Made coalesce_reads/coalesce_writes settings take effect.
+ * Use unique peer_ids per connection.
+ * Fix tracker connection bind issue for IPv6 trackers.
+ * Fix error handling of some merkle torrents.
+ * Fix error handling of unsupported hard-links.
+- Add libtorrent-rasterbar-1.1.7-boost-1.67.patch: add Boost 1.67+
+ support (boo#1089812).
+
+-------------------------------------------------------------------
Old:
----
libtorrent-rasterbar-1.1.6.tar.gz
New:
----
libtorrent-rasterbar-1.1.7-boost-1.67.patch
libtorrent-rasterbar-1.1.7.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libtorrent-rasterbar.spec ++++++
--- /var/tmp/diff_new_pack.2dTioy/_old 2018-04-20 17:30:46.119713324 +0200
+++ /var/tmp/diff_new_pack.2dTioy/_new 2018-04-20 17:30:46.123713179 +0200
@@ -18,22 +18,24 @@
%define _name libtorrent
%define sover 9
-%define _version 1_1_6
+%define _version 1_1_7
%bcond_with examples
%bcond_with tests
Name: libtorrent-rasterbar
-Version: 1.1.6
+Version: 1.1.7
Release: 0
Summary: Libtorrent is a C++ implementation of the BitTorrent protocol
License: BSD-3-Clause
Group: Development/Libraries/C and C++
-Url: http://libtorrent.org/
+URL: http://libtorrent.org/
Source:
https://github.com/arvidn/%{_name}/releases/download/%{_name}-%{_version}/%{name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM libtorrent-rasterbar-1.1.7-boost-1.67.patch boo#1089812
-- Add Boost 1.67+ support.
+Patch0: libtorrent-rasterbar-1.1.7-boost-1.67.patch
BuildRequires: gcc-c++
BuildRequires: pkgconfig
BuildRequires: python-devel
BuildRequires: pkgconfig(openssl)
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} >= 1500
BuildRequires: libboost_chrono-devel
BuildRequires: libboost_python-devel
BuildRequires: libboost_python3-devel
@@ -77,7 +79,7 @@
%package -n python2-%{name}
Summary: Python Bindings for libtorrent-rasterbar
-# python-libtorrent-rasterbar was last used in openSUSE Leap 14.2.
+# python-libtorrent-rasterbar was last used in openSUSE Leap 42.2.
Group: Development/Libraries/Python
Provides: python-%{name} = %{version}
Obsoletes: python-%{name} < %{version}
@@ -85,7 +87,7 @@
%description -n python2-%{name}
Python Bindings for the libtorrent-rasterbar package.
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} >= 1500
%package -n python3-%{name}
Summary: Python Bindings for libtorrent-rasterbar
Group: Development/Libraries/Python
@@ -109,7 +111,7 @@
Requires: %{name}%{sover} = %{version}
Requires: gcc-c++
Requires: pkgconfig(openssl)
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} >= 1500
Requires: libboost_headers-devel
%else
Requires: boost-devel >= 1.54
@@ -137,11 +139,12 @@
%prep
%setup -q
+%patch0 -p1
%build
export CFLAGS="%{optflags} -fno-strict-aliasing"
export CXXFLAGS="$CFLAGS"
-%if 0%{?suse_version} <= 1320
+%if 0%{?suse_version} < 1500
export CXXFLAGS="$CXXFLAGS -std=c++11"
%ifarch aarch64
# Some architectures require explicit linkage to libboost_atomic on boost 1.55
and older.
@@ -150,7 +153,7 @@
%endif
%global _configure ../configure
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} >= 1500
for py in python python3; do
%else
for py in python; do
@@ -176,7 +179,7 @@
%install
%make_install -C build-python
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} >= 1500
%make_install -C build-python3
%endif
@@ -195,7 +198,7 @@
%if %{with tests}
%check
make check %{?_smp_mflags} V=1 -C build-python
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} >= 1500
make check %{?_smp_mflags} V=1 -C build-python3
%endif
%endif
@@ -212,14 +215,19 @@
%endif
%files -n %{name}%{sover}
-%doc AUTHORS ChangeLog COPYING
+%if 0%{?suse_version} >= 1500
+%license COPYING
+%else
+%doc COPYING
+%endif
+%doc AUTHORS ChangeLog
%{_libdir}/%{name}.so.%{sover}*
%files -n python2-%{name}
%{python_sitearch}/%{_name}*.so
%{python_sitearch}/python_%{_name}-*
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} >= 1500
%files -n python3-%{name}
%{python3_sitearch}/%{_name}*.so
%{python3_sitearch}/python_%{_name}-*
++++++ libtorrent-rasterbar-1.1.7-boost-1.67.patch ++++++
--- a/include/libtorrent/disk_buffer_pool.hpp
+++ b/include/libtorrent/disk_buffer_pool.hpp
@@ -40,7 +40,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include <vector>
#include <boost/shared_ptr.hpp>
#include <boost/function.hpp>
-#include <boost/utility.hpp>
+#include <boost/next_prior.hpp>
#ifndef TORRENT_DISABLE_POOL_ALLOCATOR
#include "libtorrent/allocator.hpp" // for page_aligned_allocator
--- a/include/libtorrent/ip_filter.hpp
+++ b/include/libtorrent/ip_filter.hpp
@@ -41,7 +41,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include <vector>
#include <boost/limits.hpp>
-#include <boost/utility.hpp>
+#include <boost/next_prior.hpp>
#include <boost/cstdint.hpp>
#include <boost/tuple/tuple.hpp>
--- a/include/libtorrent/kademlia/routing_table.hpp
+++ b/include/libtorrent/kademlia/routing_table.hpp
@@ -39,7 +39,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include <set>
#include <boost/cstdint.hpp>
-#include <boost/utility.hpp>
+#include <boost/next_prior.hpp>
#include <boost/tuple/tuple.hpp>
#include <boost/array.hpp>
#include <boost/noncopyable.hpp>
--- a/src/ip_filter.cpp
+++ b/src/ip_filter.cpp
@@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE.
*/
#include "libtorrent/ip_filter.hpp"
-#include <boost/utility.hpp>
+#include <boost/next_prior.hpp>
namespace libtorrent
--- a/src/peer_list.cpp
+++ b/src/peer_list.cpp
@@ -33,7 +33,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include "libtorrent/aux_/disable_warnings_push.hpp"
#include <boost/bind.hpp>
-#include <boost/utility.hpp>
+#include <boost/next_prior.hpp>
#include "libtorrent/aux_/disable_warnings_pop.hpp"
--- a/test/test_ip_filter.cpp
+++ b/test/test_ip_filter.cpp
@@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE.
*/
#include "libtorrent/ip_filter.hpp"
-#include <boost/utility.hpp>
+#include <boost/next_prior.hpp>
#include "test.hpp"
#include "settings.hpp"
--- a/test/test_storage.cpp
+++ b/test/test_storage.cpp
@@ -45,7 +45,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include "libtorrent/torrent_info.hpp"
#include <boost/make_shared.hpp>
-#include <boost/utility.hpp>
+#include <boost/next_prior.hpp>
#include <boost/bind.hpp>
#include <iostream>
++++++ libtorrent-rasterbar-1.1.6.tar.gz -> libtorrent-rasterbar-1.1.7.tar.gz
++++++
++++ 13025 lines of diff (skipped)