Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libtorrent-rasterbar for 
openSUSE:Factory checked in at 2026-08-14 22:04:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libtorrent-rasterbar (Old)
 and      /work/SRC/openSUSE:Factory/.libtorrent-rasterbar.new.1258 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libtorrent-rasterbar"

Fri Aug 14 22:04:59 2026 rev:95 rq:1370915 version:2.0.14

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/libtorrent-rasterbar/libtorrent-rasterbar.changes    
    2026-06-10 15:51:16.548050258 +0200
+++ 
/work/SRC/openSUSE:Factory/.libtorrent-rasterbar.new.1258/libtorrent-rasterbar.changes
      2026-08-14 22:05:31.351879276 +0200
@@ -1,0 +2,75 @@
+Thu Aug 13 04:45:14 UTC 2026 - Luigi Baldoni <[email protected]>
+
+- Update to version 2.0.14
+  * fix issue in merkle tree
+  * fix use of a stack buffer past its lifetime when sending i2p
+    SAM commands
+  * fix issues with active_time, seeding_time and finished_time
+  * fix torrent updates for idle torrents
+  * improve dont-count-slow-torrents
+  * fix external_ip_alert not being posted under some conditions
+    when UPnP/NAT-PMP is enabled
+  * fix issue with stuck trackers on session pause
+  * fix windows disk read, possibly causing short-read errors
+  * fix blocking UDP socket in LSD and NAT-PMP
+  * fix web seed requests for single-file torrents in multi-file
+    mode
+  * fix duplicate filenames in magnet links
+  * fix blocking UDP socket in UPnP
+  * fix corruption bug in mmap_storage
+  * fix bug where torrent_status::total was not set for seeds
+
+-------------------------------------------------------------------
+Fri Jul 10 17:58:01 UTC 2026 - Luigi Baldoni <[email protected]>
+
+- Add libtorrent-rasterbar_no_vendored_headers.patch to avoid
+  installing unwanted headers/third-party libraries
+
+-------------------------------------------------------------------
+Thu Jul  9 11:53:45 UTC 2026 - Luigi Baldoni <[email protected]>
+
+- Update to version 2.1.0
+  * fix tracker force announce
+  * add max_directory_depth limit to load_torrent_limits to
+    bound file path depth when loading torrents
+  * fix race in wait_for_alert(), and update its return value
+  * optimize torrent_handle::torrent_file()
+  * add option to not validate v1 hashes for hybrid torrents
+  * add post_file_status() to query them asynchronously
+  * add post_file_priorities() to query them asynchronously
+  * fix local service discovery not being correctly staggered
+  * add a multi-threaded, pread()-based, disk I/O backend
+    (pread_disk_io)
+  * make the save path for part files configurable
+  * retry failed SAM connection (for i2p)
+  * deprecated remap_files(), and prevent it from breaking v2
+    torrents
+  * fix peer_info holding an i2p destination
+  * implement i2p_pex, peer exchange support for i2p torrents
+  * deprecate torrent_alert::torrent_name()
+  * requires OpenSSL minimum version 1.1.0 with SNI support
+  * try harder to bind TCP and UDP sockets to the same port
+  * made disk_interface's status_t type a flags type
+  * optimize resume data format to use less space
+  * add a simpler overload to bencode() returning a vector<char>
+  * introduced a new API for creating torrents, enabling
+    file_storage optimizations
+  * default build to not include functions deprecated in
+    libtorrent 1.1 and earlier
+  * add comment, created_by and creation_date to
+    add_torrent_params
+  * move session_flags to session_params
+  * the entry class is now a standard variant type
+  * use std::string_view instead of boost counterpart
+  * libtorrent now requires C++17 to build
+  * added support for WebTorrent
+  * removed support for BEP 17 web seeds (in favor of BEP 19)
+  * fix blocking UDP socket in LSD and NAT-PMP
+  * fix web seed requests for single-file torrents in multi-file
+    mode
+  * fix duplicate filenames in magnet links
+  * fix blocking UDP socket in UPnP
+  * fix corruption bug in mmap_storage
+  * fix bug where torrent_status::total was not set for seeds
+
+-------------------------------------------------------------------

Old:
----
  libtorrent-rasterbar-2.0.13.tar.xz

New:
----
  libtorrent-rasterbar-2.0.14.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libtorrent-rasterbar.spec ++++++
--- /var/tmp/diff_new_pack.W51uhV/_old  2026-08-14 22:05:32.156908010 +0200
+++ /var/tmp/diff_new_pack.W51uhV/_new  2026-08-14 22:05:32.158908082 +0200
@@ -23,7 +23,7 @@
 %bcond_with     examples
 %bcond_with     tests
 Name:           libtorrent-rasterbar
-Version:        2.0.13
+Version:        2.0.14
 Release:        0
 Summary:        A C++ implementation of the BitTorrent protocol
 License:        BSD-3-Clause
@@ -38,6 +38,7 @@
 BuildRequires:  libboost_python3-devel
 BuildRequires:  libboost_random-devel
 %else
+BuildRequires:  gcc15-c++
 BuildRequires:  libboost_chrono1_75_0-devel
 BuildRequires:  libboost_python-py3-1_75_0-devel
 BuildRequires:  libboost_random1_75_0-devel
@@ -115,9 +116,15 @@
 
 %prep
 %autosetup -p1
+# fix shebang
+sed -e 's|#!/usr/bin/env python3|#!%__python3|' \
+    -i docs/*.py
 
 %build
 %cmake \
+%if 0%{suse_version} <= 1500
+   -DCMAKE_CXX_COMPILER=g++-15 \
+%endif
 %if %{with tests}
    -Dbuild_tests=ON \
 %endif

++++++ _service ++++++
--- /var/tmp/diff_new_pack.W51uhV/_old  2026-08-14 22:05:32.213910045 +0200
+++ /var/tmp/diff_new_pack.W51uhV/_new  2026-08-14 22:05:32.216910152 +0200
@@ -3,7 +3,7 @@
     <param name="url">https://github.com/arvidn/libtorrent.git</param>
     <param name="scm">git</param>
     <param name="exclude">.git</param>
-    <param name="revision">v2.0.13</param>
+    <param name="revision">v2.0.14</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="versionrewrite-pattern">v(.*)</param>
     <param name="filename">libtorrent-rasterbar</param>

++++++ libtorrent-rasterbar-2.0.13.tar.xz -> libtorrent-rasterbar-2.0.14.tar.xz 
++++++
++++ 3598 lines of diff (skipped)

Reply via email to