package/{libtorrent, rtorrent}: bump version to 0.15.3

Removed patches which are included in this release.

Switched SITE to github according to http://rtorrent.net/

Both packages need to be bumped together due to version check for
libtorrent by rtorrent:
6f8c1246dc

Fixes:
https://autobuild.buildroot.net/results/a2e/a2e609caecc26f67134d0fed1c239e8d148e07fd/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Bernd Kuhls
2025-12-07 15:42:33 +01:00
committed by Julien Olivain
parent 35b3255647
commit 2345568936
7 changed files with 8 additions and 74 deletions

View File

@@ -614,7 +614,6 @@ package/libtalloc/0001-buildtools-wafsamba-add-disable-stack-protector-opti.patc
package/libtelnet/0001-fix-compilation-without-zlib.patch lib_patch.Upstream
package/libtomcrypt/0001-fix-CVE-2019-17362.patch lib_patch.Upstream
package/libtommath/0001-Build-test-bn_mp_set_double-c-on-more-platforms.patch lib_patch.Upstream
package/libtorrent/0001-libtorrent.pc.in-add-Libs.Private.patch lib_patch.Upstream
package/libubootenv/0001-src-CMakeLists.txt-do-not-force-the-build-of-a-share.patch lib_patch.Upstream
package/libuio/0001-configure.ac-set-automake-strictness-to-foreign.patch lib_patch.Upstream
package/liburcu/0001-Only-blacklist-ARM-gcc-4.8.0-and-4.8.1.patch lib_patch.Upstream
@@ -920,7 +919,6 @@ package/rpi-userland/0005-dtmerge-add-missing-include-for-va_list.patch lib_patc
package/rpi-userland/0006-interface-vcos-pthreads-CMakeLists.txt-fix-build-wit.patch lib_patch.Upstream
package/rpi-userland/0007-GLES2-gl2ext.h-add-GLint64-GLuint64-and-GLsync-typed.patch lib_patch.Upstream
package/rt-tests/0001-Fix-a-build-issue-with-uClibc-ng.patch lib_patch.Upstream
package/rtorrent/0001-Added--disable-execinfo-option-to-configure.patch lib_patch.Upstream
package/rubix/0001-dont-use-legacy-functions.patch lib_patch.Upstream
package/rubix/0002-misc-fixes.patch lib_patch.Sob lib_patch.Upstream
package/rygel/S99rygel Shellcheck lib_sysv.Indent lib_sysv.Variables

View File

@@ -1,30 +0,0 @@
From a86219e725441eb87321fa3e24531dafa54ee674 Mon Sep 17 00:00:00 2001
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Date: Sun, 20 Oct 2019 20:23:19 +0200
Subject: [PATCH] libtorrent.pc.in: add Libs.Private
Add Libs.Private: -lz so applications that want to link statically with
libtorrent (such as rtorrent) will know that they must link with -lz
Fixes:
- http://autobuild.buildroot.org/results/075598e1699c2ac20a4dfbcb5695bbb7343f9a86
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Upstream status: https://github.com/rakshasa/libtorrent/pull/202]
---
libtorrent.pc.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/libtorrent.pc.in b/libtorrent.pc.in
index cf6612bc..6108f7e9 100644
--- a/libtorrent.pc.in
+++ b/libtorrent.pc.in
@@ -7,4 +7,5 @@ Name: libtorrent
Description: A BitTorrent library
Version: @VERSION@
Libs: -L${libdir} -ltorrent
+Libs.Private: -lz
Cflags: -I${includedir}
--
2.23.0

View File

@@ -1,3 +1,3 @@
# Locally calculated
sha256 ed115a28f4ae8cfcd33b94a597c076ca74fd549867a26e4fac9505c27288e983 libtorrent-0.13.8.tar.gz
sha256 6a0b01e4c0da817fc06fa0cd0ca539d79a19eaed617e16da9e2d8ba066ea95dd libtorrent-0.15.3.tar.gz
sha256 204d8eff92f95aac4df6c8122bc1505f468f3a901e5a4cc08940e0ede1938994 COPYING

View File

@@ -4,8 +4,9 @@
#
################################################################################
LIBTORRENT_VERSION = 0.13.8
LIBTORRENT_SITE = http://rtorrent.net/downloads
# When updating the version, please also update rtorrent
LIBTORRENT_VERSION = 0.15.3
LIBTORRENT_SITE = https://github.com/rakshasa/rtorrent/releases/download/v$(LIBTORRENT_VERSION)
LIBTORRENT_DEPENDENCIES = host-pkgconf zlib
LIBTORRENT_CONF_OPTS = --enable-aligned \
--disable-instrumentation \

View File

@@ -1,34 +0,0 @@
From 582e4e40256b43d3e5322168f1e1ed71ca70ab64 Mon Sep 17 00:00:00 2001
From: rakshasa <sundell.software@gmail.com>
Date: Wed, 16 Jun 2021 23:29:01 +0900
Subject: [PATCH] Added '--disable-execinfo' option to configure.
[Retrieved (and backported) from:
https://github.com/rakshasa/rtorrent/commit/582e4e40256b43d3e5322168f1e1ed71ca70ab64]
Signed-off-by: Fabrice Fontaine <Fontaine.fabrice@gmail.com>
---
configure.ac | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index e3e7d3f1..0f45bc6a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -27,7 +27,15 @@ TORRENT_WITHOUT_VARIABLE_FDSET
AC_SYS_LARGEFILE
-TORRENT_CHECK_EXECINFO
+AC_ARG_ENABLE(execinfo,
+ AC_HELP_STRING([--disable-execinfo], [disable libexecinfo [[default=enable]]]),
+ [
+ if test "$enableval" = "yes"; then
+ TORRENT_CHECK_EXECINFO
+ fi
+ ],[
+ TORRENT_CHECK_EXECINFO
+ ])
TORRENT_ENABLE_ARCH
TORRENT_WITH_SYSROOT

View File

@@ -1,3 +1,3 @@
# Locally calculated
sha256 9edf0304bf142215d3bc85a0771446b6a72d0ad8218efbe184b41e4c9c7542af rtorrent-0.9.8.tar.gz
sha256 6dfd42c19e6ff2f5ee8b99855314cef4f10bd669663c2670cc85fd6a4e2c4e40 rtorrent-0.15.3.tar.gz
sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING

View File

@@ -4,13 +4,12 @@
#
################################################################################
RTORRENT_VERSION = 0.9.8
RTORRENT_SITE = http://rtorrent.net/downloads
# When updating the version, please also update libtorrent
RTORRENT_VERSION = 0.15.3
RTORRENT_SITE = https://github.com/rakshasa/rtorrent/releases/download/v$(RTORRENT_VERSION)
RTORRENT_DEPENDENCIES = host-pkgconf libcurl libtorrent ncurses
RTORRENT_LICENSE = GPL-2.0
RTORRENT_LICENSE_FILES = COPYING
# We're patching configure.ac
RTORRENT_AUTORECONF = YES
RTORRENT_CONF_OPTS = --disable-execinfo
$(eval $(autotools-package))