From unknown Sat Aug 16 22:47:05 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63978] [PATCH] gnu: mympd: Update to 10.3.3. Resent-From: Bruno Victal Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 09 Jun 2023 15:05:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 63978 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 63978@debbugs.gnu.org Cc: Bruno Victal X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.168632308718488 (code B ref -1); Fri, 09 Jun 2023 15:05:02 +0000 Received: (at submit) by debbugs.gnu.org; 9 Jun 2023 15:04:47 +0000 Received: from localhost ([127.0.0.1]:60076 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q7dfS-0004o7-JG for submit@debbugs.gnu.org; Fri, 09 Jun 2023 11:04:46 -0400 Received: from lists.gnu.org ([209.51.188.17]:55358) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q7dfP-0004nz-UB for submit@debbugs.gnu.org; Fri, 09 Jun 2023 11:04:44 -0400 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 1q7dfM-0006xz-D8 for guix-patches@gnu.org; Fri, 09 Jun 2023 11:04:40 -0400 Received: from smtpm3.myservices.hosting ([185.26.105.234]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q7dfK-0003Si-Ma for guix-patches@gnu.org; Fri, 09 Jun 2023 11:04:40 -0400 Received: from mail1.netim.hosting (unknown [185.26.106.173]) by smtpm3.myservices.hosting (Postfix) with ESMTP id 324722106A for ; Fri, 9 Jun 2023 17:04:27 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id A4538800A4; Fri, 9 Jun 2023 17:04:27 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-2.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id nWMOXfuU9L7z; Fri, 9 Jun 2023 17:04:27 +0200 (CEST) Received: from guix-nuc.home.arpa (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 9BA6A800A1; Fri, 9 Jun 2023 17:04:26 +0200 (CEST) From: Bruno Victal Date: Fri, 9 Jun 2023 16:04:20 +0100 Message-Id: X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.26.105.234; envelope-from=mirai@makinata.eu; helo=smtpm3.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, T_SCC_BODY_TEXT_LINE=-0.01 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 (--) * gnu/packages/mpd.scm (mympd): Update to 10.3.3. : Honor 'strip phase. : Add missing pkg-config. : Reword it. --- gnu/packages/mpd.scm | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 9884bc0487..111150ce6b 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -615,7 +615,7 @@ (define-public mpdevil (define-public mympd (package (name "mympd") - (version "10.3.2") + (version "10.3.3") (source (origin (method git-fetch) (uri (git-reference @@ -624,14 +624,17 @@ (define-public mympd (file-name (git-file-name name version)) (sha256 (base32 - "04mpj0qikdg7nqp8rvwr83bx3544qy2ha0sjj4cnpjknka6p8xan")))) + "1n8z3rscrw7k097q5z1d59mrryy7b8m0zdfhi767a1qpa121m8if")))) (build-system cmake-build-system) (arguments - (list #:tests? #f)) ; no test target - (native-inputs (list jq perl)) + (list + #:configure-flags + #~(list "-DMYMPD_STRIP_BINARY=OFF") ; handled by 'strip phase + #:tests? #f)) ; no test target + (native-inputs (list jq perl pkg-config)) (inputs (list flac libid3tag lua openssl pcre2)) (home-page "https://jcorporation.github.io/") (synopsis "Web-based MPD client") - (description "MyMPD is a mobile-friendly web client for the MPD music -player daemon.") + (description "MyMPD is a mobile-friendly web client for the Music Player +Daemon (MPD).") (license license:gpl3+))) base-commit: c348b1be3891e6eb47bbdd9fc1587aba2b6ab0b7 -- 2.39.2 From unknown Sat Aug 16 22:47:05 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: Bruno Victal Subject: bug#63978: closed (Re: bug#63978: [PATCH] gnu: mympd: Update to 10.3.3.) Message-ID: References: <87a5wfwcl2.fsf@gnu.org> X-Gnu-PR-Message: they-closed 63978 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 63978@debbugs.gnu.org Date: Sat, 01 Jul 2023 21:24:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1688246643-24777-1" This is a multi-part message in MIME format... ------------=_1688246643-24777-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #63978: [PATCH] gnu: mympd: Update to 10.3.3. 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 63978@debbugs.gnu.org. --=20 63978: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D63978 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1688246643-24777-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 63978-done) by debbugs.gnu.org; 1 Jul 2023 21:23:32 +0000 Received: from localhost ([127.0.0.1]:58813 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qFi43-0006Qm-Ly for submit@debbugs.gnu.org; Sat, 01 Jul 2023 17:23:31 -0400 Received: from eggs.gnu.org ([209.51.188.92]:40034) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qFi41-0006QY-0p for 63978-done@debbugs.gnu.org; Sat, 01 Jul 2023 17:23:30 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qFi3v-00020u-5R; Sat, 01 Jul 2023 17:23:23 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=sIguFU1EssQJqctq/p3IUYNmvwELR4TLuyGOQvgUJio=; b=MJG+hEkKjJ4+7TtXIXF9 qg0rCregu9yoH6AVE59hyq+Ub6CAAP6PCVYeZGYQc7RdQeMnJ2nceZLAN1aOmS9YPxn6YecYe5oL/ UUAKVq0iDt9jVceyq74MwklvvUC8iTyRVk+5DDk3Zgl+qc6tlnpc7NvizQD4DaN7QwN/QOXL7iu9d rzXOQ32v0RpUsV+WzEvIeleHU2rmPA/GUnO1PijJnbN9cpXSAgrW54tYLG9fT0Y817NweiR/u0EtB 62FzM/Yfmgpfdo5OjqKIUlWQVMTyf3K15O9A5pRkavbIm37B79A/gP49SlBdr0LxCWS1kdVUwMSv/ MUqYTRbJXUAG1g==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201] helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qFi3u-0006ex-Pa; Sat, 01 Jul 2023 17:23:22 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Bruno Victal Subject: Re: bug#63978: [PATCH] gnu: mympd: Update to 10.3.3. References: Date: Sat, 01 Jul 2023 23:23:21 +0200 In-Reply-To: (Bruno Victal's message of "Fri, 9 Jun 2023 16:04:20 +0100") Message-ID: <87a5wfwcl2.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 63978-done Cc: 63978-done@debbugs.gnu.org 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 (---) Hi, Bruno Victal skribis: > * gnu/packages/mpd.scm (mympd): Update to 10.3.3. > : Honor 'strip phase. > : Add missing pkg-config. > : Reword it. Applied, thanks! Ludo=E2=80=99. ------------=_1688246643-24777-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Jun 2023 15:04:47 +0000 Received: from localhost ([127.0.0.1]:60076 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q7dfS-0004o7-JG for submit@debbugs.gnu.org; Fri, 09 Jun 2023 11:04:46 -0400 Received: from lists.gnu.org ([209.51.188.17]:55358) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q7dfP-0004nz-UB for submit@debbugs.gnu.org; Fri, 09 Jun 2023 11:04:44 -0400 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 1q7dfM-0006xz-D8 for guix-patches@gnu.org; Fri, 09 Jun 2023 11:04:40 -0400 Received: from smtpm3.myservices.hosting ([185.26.105.234]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q7dfK-0003Si-Ma for guix-patches@gnu.org; Fri, 09 Jun 2023 11:04:40 -0400 Received: from mail1.netim.hosting (unknown [185.26.106.173]) by smtpm3.myservices.hosting (Postfix) with ESMTP id 324722106A for ; Fri, 9 Jun 2023 17:04:27 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id A4538800A4; Fri, 9 Jun 2023 17:04:27 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mail1.netim.hosting Received: from mail1.netim.hosting ([127.0.0.1]) by localhost (mail1-2.netim.hosting [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id nWMOXfuU9L7z; Fri, 9 Jun 2023 17:04:27 +0200 (CEST) Received: from guix-nuc.home.arpa (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 9BA6A800A1; Fri, 9 Jun 2023 17:04:26 +0200 (CEST) From: Bruno Victal To: guix-patches@gnu.org Subject: [PATCH] gnu: mympd: Update to 10.3.3. Date: Fri, 9 Jun 2023 16:04:20 +0100 Message-Id: X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.26.105.234; envelope-from=mirai@makinata.eu; helo=smtpm3.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, T_SCC_BODY_TEXT_LINE=-0.01 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 (--) * gnu/packages/mpd.scm (mympd): Update to 10.3.3. : Honor 'strip phase. : Add missing pkg-config. : Reword it. --- gnu/packages/mpd.scm | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 9884bc0487..111150ce6b 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -615,7 +615,7 @@ (define-public mpdevil (define-public mympd (package (name "mympd") - (version "10.3.2") + (version "10.3.3") (source (origin (method git-fetch) (uri (git-reference @@ -624,14 +624,17 @@ (define-public mympd (file-name (git-file-name name version)) (sha256 (base32 - "04mpj0qikdg7nqp8rvwr83bx3544qy2ha0sjj4cnpjknka6p8xan")))) + "1n8z3rscrw7k097q5z1d59mrryy7b8m0zdfhi767a1qpa121m8if")))) (build-system cmake-build-system) (arguments - (list #:tests? #f)) ; no test target - (native-inputs (list jq perl)) + (list + #:configure-flags + #~(list "-DMYMPD_STRIP_BINARY=OFF") ; handled by 'strip phase + #:tests? #f)) ; no test target + (native-inputs (list jq perl pkg-config)) (inputs (list flac libid3tag lua openssl pcre2)) (home-page "https://jcorporation.github.io/") (synopsis "Web-based MPD client") - (description "MyMPD is a mobile-friendly web client for the MPD music -player daemon.") + (description "MyMPD is a mobile-friendly web client for the Music Player +Daemon (MPD).") (license license:gpl3+))) base-commit: c348b1be3891e6eb47bbdd9fc1587aba2b6ab0b7 -- 2.39.2 ------------=_1688246643-24777-1--