[Buildroot] [PATCH 1/1] package/mpd: drop tidal option

Fabrice Fontaine fontaine.fabrice at gmail.com
Fri Nov 5 13:05:15 UTC 2021


tidal option has been removed from mpd since version 0.22.10 and
https://github.com/MusicPlayerDaemon/MPD/commit/97c43954e8df3f772899cda951ad5a7dd4a24f25
resulting in the following build failure since bump of meson to version
0.60.1 in commit 78d3f2ea03dfba07a73fe0405c2aa4778f063ce3:

../output-1/build/mpd-0.22.11/meson.build:1:0: ERROR: Unknown options: "tidal"

Fixes:
 - http://autobuild.buildroot.org/results/b8c5879a02078f4962088dff5ae2ede1f0e6b805

Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
---
 Config.in.legacy      | 6 ++++++
 package/mpd/Config.in | 7 -------
 package/mpd/mpd.mk    | 7 -------
 3 files changed, 6 insertions(+), 14 deletions(-)

diff --git a/Config.in.legacy b/Config.in.legacy
index 24d0dc1d51..3551dd9982 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -146,6 +146,12 @@ endif
 
 comment "Legacy options removed in 2021.11"
 
+config BR2_PACKAGE_MPD_TIDAL
+	bool "mpd tidal option removed"
+	select BR2_LEGACY
+	help
+	  tidal has been removed from mpd since version 0.22.10.
+
 config BR2_PACKAGE_MROUTED_RSRR
 	bool "RSRR for RSVP removed in mrouted v4.4"
 	select BR2_LEGACY
diff --git a/package/mpd/Config.in b/package/mpd/Config.in
index b075df0d03..e5de77f1bd 100644
--- a/package/mpd/Config.in
+++ b/package/mpd/Config.in
@@ -58,13 +58,6 @@ config BR2_PACKAGE_MPD_SOUNDCLOUD
 	help
 	  Enable soundcloud.com playlist support.
 
-config BR2_PACKAGE_MPD_TIDAL
-	bool "tidal"
-	select BR2_PACKAGE_MPD_CURL
-	select BR2_PACKAGE_YAJL
-	help
-	  Play songs from the commercial streaming service TIDAL.
-
 comment "Converter plugins"
 
 config BR2_PACKAGE_MPD_LIBSAMPLERATE
diff --git a/package/mpd/mpd.mk b/package/mpd/mpd.mk
index 7a18783386..14390fd0f4 100644
--- a/package/mpd/mpd.mk
+++ b/package/mpd/mpd.mk
@@ -284,13 +284,6 @@ ifneq ($(BR2_PACKAGE_MPD_TCP),y)
 MPD_CONF_OPTS += -Dtcp=true
 endif
 
-ifeq ($(BR2_PACKAGE_MPD_TIDAL),y)
-MPD_DEPENDENCIES += yajl
-MPD_CONF_OPTS += -Dtidal=enabled
-else
-MPD_CONF_OPTS += -Dtidal=disabled
-endif
-
 ifeq ($(BR2_PACKAGE_MPD_TREMOR),y)
 MPD_DEPENDENCIES += tremor
 MPD_CONF_OPTS += -Dtremor=enabled
-- 
2.33.0



More information about the buildroot mailing list