From be710974525298eb7b565977ba7484b0614effb9 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Sun, 24 Mar 2024 22:24:51 +0100 Subject: [PATCH] package/wavpack: bump to version 5.7.0 - Update hash of COPYING (year updated with https://github.com/dbry/WavPack/commit/b28fdab79dd8af2b8281d77097cf8f25e580e525) - threads is an optional dependency since https://github.com/dbry/WavPack/commit/9ef0d37deb4f3f6def663079b18d3beea9cc10d2 - openssl dropped with https://github.com/dbry/WavPack/commit/c5b545146de8dd296f905183908cdcda682ed88b https://github.com/dbry/WavPack/releases/tag/5.7.0 https://github.com/dbry/WavPack/blob/5.7.0/NEWS Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- package/wavpack/wavpack.hash | 4 ++-- package/wavpack/wavpack.mk | 9 ++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/package/wavpack/wavpack.hash b/package/wavpack/wavpack.hash index 2a2317a86c..e938386b76 100644 --- a/package/wavpack/wavpack.hash +++ b/package/wavpack/wavpack.hash @@ -1,3 +1,3 @@ # locally computed hash -sha256 af8035f457509c3d338b895875228a9b81de276c88c79bb2d3e31d9b605da9a9 wavpack-5.6.0.tar.xz -sha256 275d65ec11a78d552d078b9c26d950e3075892bca895a415ceaaec33bcfabff9 COPYING +sha256 e81510fd9ec5f309f58d5de83e9af6c95e267a13753d7e0bbfe7b91273a88bee wavpack-5.7.0.tar.xz +sha256 35a87c7390cd00e51e7a7cbb0486df7897201347e4625779248ace48e7e6cfbc COPYING diff --git a/package/wavpack/wavpack.mk b/package/wavpack/wavpack.mk index b393a75197..25fe448c5f 100644 --- a/package/wavpack/wavpack.mk +++ b/package/wavpack/wavpack.mk @@ -4,7 +4,7 @@ # ################################################################################ -WAVPACK_VERSION = 5.6.0 +WAVPACK_VERSION = 5.7.0 WAVPACK_SITE = \ https://github.com/dbry/WavPack/releases/download/$(WAVPACK_VERSION) WAVPACK_SOURCE = wavpack-$(WAVPACK_VERSION).tar.xz @@ -18,11 +18,10 @@ ifeq ($(BR2_PACKAGE_LIBICONV),y) WAVPACK_CONF_OPTS += LIBS=-liconv endif -ifeq ($(BR2_PACKAGE_OPENSSL),y) -WAVPACK_DEPENDENCIES += openssl -WAVPACK_CONF_OPTS += --enable-libcrypto +ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y) +WAVPACK_CONF_OPTS += --enable-threads else -WAVPACK_CONF_OPTS += --disable-libcrypto +WAVPACK_CONF_OPTS += --disable-threads endif # WavPack "autodetects" CPU type to enable ASM code. However, the assembly code