From debbugs-submit-bounces@debbugs.gnu.org Sat Nov 11 11:47:19 2023 Received: (at submit) by debbugs.gnu.org; 11 Nov 2023 16:47:19 +0000 Received: from localhost ([127.0.0.1]:54382 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r1r8g-0006DE-OC for submit@debbugs.gnu.org; Sat, 11 Nov 2023 11:47:19 -0500 Received: from lists.gnu.org ([2001:470:142::17]:41644) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r1r8f-0006Cx-6d for submit@debbugs.gnu.org; Sat, 11 Nov 2023 11:47:17 -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 1r1r7q-0005xs-IY for guix-patches@gnu.org; Sat, 11 Nov 2023 11:46:26 -0500 Received: from smtpmciv3.myservices.hosting ([185.26.107.239]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r1r7o-0006Sn-P5 for guix-patches@gnu.org; Sat, 11 Nov 2023 11:46:26 -0500 Received: from mail1.netim.hosting (unknown [185.26.106.173]) by smtpmciv3.myservices.hosting (Postfix) with ESMTP id 6712920951 for ; Sat, 11 Nov 2023 17:46:14 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id C18F480060; Sat, 11 Nov 2023 17:46:07 +0100 (CET) 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 fOgylwKLqO_y; Sat, 11 Nov 2023 17:46:07 +0100 (CET) Received: from guix-nuc.home.arpa (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 3C0F48005B; Sat, 11 Nov 2023 17:46:07 +0100 (CET) From: Bruno Victal To: guix-patches@gnu.org Subject: [PATCH] gnu: mympd: Update to 13.0.4. Date: Sat, 11 Nov 2023 16:45:41 +0000 Message-ID: X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.26.107.239; envelope-from=mirai@makinata.eu; helo=smtpmciv3.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.0 (+) 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: -0.0 (/) * gnu/packages/mpd.scm (mympd): Update to 13.0.4. [native-inputs]: Add jekyll. [outputs]: Add 'doc. [arguments]<#:configure-flags>: Install HTML documentation. Set correct value for localstatedir. <#:phases>: Add 'move-doc. Change-Id: Icadf6c2268a1ecbe928c3ba7ff5157b139a8b1df --- gnu/packages/mpd.scm | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 0e762144a1..e4a36de5f1 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -57,6 +57,7 @@ (define-module (gnu packages mpd) #:use-module (gnu packages libusb) #:use-module (gnu packages lua) #:use-module (gnu packages readline) + #:use-module (gnu packages ruby) #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages curl) @@ -622,7 +623,7 @@ (define-public mpdevil (define-public mympd (package (name "mympd") - (version "12.1.1") + (version "13.0.4") (source (origin (method git-fetch) (uri (git-reference @@ -631,22 +632,29 @@ (define-public mympd (file-name (git-file-name name version)) (sha256 (base32 - "1bal31xmdmq46bi0qmia07sqcwy695vcz5y5hxwkz71rcfywbsf9")))) + "1jlmpjs4a2sr0kxqp4crnq9jzagdmn5ggdd8x44wl1cdw38glrfn")))) + (outputs '("out" "doc")) (build-system cmake-build-system) (arguments (list #:configure-flags - #~(list "-DMYMPD_BUILD_TESTING=ON" - ;; Handled by 'strip' phase. - "-DMYMPD_STRIP_BINARY=OFF") + #~(list "-DCMAKE_INSTALL_LOCALSTATEDIR=/var" + "-DMYMPD_BUILD_TESTING=ON" + "-DMYMPD_DOC_HTML=ON") #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? ;; The following test requires network connectivity. - (invoke "ctest" "--exclude-regex" "test_http_client"))))))) - (native-inputs (list jq perl pkg-config)) + (invoke "ctest" "--exclude-regex" "test_http_client")))) + (add-after 'install 'move-doc + (lambda _ + (let ((old (string-append #$output "/share/doc")) + (new (string-append #$output:doc "/share/doc"))) + (mkdir-p (dirname new)) + (rename-file old new))))))) + (native-inputs (list jekyll jq perl pkg-config)) (inputs (list flac libid3tag lua openssl pcre2)) (home-page "https://jcorporation.github.io/") (synopsis "Web-based MPD client") base-commit: af6105afc67a15a491a0a4fd18a28c9f801a0b94 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 20 12:34:17 2023 Received: (at 67110) by debbugs.gnu.org; 20 Nov 2023 17:34:17 +0000 Received: from localhost ([127.0.0.1]:54423 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r58A5-0000dQ-1r for submit@debbugs.gnu.org; Mon, 20 Nov 2023 12:34:17 -0500 Received: from smtpmciv4.myservices.hosting ([185.26.107.240]:32922) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r58A0-0000dF-T8 for 67110@debbugs.gnu.org; Mon, 20 Nov 2023 12:34:15 -0500 Received: from mail1.netim.hosting (unknown [185.26.106.173]) by smtpmciv4.myservices.hosting (Postfix) with ESMTP id 3097D20550 for <67110@debbugs.gnu.org>; Mon, 20 Nov 2023 18:34:08 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail1.netim.hosting (Postfix) with ESMTP id 94A4C80097; Mon, 20 Nov 2023 18:34:08 +0100 (CET) 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 7XJSD29hVWwk; Mon, 20 Nov 2023 18:34:08 +0100 (CET) Received: from guix-nuc.home.arpa (unknown [10.192.1.83]) (Authenticated sender: lumen@makinata.eu) by mail1.netim.hosting (Postfix) with ESMTPSA id 0D22980095; Mon, 20 Nov 2023 18:34:07 +0100 (CET) From: Bruno Victal To: 67110@debbugs.gnu.org Subject: [PATCH v2] gnu: mympd: Update to 13.0.5. Date: Mon, 20 Nov 2023 17:33:08 +0000 Message-ID: <6fef32a0128bdd36b2f4a18234f98a17e3e73cb5.1700501588.git.mirai@makinata.eu> X-Mailer: git-send-email 2.41.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 67110 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: -1.0 (-) * gnu/packages/mpd.scm (mympd): Update to 13.0.5. [native-inputs]: Add jekyll. [outputs]: Add 'doc. [arguments]<#:configure-flags>: Install HTML documentation. Set correct value for localstatedir. <#:phases>: Add 'move-doc. Change-Id: I0f1ab4295b7bc03876ad1bbeff6154b4da6adc9a --- gnu/packages/mpd.scm | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 0e762144a1..e59397ea3a 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -57,6 +57,7 @@ (define-module (gnu packages mpd) #:use-module (gnu packages libusb) #:use-module (gnu packages lua) #:use-module (gnu packages readline) + #:use-module (gnu packages ruby) #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages curl) @@ -622,7 +623,7 @@ (define-public mpdevil (define-public mympd (package (name "mympd") - (version "12.1.1") + (version "13.0.5") (source (origin (method git-fetch) (uri (git-reference @@ -631,22 +632,29 @@ (define-public mympd (file-name (git-file-name name version)) (sha256 (base32 - "1bal31xmdmq46bi0qmia07sqcwy695vcz5y5hxwkz71rcfywbsf9")))) + "1ly3iw4irybfxyafgrldldwc28a879wwnd1pg32m2sgrwyhr0czm")))) + (outputs '("out" "doc")) (build-system cmake-build-system) (arguments (list #:configure-flags - #~(list "-DMYMPD_BUILD_TESTING=ON" - ;; Handled by 'strip' phase. - "-DMYMPD_STRIP_BINARY=OFF") + #~(list "-DCMAKE_INSTALL_LOCALSTATEDIR=/var" + "-DMYMPD_BUILD_TESTING=ON" + "-DMYMPD_DOC_HTML=ON") #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? ;; The following test requires network connectivity. - (invoke "ctest" "--exclude-regex" "test_http_client"))))))) - (native-inputs (list jq perl pkg-config)) + (invoke "ctest" "--exclude-regex" "test_http_client")))) + (add-after 'install 'move-doc + (lambda _ + (let ((old (string-append #$output "/share/doc")) + (new (string-append #$output:doc "/share/doc"))) + (mkdir-p (dirname new)) + (rename-file old new))))))) + (native-inputs (list jekyll jq perl pkg-config)) (inputs (list flac libid3tag lua openssl pcre2)) (home-page "https://jcorporation.github.io/") (synopsis "Web-based MPD client") base-commit: c07a5f050f67fa9054e93479cdda2f298c567460 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 23 09:43:44 2023 Received: (at submit) by debbugs.gnu.org; 23 Nov 2023 14:43:44 +0000 Received: from localhost ([127.0.0.1]:32966 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r6Avg-0006ll-HQ for submit@debbugs.gnu.org; Thu, 23 Nov 2023 09:43:44 -0500 Received: from lists.gnu.org ([2001:470:142::17]:34670) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r6Avf-0006lM-Dt for submit@debbugs.gnu.org; Thu, 23 Nov 2023 09:43:43 -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 1r6AvS-0003NX-Vf for guix-patches@gnu.org; Thu, 23 Nov 2023 09:43:30 -0500 Received: from mira.cbaines.net ([212.71.252.8]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1r6AvR-0004dP-Gc for guix-patches@gnu.org; Thu, 23 Nov 2023 09:43:30 -0500 Received: from localhost (unknown [217.155.61.229]) by mira.cbaines.net (Postfix) with ESMTPSA id 3EB6627BBE2; Thu, 23 Nov 2023 14:43:28 +0000 (GMT) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 427f4e4e; Thu, 23 Nov 2023 14:43:26 +0000 (UTC) References: <6fef32a0128bdd36b2f4a18234f98a17e3e73cb5.1700501588.git.mirai@makinata.eu> User-agent: mu4e 1.10.7; emacs 29.1 From: Christopher Baines To: Bruno Victal Subject: Re: [bug#67110] [PATCH v2] gnu: mympd: Update to 13.0.5. Date: Thu, 23 Nov 2023 14:35:42 +0000 In-reply-to: <6fef32a0128bdd36b2f4a18234f98a17e3e73cb5.1700501588.git.mirai@makinata.eu> Message-ID: <877cm8v8c3.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Received-SPF: pass client-ip=212.71.252.8; envelope-from=mail@cbaines.net; helo=mira.cbaines.net 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_PASS=-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: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: guix-patches@gnu.org, 67110-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: -0.1 (/) --=-=-= Content-Type: text/plain Bruno Victal writes: > * gnu/packages/mpd.scm (mympd): Update to 13.0.5. > [native-inputs]: Add jekyll. > [outputs]: Add 'doc. > [arguments]<#:configure-flags>: Install HTML documentation. Set correct value > for localstatedir. > <#:phases>: Add 'move-doc. > > Change-Id: I0f1ab4295b7bc03876ad1bbeff6154b4da6adc9a > --- > gnu/packages/mpd.scm | 22 +++++++++++++++------- > 1 file changed, 15 insertions(+), 7 deletions(-) Thanks for the patch, I've pushed it to master as dbc02656cf4804821e68d655fc871e2365150f43. It would be good to record in the commit message the motivation for changes like splitting the doc stuff in to a separate output. I had a look at the doc output is larger than the main output, so maybe that's justification enough. Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmVfZQxfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XeMAg/+MBjbBj+xgxuKVWrsqM79Nm3HMh3gbISn GU4Vci28FXP4T6OwzD5cBUpY7VPRS8G76TSdaorF2syrIenUtoE31DAD7lBajjdT LY0bpn74Sq4ls1InoRf1tHa7cAkQWB0TcBUgUT/2UOCym7tfYyboiFRGDdDAYIxf F7P5Cztjys7cRj+nWuJhJiPBpo4/CyG9nZdKKNNx4TIXhkbZzmgm8hNMnmg3YtEP RlK/KwVSzUPDJxkMER0HCPxHTsk2BXOlM6ej2JcDfQsOLb0XLvlbItsXazuok0qt s8hj4xixyoluuS5dok2D/Bf3Z2XpseU5PBg6GZ6yJmINfjHOEoKMhaXjvO0eFdz5 dqOXoVG9BzigQR3AIWxFqZQJe9u6/RgPqvRZhdusZHO7vCjVYrFontztaxr+PXcb qd1CvPdcG+GtOdm4y4pGpCntAwNXHOhL6DkWzh3XjDkqkDrb/s6YII3EIJ1c18IR 2T5FBAlgz19L7NFYoa7V55Z5fubAUu/Xo43KzKcuxI/G14++1yW7nNQ/Zp1KSP0s EILPWaKhuwaplEzRFRTJLPqc5pSpN8HDzq6FFCWvqYNd6EOjQj2vGbcfXy7yTlGH XOXGv9OoP5V9BmGuReFxYhf1KSFqgBUfwt2HdXLYEE4t9FbCZoN0HYfwbJHwATsw i/TlbsZXkI0= =g0Uh -----END PGP SIGNATURE----- --=-=-=-- From unknown Sun Jul 27 00:54:41 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 22 Dec 2023 12:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator