diff --git a/Config.in.legacy b/Config.in.legacy index 44ee749329..b1d03b3494 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -144,6 +144,14 @@ endif ############################################################################### +comment "Legacy options removed in 2025.02.4" + +config BR2_PACKAGE_LIBEBUR128 + bool "libebur128 has been removed" + select BR2_LEGACY + help + The libebur128 package has been removed from Buildroot. + comment "Legacy options removed in 2025.02" config BR2_PACKAGE_SQLITE_ENABLE_JSON1 diff --git a/DEVELOPERS b/DEVELOPERS index 2bd3b9448d..155cd39ccc 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -411,7 +411,6 @@ F: package/libdvbcsa/ F: package/libdvdcss/ F: package/libdvdnav/ F: package/libdvdread/ -F: package/libebur128/ F: package/libfreeglut/ F: package/libfribidi/ F: package/libg7221/ diff --git a/package/Config.in b/package/Config.in index 4a81a62ec4..fdd03d879c 100644 --- a/package/Config.in +++ b/package/Config.in @@ -1533,7 +1533,6 @@ menu "Audio/Sound" source "package/libcodec2/Config.in" source "package/libcue/Config.in" source "package/libcuefile/Config.in" - source "package/libebur128/Config.in" source "package/libg7221/Config.in" source "package/libgsm/Config.in" source "package/libid3tag/Config.in" diff --git a/package/ffmpeg/ffmpeg.mk b/package/ffmpeg/ffmpeg.mk index 5c00ba2dff..30cf7020de 100644 --- a/package/ffmpeg/ffmpeg.mk +++ b/package/ffmpeg/ffmpeg.mk @@ -243,10 +243,6 @@ FFMPEG_CONF_OPTS += --disable-openssl endif endif -ifeq ($(BR2_PACKAGE_FFMPEG_GPL)$(BR2_PACKAGE_LIBEBUR128),yy) -FFMPEG_DEPENDENCIES += libebur128 -endif - ifeq ($(BR2_PACKAGE_LIBDRM),y) FFMPEG_CONF_OPTS += --enable-libdrm FFMPEG_DEPENDENCIES += libdrm diff --git a/package/libebur128/Config.in b/package/libebur128/Config.in deleted file mode 100644 index 0d68b39d53..0000000000 --- a/package/libebur128/Config.in +++ /dev/null @@ -1,13 +0,0 @@ -config BR2_PACKAGE_LIBEBUR128 - bool "libebur128" - # build system has no support to disable shared linking - # leading to a build error with a static-only toolchain - depends on !BR2_STATIC_LIBS - help - libebur128 is a library that implements the EBU R 128 standard - for loudness normalization. - - https://github.com/jiixyj/libebur128 - -comment "libebur128 needs a toolchain w/ dynamic library" - depends on BR2_STATIC_LIBS diff --git a/package/libebur128/libebur128.hash b/package/libebur128/libebur128.hash deleted file mode 100644 index 9c8c9e0c31..0000000000 --- a/package/libebur128/libebur128.hash +++ /dev/null @@ -1,3 +0,0 @@ -# Locally computed -sha256 baa7fc293a3d4651e244d8022ad03ab797ca3c2ad8442c43199afe8059faa613 libebur128-1.2.6.tar.gz -sha256 d6b4754bb67bdd08b97d5d11b2d7434997a371585a78fe77007149df3af8d09c COPYING diff --git a/package/libebur128/libebur128.mk b/package/libebur128/libebur128.mk deleted file mode 100644 index b7272fa7e1..0000000000 --- a/package/libebur128/libebur128.mk +++ /dev/null @@ -1,13 +0,0 @@ -################################################################################ -# -# libebur128 -# -################################################################################ - -LIBEBUR128_VERSION = 1.2.6 -LIBEBUR128_SITE = $(call github,jiixyj,libebur128,v$(LIBEBUR128_VERSION)) -LIBEBUR128_LICENSE = MIT -LIBEBUR128_LICENSE_FILES = COPYING -LIBEBUR128_INSTALL_STAGING = YES - -$(eval $(cmake-package))