mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
package/transmission: bump version to 4.1.0
https://github.com/transmission/transmission/releases/tag/4.1.0
Removed patch which is included in this release.
Updated license hash due to copyright year bump:
5ce17df2e5
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
33c09c71d5
commit
4367b88a0f
@@ -1,39 +0,0 @@
|
||||
From febfe49ca3ecab1a7142ecb34012c1f0b2bcdee8 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?C=C5=93ur?= <coeur@gmx.fr>
|
||||
Date: Sat, 15 Jun 2024 07:24:06 +0800
|
||||
Subject: [PATCH] bump miniupnpc to 2.2.8 (#6907)
|
||||
|
||||
* bump miniupnpc to 2.2.8
|
||||
|
||||
* Avoid build error "ln: include/miniupnpc/.: Operation not permitted"
|
||||
|
||||
Upstream: https://github.com/transmission/transmission/commit/febfe49ca3ecab1a7142ecb34012c1f0b2bcdee8
|
||||
|
||||
[Bernd: rebased for version 4.0.6]
|
||||
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
|
||||
---
|
||||
Transmission.xcodeproj/project.pbxproj | 2 +-
|
||||
libtransmission/port-forwarding-upnp.cc | 9 +++++++--
|
||||
third-party/miniupnp | 2 +-
|
||||
3 files changed, 9 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/libtransmission/port-forwarding-upnp.cc b/libtransmission/port-forwarding-upnp.cc
|
||||
index 6d7bbc7f7c2..a4146e0df13 100644
|
||||
--- a/libtransmission/port-forwarding-upnp.cc
|
||||
+++ b/libtransmission/port-forwarding-upnp.cc
|
||||
@@ -261,8 +261,13 @@ tr_port_forwarding_state tr_upnpPulse(
|
||||
|
||||
FreeUPNPUrls(&handle->urls);
|
||||
auto lanaddr = std::array<char, TR_ADDRSTRLEN>{};
|
||||
- if (UPNP_GetValidIGD(devlist, &handle->urls, &handle->data, std::data(lanaddr), std::size(lanaddr) - 1) ==
|
||||
- UPNP_IGD_VALID_CONNECTED)
|
||||
+ if (
|
||||
+#if (MINIUPNPC_API_VERSION >= 18)
|
||||
+ UPNP_GetValidIGD(devlist, &handle->urls, &handle->data, std::data(lanaddr), std::size(lanaddr) - 1, nullptr, 0)
|
||||
+#else
|
||||
+ UPNP_GetValidIGD(devlist, &handle->urls, &handle->data, std::data(lanaddr), std::size(lanaddr) - 1)
|
||||
+#endif
|
||||
+ == UPNP_IGD_VALID_CONNECTED)
|
||||
{
|
||||
tr_logAddInfo(fmt::format(_("Found Internet Gateway Device '{url}'"), fmt::arg("url", handle->urls.controlURL)));
|
||||
tr_logAddInfo(fmt::format(_("Local Address is '{address}'"), fmt::arg("address", lanaddr.data())));
|
||||
@@ -1,4 +1,4 @@
|
||||
# From https://transmissionbt.com/download
|
||||
sha256 2a38fe6d8a23991680b691c277a335f8875bdeca2b97c6b26b598bc9c7b0c45f transmission-4.0.6.tar.xz
|
||||
sha256 dcd28c1c9e6126229c4c17dbc9e95c9fd4aed7e76f4a1f2a74604c8cddec49d6 transmission-4.1.0.tar.xz
|
||||
# Locally calculated
|
||||
sha256 f56732960a61ecf3b9637404eef1a39221d2006336a98792b7b65a79f155449c COPYING
|
||||
sha256 9715b55d11caa499d34a6e23498c766fe1ece4ace57777553313e27d688dee78 COPYING
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
TRANSMISSION_VERSION = 4.0.6
|
||||
TRANSMISSION_VERSION = 4.1.0
|
||||
TRANSMISSION_SOURCE = transmission-$(TRANSMISSION_VERSION).tar.xz
|
||||
TRANSMISSION_SITE = https://github.com/transmission/transmission/releases/download/$(TRANSMISSION_VERSION)
|
||||
TRANSMISSION_DEPENDENCIES = \
|
||||
|
||||
Reference in New Issue
Block a user