From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34443) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fFpFh-00075D-G6 for guix-patches@gnu.org; Mon, 07 May 2018 19:09:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fFpFe-00036z-1w for guix-patches@gnu.org; Mon, 07 May 2018 19:09:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45387) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fFpFd-00036t-V6 for guix-patches@gnu.org; Mon, 07 May 2018 19:09:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fFpFd-0006dS-Kd for guix-patches@gnu.org; Mon, 07 May 2018 19:09:01 -0400 Subject: [bug#31381] [PATCH] gnu: MPD: Remove unecessary dependency on libmad. References: <20180507230327.GA10820@jasmine.lan> In-Reply-To: <20180507230327.GA10820@jasmine.lan> Resent-Message-ID: From: Leo Famulari Date: Mon, 7 May 2018 19:08:22 -0400 Message-Id: <20180507230822.11092-1-leo@famulari.name> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31381@debbugs.gnu.org MPD already depends on FFmpeg, which uses LAME for MP3 decoding. gnu/packages/mpd.scm (mpd)[inputs]: Remove LIBMAD. --- gnu/packages/mpd.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 188903549..6f2ff5d78 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -119,9 +119,10 @@ interfacing MPD in the C, C++ & Objective C languages.") ("flac" ,flac) ("glib" ,glib) ("icu4c" ,icu4c) + ;; The LAME decoder comes from FFmpeg, but is added here so that + ;; configure picks up the LAME encoder. ("lame" ,lame) ("libid3tag" ,libid3tag) - ("libmad" ,libmad) ("libmpdclient" ,libmpdclient) ("libsamplerate" ,libsamplerate) ("libsndfile" ,libsndfile) -- 2.17.0