mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
package/transmission: bump version to 4.0.3
This bump depends on bumping libutp to at least c95738b1a6644b919e5b64d3ea9736cfc5894e0b. Update license hash due to copyright year bump:4b8cfa2e57Switche buildsystem to cmake, reworked dependencies. Remove all patches, transmission now depends on the libutp package and uses cmake as build system. Upstream removed the configure option for lightweight build:47ebb3f63aRemove the option to disable uTP support; although the option is still available in the CMAkeLists.txt, building without libutp causes a build failure. Since upstream is not keen on keeping the option, just remove it and always buld with libutp; see:47ebb3f63aAdded -latomic when needed to fix build errors on riscv32 and sparc. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> [yann.morin.1998@free.fr: expand explanations on the libutp change] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
committed by
Yann E. MORIN
parent
827bc83cb1
commit
80793107a6
@@ -1,30 +0,0 @@
|
|||||||
Fix build error "conflicting types for 'UTP_Write'"
|
|
||||||
|
|
||||||
Fetch from: http://www.adminsehow.com/2012/10/how-to-install-transmission-2-71-on-debian-6-0-squeeze/
|
|
||||||
|
|
||||||
The corresponding upstream bug report (unfixed) can be found here:
|
|
||||||
https://trac.transmissionbt.com/ticket/5232
|
|
||||||
|
|
||||||
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
|
|
||||||
[Fabrice: adapt to 3.00, which always uses stdbool.h]
|
|
||||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
||||||
[yann.morin.1998@free.fr:
|
|
||||||
- don't comment-out dropped code, just drop it
|
|
||||||
- use CR-LF in replacement code, as used by upstream
|
|
||||||
]
|
|
||||||
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
|
|
||||||
|
|
||||||
--- transmission-2.82.org/third-party/libutp/utypes.h 2013-08-09 04:47:43.000000000 +0200
|
|
||||||
+++ transmission-2.82/third-party/libutp/utypes.h 2014-01-02 20:17:18.000000000 +0100
|
|
||||||
@@ -35,8 +35,8 @@
|
|
||||||
typedef const char * cstr;
|
|
||||||
typedef char * str;
|
|
||||||
|
|
||||||
-#ifndef __cplusplus
|
|
||||||
-typedef uint8 bool;
|
|
||||||
-#endif
|
|
||||||
+#ifndef __cplusplus
|
|
||||||
+#include <stdbool.h>
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
#endif //__UTYPES_H__
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
Fix compilation when using system libminiupnpc with libutp disabled
|
|
||||||
|
|
||||||
If transmission uses its own copy of libminiupnpc in third-party/ then
|
|
||||||
the configure script adds that path to CFLAGS:
|
|
||||||
https://trac.transmissionbt.com/browser/trunk/configure.ac#L455
|
|
||||||
|
|
||||||
This path is also added if transmission uses its own copy of libutp:
|
|
||||||
https://trac.transmissionbt.com/browser/trunk/configure.ac#L349
|
|
||||||
|
|
||||||
But if a system-provided libminiupnpc is used and utp-support is
|
|
||||||
disabled using --disable-utp the result is a build error, detected by
|
|
||||||
buildroot autobuilders:
|
|
||||||
http://autobuild.buildroot.net/results/b79/b79e51140cb0320554a58ce59dcb33f53cd9211a/build-end.log
|
|
||||||
|
|
||||||
net.c:40:24: fatal error: libutp/utp.h: No such file or directory
|
|
||||||
|
|
||||||
Patch proposed by Yann E. MORIN:
|
|
||||||
http://lists.busybox.net/pipermail/buildroot/2016-July/167896.html
|
|
||||||
|
|
||||||
Patch sent upstream: https://trac.transmissionbt.com/ticket/6163
|
|
||||||
|
|
||||||
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
|
|
||||||
|
|
||||||
diff -uNr transmission-2.92.org/configure.ac transmission-2.92/configure.ac
|
|
||||||
--- transmission-2.92.org/configure.ac 2016-03-06 21:23:45.336198393 +0100
|
|
||||||
+++ transmission-2.92/configure.ac 2016-07-31 12:13:40.921660078 +0200
|
|
||||||
@@ -358,6 +358,10 @@
|
|
||||||
else
|
|
||||||
AC_MSG_ERROR("Unable to build uTP support -- C++ compiler not found")
|
|
||||||
fi
|
|
||||||
+else
|
|
||||||
+ # For the system libminiupnpc with UTC disabled,
|
|
||||||
+ # point to our bundled UTP headers
|
|
||||||
+ LIBUTP_CFLAGS="-I\$(top_srcdir)/third-party/"
|
|
||||||
fi
|
|
||||||
AC_SUBST(LIBUTP_CFLAGS)
|
|
||||||
AC_SUBST(LIBUTP_LIBS)
|
|
||||||
@@ -457,7 +461,7 @@
|
|
||||||
LIBUPNP_LIBS_QT="\$\${TRANSMISSION_TOP}/third-party/miniupnp/libminiupnp.a"
|
|
||||||
else
|
|
||||||
AC_DEFINE([SYSTEM_MINIUPNP])
|
|
||||||
- LIBUPNP_CFLAGS=""
|
|
||||||
+ LIBUPNP_CFLAGS="${LIBUTP_CFLAGS}"
|
|
||||||
LIBUPNP_LIBS="-lminiupnpc"
|
|
||||||
LIBUPNP_LIBS_QT="-lminiupnpc"
|
|
||||||
fi
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
From 857ac91a03a096601f62b358fc61355d4cc25b9b Mon Sep 17 00:00:00 2001
|
|
||||||
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
||||||
Date: Sat, 9 Oct 2021 18:51:13 +0200
|
|
||||||
Subject: [PATCH] configure.ac: fix autoreconf with autoconf >= 2.70
|
|
||||||
|
|
||||||
Remove the whitespace before IT_PROG_INTLTOOL as suggested in
|
|
||||||
https://www.mail-archive.com/bug-autoconf@gnu.org/msg04851.html
|
|
||||||
to avoid the following build failure with autoconf >= 2.70:
|
|
||||||
|
|
||||||
ERROR: 'IT_PROG_INTLTOOL' must appear in configure.ac for intltool to work.
|
|
||||||
|
|
||||||
The problem has been introduced by upstream autoconf commit
|
|
||||||
http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commit;h=b3b3af821a0b9e82ebe56b77b1731d2fe58f52de
|
|
||||||
|
|
||||||
Fixes:
|
|
||||||
- http://autobuild.buildroot.org/results/e8bea26f6b12adf16335b24836a7c5c31911af6a
|
|
||||||
|
|
||||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
||||||
[Upstream status: not upstreamable as upstream swicthed to cmake (
|
|
||||||
https://github.com/transmission/transmission/issues/1573)]
|
|
||||||
---
|
|
||||||
configure.ac | 4 +---
|
|
||||||
1 file changed, 1 insertion(+), 3 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/configure.ac b/configure.ac
|
|
||||||
index fd1132fda..04e0e19bb 100644
|
|
||||||
--- a/configure.ac
|
|
||||||
+++ b/configure.ac
|
|
||||||
@@ -555,9 +555,7 @@ dnl it should be safe to re-edit 0.40 back down to 0.23
|
|
||||||
use_nls=no
|
|
||||||
if test "x$enable_nls" = "xyes" ; then
|
|
||||||
use_nls=yes
|
|
||||||
- m4_ifdef([IT_PROG_INTLTOOL],
|
|
||||||
- [IT_PROG_INTLTOOL([0.35.0],[no-xml])],
|
|
||||||
- [AC_MSG_ERROR("--enable-nls requires intltool to be installed.")])
|
|
||||||
+IT_PROG_INTLTOOL([0.35.0],[no-xml])
|
|
||||||
AC_CHECK_HEADERS([libintl.h])
|
|
||||||
GETTEXT_PACKAGE=transmission-gtk
|
|
||||||
AC_SUBST(GETTEXT_PACKAGE)
|
|
||||||
--
|
|
||||||
2.33.0
|
|
||||||
|
|
||||||
@@ -1,12 +1,23 @@
|
|||||||
config BR2_PACKAGE_TRANSMISSION
|
config BR2_PACKAGE_TRANSMISSION
|
||||||
bool "transmission"
|
bool "transmission"
|
||||||
|
depends on !BR2_BINFMT_FLAT # libnatpmp
|
||||||
|
depends on BR2_INSTALL_LIBSTDCPP # libutp
|
||||||
|
depends on !BR2_STATIC_LIBS # libnatpmp
|
||||||
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||||
depends on BR2_USE_MMU # fork()
|
depends on BR2_USE_MMU # fork()
|
||||||
select BR2_PACKAGE_ZLIB
|
depends on BR2_USE_WCHAR # libpsl
|
||||||
select BR2_PACKAGE_OPENSSL
|
select BR2_PACKAGE_DHT
|
||||||
select BR2_PACKAGE_LIBOPENSSL_ENABLE_RC4 if BR2_PACKAGE_LIBOPENSSL
|
select BR2_PACKAGE_LIBB64
|
||||||
select BR2_PACKAGE_LIBCURL
|
select BR2_PACKAGE_LIBCURL
|
||||||
|
select BR2_PACKAGE_LIBDEFLATE
|
||||||
select BR2_PACKAGE_LIBEVENT
|
select BR2_PACKAGE_LIBEVENT
|
||||||
|
select BR2_PACKAGE_LIBMINIUPNPC
|
||||||
|
select BR2_PACKAGE_LIBNATPMP
|
||||||
|
select BR2_PACKAGE_LIBPSL
|
||||||
|
select BR2_PACKAGE_LIBUTP
|
||||||
|
select BR2_PACKAGE_OPENSSL
|
||||||
|
select BR2_PACKAGE_ZLIB
|
||||||
help
|
help
|
||||||
Transmission is a cross-platform BitTorrent client.
|
Transmission is a cross-platform BitTorrent client.
|
||||||
|
|
||||||
@@ -14,15 +25,6 @@ config BR2_PACKAGE_TRANSMISSION
|
|||||||
|
|
||||||
if BR2_PACKAGE_TRANSMISSION
|
if BR2_PACKAGE_TRANSMISSION
|
||||||
|
|
||||||
config BR2_PACKAGE_TRANSMISSION_UTP
|
|
||||||
bool "Transmission uTP support"
|
|
||||||
depends on BR2_INSTALL_LIBSTDCPP
|
|
||||||
help
|
|
||||||
Install support for uTorrent Transport Protocol
|
|
||||||
|
|
||||||
comment "uTP needs a toolchain w/ C++"
|
|
||||||
depends on !BR2_INSTALL_LIBSTDCPP
|
|
||||||
|
|
||||||
config BR2_PACKAGE_TRANSMISSION_CLI
|
config BR2_PACKAGE_TRANSMISSION_CLI
|
||||||
bool "transmission-cli"
|
bool "transmission-cli"
|
||||||
help
|
help
|
||||||
@@ -43,6 +45,8 @@ comment "transmission-gtk needs NLS enabled"
|
|||||||
depends on BR2_PACKAGE_LIBGTK3 && !BR2_SYSTEM_ENABLE_NLS
|
depends on BR2_PACKAGE_LIBGTK3 && !BR2_SYSTEM_ENABLE_NLS
|
||||||
endif
|
endif
|
||||||
|
|
||||||
comment "transmission needs a toolchain w/ threads"
|
comment "transmission needs a toolchain w/ dynamic library, threads, C++, gcc >= 7"
|
||||||
depends on BR2_USE_MMU
|
depends on BR2_USE_MMU
|
||||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
depends on !BR2_BINFMT_FLAT
|
||||||
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || \
|
||||||
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_7 || !BR2_STATIC_LIBS
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
# From https://transmissionbt.com/download
|
||||||
|
sha256 b6b01fd58e42bb14f7aba0253db932ced050fcd2bba5d9f8469d77ddd8ad545a transmission-4.0.3.tar.xz
|
||||||
# Locally calculated
|
# Locally calculated
|
||||||
sha256 9144652fe742f7f7dd6657716e378da60b751aaeda8bef8344b3eefc4db255f2 transmission-3.00.tar.xz
|
sha256 f56732960a61ecf3b9637404eef1a39221d2006336a98792b7b65a79f155449c COPYING
|
||||||
sha256 2b16da5bd02790d1e4d332cfd42b9dfd7d1b0ed3a16a75dc7e76b6ed239fdba9 COPYING
|
|
||||||
|
|||||||
@@ -4,55 +4,54 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
TRANSMISSION_VERSION = 3.00
|
TRANSMISSION_VERSION = 4.0.3
|
||||||
TRANSMISSION_SITE = https://github.com/transmission/transmission-releases/raw/master
|
|
||||||
TRANSMISSION_SOURCE = transmission-$(TRANSMISSION_VERSION).tar.xz
|
TRANSMISSION_SOURCE = transmission-$(TRANSMISSION_VERSION).tar.xz
|
||||||
|
TRANSMISSION_SITE = https://github.com/transmission/transmission/releases/download/$(TRANSMISSION_VERSION)
|
||||||
TRANSMISSION_DEPENDENCIES = \
|
TRANSMISSION_DEPENDENCIES = \
|
||||||
host-pkgconf \
|
host-pkgconf \
|
||||||
host-intltool \
|
dht \
|
||||||
|
libb64 \
|
||||||
libcurl \
|
libcurl \
|
||||||
|
libdeflate \
|
||||||
libevent \
|
libevent \
|
||||||
|
libminiupnpc \
|
||||||
|
libnatpmp \
|
||||||
|
libpsl \
|
||||||
|
libutp \
|
||||||
openssl \
|
openssl \
|
||||||
zlib
|
zlib
|
||||||
TRANSMISSION_AUTORECONF = YES
|
|
||||||
TRANSMISSION_CONF_OPTS = \
|
TRANSMISSION_CONF_OPTS = \
|
||||||
--without-inotify \
|
-DENABLE_TESTS=OFF \
|
||||||
--enable-lightweight
|
-DRUN_CLANG_TIDY=OFF \
|
||||||
|
-DUSE_SYSTEM_B64=ON \
|
||||||
|
-DUSE_SYSTEM_DEFLATE=ON \
|
||||||
|
-DUSE_SYSTEM_DHT=ON \
|
||||||
|
-DUSE_SYSTEM_NATPMP=ON \
|
||||||
|
-DUSE_SYSTEM_PSL=ON \
|
||||||
|
-DWITH_INOTIFY=OFF
|
||||||
TRANSMISSION_LICENSE = GPL-2.0 or GPL-3.0 with OpenSSL exception
|
TRANSMISSION_LICENSE = GPL-2.0 or GPL-3.0 with OpenSSL exception
|
||||||
TRANSMISSION_LICENSE_FILES = COPYING
|
TRANSMISSION_LICENSE_FILES = COPYING
|
||||||
TRANSMISSION_CPE_ID_VENDOR = transmissionbt
|
TRANSMISSION_CPE_ID_VENDOR = transmissionbt
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_LIBMINIUPNPC),y)
|
# Uses __atomic_load_8
|
||||||
TRANSMISSION_DEPENDENCIES += libminiupnpc
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
||||||
endif
|
TRANSMISSION_CONF_OPTS += -DCMAKE_EXE_LINKER_FLAGS=-latomic
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_LIBNATPMP),y)
|
|
||||||
TRANSMISSION_DEPENDENCIES += libnatpmp
|
|
||||||
TRANSMISSION_CONF_OPTS += --enable-external-natpmp
|
|
||||||
else
|
|
||||||
TRANSMISSION_CONF_OPTS += --disable-external-natpmp
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_TRANSMISSION_UTP),y)
|
|
||||||
TRANSMISSION_CONF_OPTS += --enable-utp
|
|
||||||
else
|
|
||||||
TRANSMISSION_CONF_OPTS += --disable-utp
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_TRANSMISSION_CLI),y)
|
ifeq ($(BR2_PACKAGE_TRANSMISSION_CLI),y)
|
||||||
TRANSMISSION_CONF_OPTS += --enable-cli
|
TRANSMISSION_CONF_OPTS += -DENABLE_CLI=ON
|
||||||
else
|
else
|
||||||
TRANSMISSION_CONF_OPTS += --disable-cli
|
TRANSMISSION_CONF_OPTS += -DENABLE_CLI=OFF
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_TRANSMISSION_DAEMON),y)
|
ifeq ($(BR2_PACKAGE_TRANSMISSION_DAEMON),y)
|
||||||
TRANSMISSION_CONF_OPTS += --enable-daemon
|
TRANSMISSION_CONF_OPTS += -DENABLE_DAEMON=ON
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
||||||
TRANSMISSION_DEPENDENCIES += systemd
|
TRANSMISSION_DEPENDENCIES += systemd
|
||||||
TRANSMISSION_CONF_OPTS += --with-systemd
|
TRANSMISSION_CONF_OPTS += -DWITH_SYSTEMD=ON
|
||||||
else
|
else
|
||||||
TRANSMISSION_CONF_OPTS += --without-systemd
|
TRANSMISSION_CONF_OPTS += -DWITH_SYSTEMD=OFF
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define TRANSMISSION_USERS
|
define TRANSMISSION_USERS
|
||||||
@@ -70,14 +69,14 @@ define TRANSMISSION_INSTALL_INIT_SYSTEMD
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
else
|
else
|
||||||
TRANSMISSION_CONF_OPTS += --disable-daemon
|
TRANSMISSION_CONF_OPTS += -DENABLE_DAEMON=OFF
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_TRANSMISSION_GTK),y)
|
ifeq ($(BR2_PACKAGE_TRANSMISSION_GTK),y)
|
||||||
TRANSMISSION_CONF_OPTS += --with-gtk
|
TRANSMISSION_CONF_OPTS += -DENABLE_GTK=ON
|
||||||
TRANSMISSION_DEPENDENCIES += libgtk3
|
TRANSMISSION_DEPENDENCIES += libgtk3
|
||||||
else
|
else
|
||||||
TRANSMISSION_CONF_OPTS += --without-gtk
|
TRANSMISSION_CONF_OPTS += -DENABLE_GTK=OFF
|
||||||
endif
|
endif
|
||||||
|
|
||||||
$(eval $(autotools-package))
|
$(eval $(cmake-package))
|
||||||
|
|||||||
Reference in New Issue
Block a user