From unknown Mon Jun 23 23:55:32 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#60357] [PATCH] gnu: mpd: Add missing inputs. Resent-From: mirai@makinata.eu Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 27 Dec 2022 16:12:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 60357 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 60357@debbugs.gnu.org Cc: Bruno Victal X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.167215747822372 (code B ref -1); Tue, 27 Dec 2022 16:12:01 +0000 Received: (at submit) by debbugs.gnu.org; 27 Dec 2022 16:11:18 +0000 Received: from localhost ([127.0.0.1]:56358 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pACXt-0005om-E7 for submit@debbugs.gnu.org; Tue, 27 Dec 2022 11:11:17 -0500 Received: from lists.gnu.org ([209.51.188.17]:39492) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pACXr-0005oe-GO for submit@debbugs.gnu.org; Tue, 27 Dec 2022 11:11:16 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pACXq-0000Y6-Uu for guix-patches@gnu.org; Tue, 27 Dec 2022 11:11:15 -0500 Received: from smtpm2.myservices.hosting ([185.26.105.233]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pACXp-0002Sb-Dt for guix-patches@gnu.org; Tue, 27 Dec 2022 11:11:14 -0500 Received: from mail1.netim.hosting (unknown [185.26.106.172]) by smtpm2.myservices.hosting (Postfix) with ESMTP id 0FDD620CB6 for ; Tue, 27 Dec 2022 17:10:58 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id 780A180096; Tue, 27 Dec 2022 17:10:58 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-1.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id w-pZ0kgWt-bV; Tue, 27 Dec 2022 17:10:57 +0100 (CET) Received: from guix-nuc.home.arpa (bl12-93-156.dsl.telepac.pt [85.245.93.156]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 9975F80093; Tue, 27 Dec 2022 17:10:57 +0100 (CET) From: mirai@makinata.eu Date: Tue, 27 Dec 2022 16:10:49 +0000 Message-Id: <608863f38d5920d26d1d86e38e5de2ea1776d64c.1672157416.git.mirai@makinata.eu> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.26.105.233; envelope-from=mirai@makinata.eu; helo=smtpm2.myservices.hosting X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) From: Bruno Victal Enable more features for MPD. * gnu/packages/mpd.scm (mpd)[inputs]: Add liburing, chromaprint, expat, libgme, libnfs, libopenmpt, libshout, pcre2, soxr, yajl and zziplib. --- gnu/packages/mpd.scm | 67 ++++++++++++++++++++++++++------------------ 1 file changed, 39 insertions(+), 28 deletions(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 63fb9bc974..0659257ede 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -49,6 +49,7 @@ (define-module (gnu packages mpd) #:use-module (gnu packages cdrom) #:use-module (gnu packages cmake) ;for MPD #:use-module (gnu packages cpp) + #:use-module (gnu packages file-systems) #:use-module (gnu packages freedesktop) ;elogind #:use-module (gnu packages gettext) #:use-module (gnu packages gnome) @@ -81,7 +82,8 @@ (define-module (gnu packages mpd) #:use-module (gnu packages tls) #:use-module (gnu packages video) #:use-module (gnu packages web) - #:use-module (gnu packages xiph)) + #:use-module (gnu packages xiph) + #:use-module (gnu packages xml)) (define-public libmpdclient (package @@ -144,41 +146,50 @@ (define-public mpd (string-append "_" all))) (substitute* "meson.build" (("systemd_dep,") "systemd_dep, _systemd_dep,"))))))) - (inputs (list ao - alsa-lib - avahi - boost - curl - elogind - ffmpeg - flac - fmt - glib - icu4c - ;; The LAME decoder comes from FFmpeg, but is added here so that - ;; configure picks up the LAME encoder. - lame - libid3tag - libmpdclient - libsamplerate - libsndfile - libvorbis - opus - pipewire-0.3 - pulseaudio - sqlite - zlib)) + (inputs (append + (if (target-linux?) (list liburing) '()) + (list ao + alsa-lib + avahi + boost + chromaprint + curl + elogind + expat + ffmpeg + flac + fmt + glib + icu4c + ;; The LAME decoder comes from FFmpeg, but is added here so that + ;; configure picks up the LAME encoder. + lame + libgme + libid3tag + libmpdclient + libnfs + libopenmpt + libsamplerate + libshout + libsndfile + libvorbis + opus + pcre2 + pipewire-0.3 + pulseaudio + soxr + sqlite + yajl + zlib + zziplib))) (native-inputs (list cmake pkg-config python-sphinx)) ;; Missing optional inputs: - ;; yajl ;; libcdio_paranoia ;; libmms ;; libadplug ;; libaudiofile ;; faad2 ;; fluidsynth - ;; libgme - ;; libshout ;; libmpg123 ;; libmodplug ;; libmpcdec base-commit: 8f93a1e01a879ae026678dd92c18e2a2a49be540 -- 2.38.1 From unknown Mon Jun 23 23:55:32 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#60357] [PATCH] gnu: mpd: Add missing inputs. Resent-From: Bruno Victal Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 17 Jan 2023 03:01:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 60357 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 60357@debbugs.gnu.org Received: via spool by 60357-submit@debbugs.gnu.org id=B60357.167392443818647 (code B ref 60357); Tue, 17 Jan 2023 03:01:02 +0000 Received: (at 60357) by debbugs.gnu.org; 17 Jan 2023 03:00:38 +0000 Received: from localhost ([127.0.0.1]:35376 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHcDF-0004qg-Pn for submit@debbugs.gnu.org; Mon, 16 Jan 2023 22:00:38 -0500 Received: from smtpm8.myservices.hosting ([185.26.105.209]:57546) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHcD9-0004qU-HK for 60357@debbugs.gnu.org; Mon, 16 Jan 2023 22:00:36 -0500 Received: from mail1.netim.hosting (unknown [185.26.106.172]) by smtpm8.myservices.hosting (Postfix) with ESMTP id 92FCC20CCD for <60357@debbugs.gnu.org>; Tue, 17 Jan 2023 04:00:28 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id 4093B8009A for <60357@debbugs.gnu.org>; Tue, 17 Jan 2023 04:00:28 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-1.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id RvNkvGELVGUq for <60357@debbugs.gnu.org>; Tue, 17 Jan 2023 04:00:28 +0100 (CET) Received: from [192.168.1.239] (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id DF3D780098 for <60357@debbugs.gnu.org>; Tue, 17 Jan 2023 04:00:24 +0100 (CET) Message-ID: <2ab435fb-4c27-4b01-919a-600137bc47dc@makinata.eu> Date: Tue, 17 Jan 2023 03:00:20 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Content-Language: en-US References: <608863f38d5920d26d1d86e38e5de2ea1776d64c.1672157416.git.mirai@makinata.eu> From: Bruno Victal In-Reply-To: <608863f38d5920d26d1d86e38e5de2ea1776d64c.1672157416.git.mirai@makinata.eu> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.1 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.1 (--) a friendly bump From unknown Mon Jun 23 23:55:32 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#60357] [PATCH v2 1/2] gnu: mpd: Add missing inputs. References: <608863f38d5920d26d1d86e38e5de2ea1776d64c.1672157416.git.mirai@makinata.eu> In-Reply-To: <608863f38d5920d26d1d86e38e5de2ea1776d64c.1672157416.git.mirai@makinata.eu> Resent-From: Bruno Victal Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 23 Jan 2023 20:05:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 60357 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 60357@debbugs.gnu.org Cc: Bruno Victal Received: via spool by 60357-submit@debbugs.gnu.org id=B60357.167450428412293 (code B ref 60357); Mon, 23 Jan 2023 20:05:01 +0000 Received: (at 60357) by debbugs.gnu.org; 23 Jan 2023 20:04:44 +0000 Received: from localhost ([127.0.0.1]:55380 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pK33c-0003CC-9P for submit@debbugs.gnu.org; Mon, 23 Jan 2023 15:04:44 -0500 Received: from smtpmciv7.myservices.hosting ([185.26.106.202]:51360) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pK33a-0003C3-Bq for 60357@debbugs.gnu.org; Mon, 23 Jan 2023 15:04:42 -0500 Received: from mail1.netim.hosting (unknown [185.26.106.172]) by smtpmciv7.myservices.hosting (Postfix) with ESMTP id 7602520CE3 for <60357@debbugs.gnu.org>; Mon, 23 Jan 2023 21:04:40 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id 22CCD80098; Mon, 23 Jan 2023 21:04:40 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-1.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id CrX7HAp6FGk6; Mon, 23 Jan 2023 21:04:39 +0100 (CET) Received: from guix-nuc.home.arpa (bl9-118-236.dsl.telepac.pt [85.242.118.236]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id C9DD480097; Mon, 23 Jan 2023 21:04:38 +0100 (CET) From: Bruno Victal Date: Mon, 23 Jan 2023 20:04:25 +0000 Message-Id: <8fe214abd2d169cda635b86051b1032904da48c5.1674504266.git.mirai@makinata.eu> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Enable more features for MPD. * gnu/packages/mpd.scm (mpd)[inputs]: Add liburing, chromaprint, expat, libgme, libnfs, libopenmpt, libshout, pcre2, soxr, yajl and zziplib. --- gnu/packages/mpd.scm | 67 ++++++++++++++++++++++++++------------------ 1 file changed, 39 insertions(+), 28 deletions(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 63163e09dc..fc52f377a8 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -49,6 +49,7 @@ (define-module (gnu packages mpd) #:use-module (gnu packages cdrom) #:use-module (gnu packages cmake) ;for MPD #:use-module (gnu packages cpp) + #:use-module (gnu packages file-systems) #:use-module (gnu packages freedesktop) ;elogind #:use-module (gnu packages gettext) #:use-module (gnu packages gnome) @@ -81,7 +82,8 @@ (define-module (gnu packages mpd) #:use-module (gnu packages tls) #:use-module (gnu packages video) #:use-module (gnu packages web) - #:use-module (gnu packages xiph)) + #:use-module (gnu packages xiph) + #:use-module (gnu packages xml)) (define-public libmpdclient (package @@ -144,41 +146,50 @@ (define-public mpd (string-append "_" all))) (substitute* "meson.build" (("systemd_dep,") "systemd_dep, _systemd_dep,"))))))) - (inputs (list ao - alsa-lib - avahi - boost - curl - elogind - ffmpeg - flac - fmt - glib - icu4c - ;; The LAME decoder comes from FFmpeg, but is added here so that - ;; configure picks up the LAME encoder. - lame - libid3tag - libmpdclient - libsamplerate - libsndfile - libvorbis - opus - pipewire - pulseaudio - sqlite - zlib)) + (inputs (append + (if (target-linux?) (list liburing) '()) + (list ao + alsa-lib + avahi + boost + chromaprint + curl + elogind + expat + ffmpeg + flac + fmt + glib + icu4c + ;; The LAME decoder comes from FFmpeg, but is added here so that + ;; configure picks up the LAME encoder. + lame + libgme + libid3tag + libmpdclient + libnfs + libopenmpt + libsamplerate + libshout + libsndfile + libvorbis + opus + pcre2 + pipewire + pulseaudio + soxr + sqlite + yajl + zlib + zziplib))) (native-inputs (list cmake pkg-config python-sphinx)) ;; Missing optional inputs: - ;; yajl ;; libcdio_paranoia ;; libmms ;; libadplug ;; libaudiofile ;; faad2 ;; fluidsynth - ;; libgme - ;; libshout ;; libmpg123 ;; libmodplug ;; libmpcdec base-commit: 9e4f1f8c339cb5f1d3dcf9b22ae74cd5b1c25053 -- 2.38.1 From unknown Mon Jun 23 23:55:32 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#60357] [PATCH v2 2/2] gnu: mpd: Update to 0.23.12. Resent-From: Bruno Victal Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 23 Jan 2023 20:05:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 60357 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 60357@debbugs.gnu.org Cc: Bruno Victal Received: via spool by 60357-submit@debbugs.gnu.org id=B60357.167450428812309 (code B ref 60357); Mon, 23 Jan 2023 20:05:02 +0000 Received: (at 60357) by debbugs.gnu.org; 23 Jan 2023 20:04:48 +0000 Received: from localhost ([127.0.0.1]:55383 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pK33f-0003CS-LN for submit@debbugs.gnu.org; Mon, 23 Jan 2023 15:04:47 -0500 Received: from smtpm4.myservices.hosting ([185.26.105.235]:51560) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pK33e-0003CK-0d for 60357@debbugs.gnu.org; Mon, 23 Jan 2023 15:04:46 -0500 Received: from mail1.netim.hosting (unknown [185.26.106.172]) by smtpm4.myservices.hosting (Postfix) with ESMTP id 3EC8520C19 for <60357@debbugs.gnu.org>; Mon, 23 Jan 2023 21:04:44 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id BFBFB80096; Mon, 23 Jan 2023 21:04:44 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-1.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id Bh_5eGU7cWtw; Mon, 23 Jan 2023 21:04:44 +0100 (CET) Received: from guix-nuc.home.arpa (bl9-118-236.dsl.telepac.pt [85.242.118.236]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 5FB7380093; Mon, 23 Jan 2023 21:04:44 +0100 (CET) From: Bruno Victal Date: Mon, 23 Jan 2023 20:04:26 +0000 Message-Id: <31bd6ed4b16a4d3c5606f6a14da77ef642d21cf3.1674504266.git.mirai@makinata.eu> X-Mailer: git-send-email 2.38.1 In-Reply-To: <8fe214abd2d169cda635b86051b1032904da48c5.1674504266.git.mirai@makinata.eu> References: <8fe214abd2d169cda635b86051b1032904da48c5.1674504266.git.mirai@makinata.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/mpd.scm (mpd): Update to 0.23.12. --- gnu/packages/mpd.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index fc52f377a8..0526fd42d6 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -118,7 +118,7 @@ (define-public libmpdclient (define-public mpd (package (name "mpd") - (version "0.23.11") + (version "0.23.12") (source (origin (method url-fetch) (uri @@ -127,7 +127,7 @@ (define-public mpd "/mpd-" version ".tar.xz")) (sha256 (base32 - "1afwvw2670yz3kxzlqjlg9r8ra8fjihj97hgc6skiwnzz6lfgd7d")))) + "1rq2hyfvwwri3sivab747csza2i096y7m8563rl5mhpchhiadz5p")))) (build-system meson-build-system) (arguments (list -- 2.38.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 23 15:41:14 2023 Received: (at control) by debbugs.gnu.org; 23 Jan 2023 20:41:14 +0000 Received: from localhost ([127.0.0.1]:55407 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pK3cw-0004AP-6Z for submit@debbugs.gnu.org; Mon, 23 Jan 2023 15:41:14 -0500 Received: from smtpmciv1.myservices.hosting ([185.26.107.237]:41798) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pK3cq-0004AD-5t for control@debbugs.gnu.org; Mon, 23 Jan 2023 15:41:12 -0500 Received: from mail1.netim.hosting (unknown [185.26.106.172]) by smtpmciv1.myservices.hosting (Postfix) with ESMTP id AA56C20612 for ; Mon, 23 Jan 2023 21:41:04 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id 654B980098 for ; Mon, 23 Jan 2023 21:41:04 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-1.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id IdVbE_4Kd58Z for ; Mon, 23 Jan 2023 21:41:04 +0100 (CET) Received: from [192.168.1.239] (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 27FB080097 for ; Mon, 23 Jan 2023 21:41:04 +0100 (CET) Message-ID: Date: Mon, 23 Jan 2023 20:41:03 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Content-Language: en-US To: control From: Bruno Victal Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: retitle 60357 [PATCH v2] MPD: Add missing inputs and update to 0.23.12 quit Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) retitle 60357 [PATCH v2] MPD: Add missing inputs and update to 0.23.12 quit From unknown Mon Jun 23 23:55:32 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#60357] [PATCH v2 2/2] gnu: mpd: Update to 0.23.12. Resent-From: Leo Famulari Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 05 Feb 2023 17:00:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 60357 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Bruno Victal Cc: 60357@debbugs.gnu.org Received: via spool by 60357-submit@debbugs.gnu.org id=B60357.167561635920930 (code B ref 60357); Sun, 05 Feb 2023 17:00:02 +0000 Received: (at 60357) by debbugs.gnu.org; 5 Feb 2023 16:59:19 +0000 Received: from localhost ([127.0.0.1]:46353 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pOiMJ-0005RW-1j for submit@debbugs.gnu.org; Sun, 05 Feb 2023 11:59:19 -0500 Received: from new1-smtp.messagingengine.com ([66.111.4.221]:51319) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pOiMG-0005RJ-Gi for 60357@debbugs.gnu.org; Sun, 05 Feb 2023 11:59:17 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailnew.nyi.internal (Postfix) with ESMTP id EF85F581D3B; Sun, 5 Feb 2023 11:59:10 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Sun, 05 Feb 2023 11:59:10 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=cc:cc:content-type:date:date:from:from:in-reply-to :in-reply-to:message-id:mime-version:references:reply-to:sender :subject:subject:to:to; s=mesmtp; t=1675616350; x=1675623550; bh=zUcOeF8FDh6PTPlrQu5c7TcWyGEYhFYfCO3Uph3BumI=; b=InYNYP8HiO+v TxUgfw891ahw9B5T3oLDCFkmoy4yH6v9u5SRlUhjjjIEnModt2zPaOVMF6Mmj/4z SYHiLqxwXMduK0z75dMp6m32C52WNk3QLDPu9nJl4eAhfmujgo323TVcsGNRjPVO cRh4BPdRI1OzKKaNdFK/hTqwxObnEWw= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-type:date:date:feedback-id :feedback-id:from:from:in-reply-to:in-reply-to:message-id :mime-version:references:reply-to:sender:subject:subject:to:to :x-me-proxy:x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s= fm3; t=1675616350; x=1675623550; bh=zUcOeF8FDh6PTPlrQu5c7TcWyGEY hFYfCO3Uph3BumI=; b=U5Ij3NzVZfM1c0BE4kzjaIKOkvNFF17FRyMRmvo+K5+o YtkhSkJoxioYYfTtjNajkth73AcNB2nb0g/rgbUmPIezKzpLWt0biaPTEF9yX1mh uAKCa3G2CwjLAKkP2Ezu0tyqiXNtAO6NCadotRU9A8j4SuWYLwh2LnZBDV4Zkle1 aVMNm9iQWuCFCxymVn5uxk+3h0PoB1oUsykGZjPIxYk1uXzVb31IYfVOoMcwYAPJ C9ikQvvlY3ThXizmD6mxlxIh/Fl2ejayPxTR9qnmLULS0Fenm6D3L77D+u1apV57 lenF31IPtyTPlzntBUY9R7PWuVjedhOjZCWRkUMX5w== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvhedrudeggedgleehucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucenucfjughrpeffhffvvefukfhfgggtuggjsehttd ertddttddvnecuhfhrohhmpefnvghoucfhrghmuhhlrghrihcuoehlvghosehfrghmuhhl rghrihdrnhgrmhgvqeenucggtffrrghtthgvrhhnpeeiteduheefkeeufeelgeduhfejgf elheefleeuhfeffffgueduleehvdejleeiteenucevlhhushhtvghrufhiiigvpedtnecu rfgrrhgrmhepmhgrihhlfhhrohhmpehlvghosehfrghmuhhlrghrihdrnhgrmhgv X-ME-Proxy: Feedback-ID: i819c4023:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sun, 5 Feb 2023 11:59:10 -0500 (EST) Date: Sun, 5 Feb 2023 17:59:07 +0100 From: Leo Famulari Message-ID: References: <8fe214abd2d169cda635b86051b1032904da48c5.1674504266.git.mirai@makinata.eu> <31bd6ed4b16a4d3c5606f6a14da77ef642d21cf3.1674504266.git.mirai@makinata.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <31bd6ed4b16a4d3c5606f6a14da77ef642d21cf3.1674504266.git.mirai@makinata.eu> X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) On Mon, Jan 23, 2023 at 08:04:26PM +0000, Bruno Victal wrote: > * gnu/packages/mpd.scm (mpd): Update to 0.23.12. Applied, thanks! From unknown Mon Jun 23 23:55:32 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: mirai@makinata.eu Subject: bug#60357: closed () Message-ID: References: <6bed7833-e3c7-44b4-88d7-83532156e617@makinata.eu> <608863f38d5920d26d1d86e38e5de2ea1776d64c.1672157416.git.mirai@makinata.eu> X-Gnu-PR-Message: they-closed 60357 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 60357@debbugs.gnu.org Date: Mon, 06 Feb 2023 17:36:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1675704962-27593-1" This is a multi-part message in MIME format... ------------=_1675704962-27593-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #60357: [PATCH v2] MPD: Add missing inputs and update to 0.23.12 which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 60357@debbugs.gnu.org. --=20 60357: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D60357 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1675704962-27593-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 60357-done) by debbugs.gnu.org; 6 Feb 2023 17:35:51 +0000 Received: from localhost ([127.0.0.1]:49796 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pP5PC-0007AW-Ko for submit@debbugs.gnu.org; Mon, 06 Feb 2023 12:35:50 -0500 Received: from smtpmciv2.myservices.hosting ([185.26.107.238]:45610) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pP5PB-0007AN-5U for 60357-done@debbugs.gnu.org; Mon, 06 Feb 2023 12:35:49 -0500 Received: from mail1.netim.hosting (unknown [185.26.106.172]) by smtpmciv2.myservices.hosting (Postfix) with ESMTP id 2BBCA20CF1 for <60357-done@debbugs.gnu.org>; Mon, 6 Feb 2023 18:35:47 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id DF7B280098 for <60357-done@debbugs.gnu.org>; Mon, 6 Feb 2023 18:35:47 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-1.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id v9l66UqvKzxZ for <60357-done@debbugs.gnu.org>; Mon, 6 Feb 2023 18:35:47 +0100 (CET) Received: from [192.168.1.239] (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id AC9EF80097 for <60357-done@debbugs.gnu.org>; Mon, 6 Feb 2023 18:35:47 +0100 (CET) Message-ID: <6bed7833-e3c7-44b4-88d7-83532156e617@makinata.eu> Date: Mon, 6 Feb 2023 17:35:47 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.7.1 Content-Language: en-US To: 60357-done@debbugs.gnu.org From: Bruno Victal Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: 4.3 (++++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Content analysis details: (4.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.3 EMPTY_MESSAGE Message appears to have no textual parts 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject X-Debbugs-Envelope-To: 60357-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 3.3 (+++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Content analysis details: (3.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.3 EMPTY_MESSAGE Message appears to have no textual parts 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager ------------=_1675704962-27593-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 27 Dec 2022 16:11:18 +0000 Received: from localhost ([127.0.0.1]:56358 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pACXt-0005om-E7 for submit@debbugs.gnu.org; Tue, 27 Dec 2022 11:11:17 -0500 Received: from lists.gnu.org ([209.51.188.17]:39492) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pACXr-0005oe-GO for submit@debbugs.gnu.org; Tue, 27 Dec 2022 11:11:16 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pACXq-0000Y6-Uu for guix-patches@gnu.org; Tue, 27 Dec 2022 11:11:15 -0500 Received: from smtpm2.myservices.hosting ([185.26.105.233]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pACXp-0002Sb-Dt for guix-patches@gnu.org; Tue, 27 Dec 2022 11:11:14 -0500 Received: from mail1.netim.hosting (unknown [185.26.106.172]) by smtpm2.myservices.hosting (Postfix) with ESMTP id 0FDD620CB6 for ; Tue, 27 Dec 2022 17:10:58 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id 780A180096; Tue, 27 Dec 2022 17:10:58 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-1.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id w-pZ0kgWt-bV; Tue, 27 Dec 2022 17:10:57 +0100 (CET) Received: from guix-nuc.home.arpa (bl12-93-156.dsl.telepac.pt [85.245.93.156]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 9975F80093; Tue, 27 Dec 2022 17:10:57 +0100 (CET) From: mirai@makinata.eu To: guix-patches@gnu.org Subject: [PATCH] gnu: mpd: Add missing inputs. Date: Tue, 27 Dec 2022 16:10:49 +0000 Message-Id: <608863f38d5920d26d1d86e38e5de2ea1776d64c.1672157416.git.mirai@makinata.eu> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.26.105.233; envelope-from=mirai@makinata.eu; helo=smtpm2.myservices.hosting X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Bruno Victal X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) From: Bruno Victal Enable more features for MPD. * gnu/packages/mpd.scm (mpd)[inputs]: Add liburing, chromaprint, expat, libgme, libnfs, libopenmpt, libshout, pcre2, soxr, yajl and zziplib. --- gnu/packages/mpd.scm | 67 ++++++++++++++++++++++++++------------------ 1 file changed, 39 insertions(+), 28 deletions(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 63fb9bc974..0659257ede 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -49,6 +49,7 @@ (define-module (gnu packages mpd) #:use-module (gnu packages cdrom) #:use-module (gnu packages cmake) ;for MPD #:use-module (gnu packages cpp) + #:use-module (gnu packages file-systems) #:use-module (gnu packages freedesktop) ;elogind #:use-module (gnu packages gettext) #:use-module (gnu packages gnome) @@ -81,7 +82,8 @@ (define-module (gnu packages mpd) #:use-module (gnu packages tls) #:use-module (gnu packages video) #:use-module (gnu packages web) - #:use-module (gnu packages xiph)) + #:use-module (gnu packages xiph) + #:use-module (gnu packages xml)) (define-public libmpdclient (package @@ -144,41 +146,50 @@ (define-public mpd (string-append "_" all))) (substitute* "meson.build" (("systemd_dep,") "systemd_dep, _systemd_dep,"))))))) - (inputs (list ao - alsa-lib - avahi - boost - curl - elogind - ffmpeg - flac - fmt - glib - icu4c - ;; The LAME decoder comes from FFmpeg, but is added here so that - ;; configure picks up the LAME encoder. - lame - libid3tag - libmpdclient - libsamplerate - libsndfile - libvorbis - opus - pipewire-0.3 - pulseaudio - sqlite - zlib)) + (inputs (append + (if (target-linux?) (list liburing) '()) + (list ao + alsa-lib + avahi + boost + chromaprint + curl + elogind + expat + ffmpeg + flac + fmt + glib + icu4c + ;; The LAME decoder comes from FFmpeg, but is added here so that + ;; configure picks up the LAME encoder. + lame + libgme + libid3tag + libmpdclient + libnfs + libopenmpt + libsamplerate + libshout + libsndfile + libvorbis + opus + pcre2 + pipewire-0.3 + pulseaudio + soxr + sqlite + yajl + zlib + zziplib))) (native-inputs (list cmake pkg-config python-sphinx)) ;; Missing optional inputs: - ;; yajl ;; libcdio_paranoia ;; libmms ;; libadplug ;; libaudiofile ;; faad2 ;; fluidsynth - ;; libgme - ;; libshout ;; libmpg123 ;; libmodplug ;; libmpcdec base-commit: 8f93a1e01a879ae026678dd92c18e2a2a49be540 -- 2.38.1 ------------=_1675704962-27593-1--