package/libsoup3: bump to 3.7.3

News:
- https://download.gnome.org/sources/libsoup/3.7/libsoup-3.7.1.news
- https://download.gnome.org/sources/libsoup/3.7/libsoup-3.7.2.news
- https://download.gnome.org/sources/libsoup/3.7/libsoup-3.7.3.news

Add zstd support which was added upstream:
579ff56747

Signed-off-by: Thomas Devoogdt <thomas@devoogdt.com>
Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Thomas Devoogdt
2026-09-17 22:08:52 +02:00
committed by Julien Olivain
parent d24f5fcc20
commit 55cec1d013
2 changed files with 11 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# From https://download.gnome.org/sources/libsoup/3.6/libsoup-3.6.6.sha256sum
sha256 51ed0ae06f9d5a40f401ff459e2e5f652f9a510b7730e1359ee66d14d4872740 libsoup-3.6.6.tar.xz
# From https://download.gnome.org/sources/libsoup/3.7/libsoup-3.7.3.sha256sum
sha256 4e6a67fb8ff1376577afc24a26c842a347b0034eabf71ef13d0382b1c5bc05e7 libsoup-3.7.3.tar.xz
# Locally calculated
sha256 b7993225104d90ddd8024fd838faf300bea5e83d91203eab98e29512acebd69c COPYING

View File

@@ -4,8 +4,8 @@
#
################################################################################
LIBSOUP3_VERSION_MAJOR = 3.6
LIBSOUP3_VERSION = $(LIBSOUP3_VERSION_MAJOR).6
LIBSOUP3_VERSION_MAJOR = 3.7
LIBSOUP3_VERSION = $(LIBSOUP3_VERSION_MAJOR).3
LIBSOUP3_SOURCE = libsoup-$(LIBSOUP3_VERSION).tar.xz
LIBSOUP3_SITE = https://download.gnome.org/sources/libsoup/$(LIBSOUP3_VERSION_MAJOR)
LIBSOUP3_LICENSE = LGPL-2.0+
@@ -51,4 +51,11 @@ else
LIBSOUP3_CONF_OPTS += -Dgssapi=disabled
endif
ifeq ($(BR2_PACKAGE_ZSTD),y)
LIBSOUP3_CONF_OPTS += -Dzstd=enabled
LIBSOUP3_DEPENDENCIES += zstd
else
LIBSOUP3_CONF_OPTS += -Dzstd=disabled
endif
$(eval $(meson-package))