9 Commits

Author SHA256 Message Date
87d22bae4a libtorrent 0.15.5 2025-06-22 22:25:25 +02:00
4c7f77d826 libtorrent 0.15.4 2025-06-02 10:10:17 +02:00
2c6c5f5444 libtorrent 0.15.3 2025-05-02 11:57:04 +02:00
b7fe1c89e6 Add 0002-Fixed-DhtController-m_router-check-and-log-unit-test.patch 2025-03-29 11:23:22 +01:00
b3e833abec Leap 15.6 support 2025-03-29 10:52:42 +01:00
0f717d8e2e libtorrent 0.15.2 2025-03-29 01:38:15 +01:00
792e2f431d libtorrent 0.15.1 2025-01-02 12:55:18 +01:00
e72b545452 libtorrent 0.15 2024-12-26 20:21:06 +01:00
8c200077e9 libtorrent 0.14.0 2024-09-29 17:17:56 +02:00
6 changed files with 49 additions and 16 deletions

View File

@@ -1,4 +0,0 @@
mtime: 1735818918
commit: 792e2f431d839380f2b4cd13938971b3eb4a39719c59d2c8df4ea3506c89379d
url: https://src.opensuse.org/jengelh/libtorrent
revision: master

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:333da07e1c050f3804d47bb4e86fe989692e66139926ad3c193808176c4b51fb
size 256

BIN
libtorrent-0.15.1.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
libtorrent-0.15.5.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,37 @@
-------------------------------------------------------------------
Sun Jun 22 20:22:30 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
- Update to release 0.15.5
* Ignore invalid completed chunks value when encountering such.
-------------------------------------------------------------------
Mon Jun 2 08:07:03 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
- Update to release 0.15.4
* Threads were not rejoined, which has been fixed
* Moved TrackerList and TrackerController out of the public API
* Use poll interrupting callbacks for SCGI requests
* Updated ThrottleList to use new Scheduler
-------------------------------------------------------------------
Fri May 2 09:54:42 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
- Update to release 0.15.3
* Fixed slow SCGI replies
* Cleaned up thread/scheduler code
- Delete 0001-0.15.2-Missing-header-algorithm.patch
0002-Fixed-DhtController-m_router-check-and-log-unit-test.patch
(merged)
-------------------------------------------------------------------
Fri Mar 28 20:41:18 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
- Update to release 0.15.2
* preparation for multi-threaded trackers
* added a thread-safe DNS resolver
- Add 0001-0.15.2-Missing-header-algorithm.patch,
0002-Fixed-DhtController-m_router-check-and-log-unit-test.patch
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 11:53:47 UTC 2025 - Jan Engelhardt <jengelh@inai.de> Thu Jan 2 11:53:47 UTC 2025 - Jan Engelhardt <jengelh@inai.de>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package libtorrent # spec file for package libtorrent
# #
# Copyright (c) 2024 SUSE LLC # Copyright (c) 2025 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -16,18 +16,22 @@
# #
%define _buildshell /bin/sh
%define lname libtorrent25
Name: libtorrent Name: libtorrent
%define lname libtorrent23 Version: 0.15.5
Version: 0.15.1
Release: 0 Release: 0
Summary: A BitTorrent library written in C++ Summary: A BitTorrent library written in C++
License: SUSE-GPL-2.0+-with-openssl-exception License: SUSE-GPL-2.0+-with-openssl-exception
Group: Productivity/Networking/File-Sharing Group: Productivity/Networking/File-Sharing
URL: https://github.com/rakshasa/libtorrent URL: https://github.com/rakshasa/libtorrent
Source: https://github.com/rakshasa/rtorrent/releases/download/v%version/libtorrent-%version.tar.gz Source: https://github.com/rakshasa/rtorrent/releases/download/v%version/libtorrent-%version.tar.gz
BuildRequires: automake BuildRequires: automake
%if 0%{?suse_version} && 0%{?suse_version} < 1600
BuildRequires: gcc13-c++
%else
BuildRequires: gcc-c++ BuildRequires: gcc-c++
%endif
BuildRequires: libtool BuildRequires: libtool
BuildRequires: pkgconfig(cppunit) BuildRequires: pkgconfig(cppunit)
BuildRequires: pkgconfig(openssl) BuildRequires: pkgconfig(openssl)
@@ -61,9 +65,11 @@ seed speeds than the official client on high-bandwidth links.
%autosetup -p1 %autosetup -p1
%build %build
%if 0%{?suse_version} && 0%{?suse_version} < 1600
export CXX=g++-13
%endif
export CFLAGS="%optflags -fno-strict-aliasing" export CFLAGS="%optflags -fno-strict-aliasing"
export CXXFLAGS="$CFLAGS" export CXXFLAGS="$CFLAGS"
export CXXFLAGS="$CXXFLAGS -std=gnu++14"
autoreconf -fiv autoreconf -fiv
%configure --enable-ipv6 --with-posix-fallocate %configure --enable-ipv6 --with-posix-fallocate
%make_build %make_build
@@ -77,7 +83,7 @@ find "%buildroot" -type f -name "*.la" -delete
%files -n %lname %files -n %lname
%_libdir/libtorrent.so.* %_libdir/libtorrent.so.*
%files -n %name-devel %files devel
%_includedir/torrent/ %_includedir/torrent/
%_libdir/libtorrent.so %_libdir/libtorrent.so
%_libdir/pkgconfig/libtorrent.pc %_libdir/pkgconfig/libtorrent.pc