GNU bug report logs - #64810
[PATCH 0/2] gnu: mympd: Update to 11.0.1.

Previous Next

Package: guix-patches;

Reported by: Bruno Victal <mirai <at> makinata.eu>

Date: Sun, 23 Jul 2023 20:05:01 UTC

Severity: normal

Tags: patch

Done: 宋文武 <iyzsong <at> envs.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 64810 in the body.
You can then email your comments to 64810 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#64810; Package guix-patches. (Sun, 23 Jul 2023 20:05:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Bruno Victal <mirai <at> makinata.eu>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 23 Jul 2023 20:05:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Bruno Victal <mirai <at> makinata.eu>
To: guix-patches <at> gnu.org
Cc: Bruno Victal <mirai <at> makinata.eu>
Subject: [PATCH 0/2] gnu: mympd: Update to 11.0.1.
Date: Sun, 23 Jul 2023 21:03:36 +0100
Bruno Victal (2):
  gnu: mympd: Update to 11.0.1.
  gnu: mympd: Enable tests.

 gnu/packages/mpd.scm | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)


base-commit: 80afaaf4e3851447c0f6e0adfd2e1f96f4d2973b
-- 
2.40.1





Information forwarded to guix-patches <at> gnu.org:
bug#64810; Package guix-patches. (Sun, 23 Jul 2023 20:07:02 GMT) Full text and rfc822 format available.

Message #8 received at 64810 <at> debbugs.gnu.org (full text, mbox):

From: Bruno Victal <mirai <at> makinata.eu>
To: 64810 <at> debbugs.gnu.org
Cc: Bruno Victal <mirai <at> makinata.eu>
Subject: [PATCH 1/2] gnu: mympd: Update to 11.0.1.
Date: Sun, 23 Jul 2023 21:06:25 +0100
* gnu/packages/mpd.scm (mympd): Update to 11.0.1.
---
 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 111150ce6b..3c00528a97 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.3")
+    (version "11.0.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -624,7 +624,7 @@ (define-public mympd
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1n8z3rscrw7k097q5z1d59mrryy7b8m0zdfhi767a1qpa121m8if"))))
+                "1i316942kkkyjzybxksgjzpriqhnmjcg58ppjsjck7yikkvdkxns"))))
     (build-system cmake-build-system)
     (arguments
      (list

base-commit: 80afaaf4e3851447c0f6e0adfd2e1f96f4d2973b
-- 
2.40.1





Information forwarded to guix-patches <at> gnu.org:
bug#64810; Package guix-patches. (Sun, 23 Jul 2023 20:43:01 GMT) Full text and rfc822 format available.

Message #11 received at 64810 <at> debbugs.gnu.org (full text, mbox):

From: Bruno Victal <mirai <at> makinata.eu>
To: 64810 <at> debbugs.gnu.org
Cc: Bruno Victal <mirai <at> makinata.eu>
Subject: [PATCH 2/2] gnu: mympd: Enable tests.
Date: Sun, 23 Jul 2023 21:06:26 +0100
Requires myMPD v11.0.0.

* gnu/packages/mpd.scm (mympd)[arguments]: Enable tests.
---
 gnu/packages/mpd.scm | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 3c00528a97..85b9277a40 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -629,8 +629,16 @@ (define-public mympd
     (arguments
      (list
       #:configure-flags
-      #~(list "-DMYMPD_STRIP_BINARY=OFF")  ; handled by 'strip phase
-      #:tests? #f)) ; no test target
+      #~(list "-DMYMPD_BUILD_TESTING=ON"
+              ;; Handled by 'strip' phase.
+              "-DMYMPD_STRIP_BINARY=OFF")
+      #: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))
     (inputs (list flac libid3tag lua openssl pcre2))
     (home-page "https://jcorporation.github.io/")
-- 
2.40.1





Information forwarded to guix-patches <at> gnu.org:
bug#64810; Package guix-patches. (Sun, 06 Aug 2023 15:46:01 GMT) Full text and rfc822 format available.

Message #14 received at 64810 <at> debbugs.gnu.org (full text, mbox):

From: Bruno Victal <mirai <at> makinata.eu>
To: 64810 <at> debbugs.gnu.org
Cc: Bruno Victal <mirai <at> makinata.eu>
Subject: [PATCH v2 1/2] gnu: mympd: Update to 11.0.2.
Date: Sun,  6 Aug 2023 16:44:42 +0100
* gnu/packages/mpd.scm (mympd): Update to 11.0.2.
---
 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 111150ce6b..66911fb682 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.3")
+    (version "11.0.2")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -624,7 +624,7 @@ (define-public mympd
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1n8z3rscrw7k097q5z1d59mrryy7b8m0zdfhi767a1qpa121m8if"))))
+                "0n6dyy6znzicm5v9mkcghm3lwi6zwysnpr0drvacqprr0r5l596a"))))
     (build-system cmake-build-system)
     (arguments
      (list

base-commit: c4b9f726e3a1889b92a4b14a2af1c25f10798469
-- 
2.40.1





Information forwarded to guix-patches <at> gnu.org:
bug#64810; Package guix-patches. (Sun, 06 Aug 2023 15:53:02 GMT) Full text and rfc822 format available.

Message #17 received at 64810 <at> debbugs.gnu.org (full text, mbox):

From: Bruno Victal <mirai <at> makinata.eu>
To: 64810 <at> debbugs.gnu.org
Cc: Bruno Victal <mirai <at> makinata.eu>
Subject: [PATCH v2 2/2] gnu: mympd: Enable tests.
Date: Sun,  6 Aug 2023 16:44:43 +0100
Requires myMPD v11.0.0.

* gnu/packages/mpd.scm (mympd)[arguments]: Enable tests.
---
 gnu/packages/mpd.scm | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 66911fb682..953269ce98 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -629,8 +629,16 @@ (define-public mympd
     (arguments
      (list
       #:configure-flags
-      #~(list "-DMYMPD_STRIP_BINARY=OFF")  ; handled by 'strip phase
-      #:tests? #f)) ; no test target
+      #~(list "-DMYMPD_BUILD_TESTING=ON"
+              ;; Handled by 'strip' phase.
+              "-DMYMPD_STRIP_BINARY=OFF")
+      #: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))
     (inputs (list flac libid3tag lua openssl pcre2))
     (home-page "https://jcorporation.github.io/")
-- 
2.40.1





Reply sent to 宋文武 <iyzsong <at> envs.net>:
You have taken responsibility. (Sun, 13 Aug 2023 08:05:03 GMT) Full text and rfc822 format available.

Notification sent to Bruno Victal <mirai <at> makinata.eu>:
bug acknowledged by developer. (Sun, 13 Aug 2023 08:05:03 GMT) Full text and rfc822 format available.

Message #22 received at 64810-done <at> debbugs.gnu.org (full text, mbox):

From: 宋文武 <iyzsong <at> envs.net>
To: Bruno Victal <mirai <at> makinata.eu>
Cc: 64810-done <at> debbugs.gnu.org
Subject: Re: bug#64810: [PATCH 0/2] gnu: mympd: Update to 11.0.1.
Date: Sun, 13 Aug 2023 16:04:26 +0800
Bruno Victal <mirai <at> makinata.eu> writes:

> Bruno Victal (2):
>   gnu: mympd: Update to 11.0.1.
>   gnu: mympd: Enable tests.

Pushed to master, thank you!




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 10 Sep 2023 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 283 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.