package/usbredir: bump to version 0.13.0

usbredirserver was dropped by
f4ffdce329

Add an option to enable tools (and usbredirect binary) as a replacement
to usbredirserver

https://gitlab.freedesktop.org/spice/usbredir/-/blob/usbredir-0.13.0/ChangeLog.md

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2022-10-23 10:52:51 +02:00 committed by Thomas Petazzoni
parent 01fec1b372
commit d31447bce4
4 changed files with 31 additions and 21 deletions

View File

@ -146,6 +146,14 @@ endif
comment "Legacy options removed in 2022.11"
config BR2_PACKAGE_USBREDIR_SERVER
bool "usbredirserver removed"
select BR2_LEGACY
help
usbredirserver has been dropped by upstream since version
0.13.0. usbredir tools (which include usbredirect binary) can
be used as a replacement.
config BR2_KERNEL_HEADERS_5_17
bool "kernel headers version 5.17.x are no longer supported"
select BR2_LEGACY

View File

@ -15,18 +15,26 @@ config BR2_PACKAGE_USBREDIR
protocol.
Note: only the library is installed, not the utilities. Say
'y' below if you want the server too.
'y' below if you want the tools too.
http://www.spice-space.org/page/UsbRedir
if BR2_PACKAGE_USBREDIR
config BR2_PACKAGE_USBREDIR_SERVER
bool "usbredirserver on target"
config BR2_PACKAGE_USBREDIR_TOOLS
bool "enable tools"
depends on BR2_USE_MMU # libglib2
depends on BR2_USE_WCHAR # libglib2
select BR2_PACKAGE_LIBGLIB2
help
If you want to serve usbredir requests on your target, say
'y' here to have the usbredir server on the target.
'y' here to have the tools built and installed on the target
(including usbredirect binary).
Note: the server is not required to use the library.
Note: the tools are not required to use the library.
comment "tools needs a toolchain w/ wchar"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR
endif

View File

@ -1,5 +1,5 @@
# https://spice-space.org/download/usbredir/usbredir-0.12.0.tar.xz.sha256sum
sha256 fbb44025bf55e1ce8d84afc7596bfa47c8a36cd603c6fa440f9102c1c9761e6d usbredir-0.12.0.tar.xz
# https://spice-space.org/download/usbredir/usbredir-0.13.0.tar.xz.sha256sum
sha256 4ba6faa02c0ae6deeb4c53883d66ab54b3a5899bead42ce4ded9568b9a7dc46e usbredir-0.13.0.tar.xz
# Hash for license files
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING

View File

@ -4,7 +4,7 @@
#
################################################################################
USBREDIR_VERSION = 0.12.0
USBREDIR_VERSION = 0.13.0
USBREDIR_SOURCE = usbredir-$(USBREDIR_VERSION).tar.xz
USBREDIR_SITE = http://spice-space.org/download/usbredir
USBREDIR_LICENSE = LGPL-2.1+ (libraries)
@ -14,21 +14,15 @@ USBREDIR_DEPENDENCIES = host-pkgconf libusb
USBREDIR_CONF_OPTS = \
-Dgit_werror=disabled \
-Dstack_protector=disabled \
-Dtests=disabled \
-Dtools=disabled
ifeq ($(BR2_PACKAGE_USBREDIR_SERVER),y)
-Dtests=disabled
ifeq ($(BR2_PACKAGE_USBREDIR_TOOLS),y)
USBREDIR_LICENSE += , GPL-2.0+ (program)
USBREDIR_LICENSE_FILES += COPYING
else # BR2_PACKAGE_USBREDIR_SERVER != y
define USBREDIR_POST_INSTALL_TARGET_RM_SERVER
rm -f $(TARGET_DIR)/usr/sbin/usbredirserver
endef
USBREDIR_POST_INSTALL_TARGET_HOOKS += USBREDIR_POST_INSTALL_TARGET_RM_SERVER
endif # BR2_PACKAGE_USBREDIR_SERVER
USBREDIR_DEPENDENCIES += libglib2
USBREDIR_CONF_OPTS += -Dtools=enabled
else
USBREDIR_CONF_OPTS += -Dtools=disabled
endif
$(eval $(meson-package))