unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#64810] [PATCH 0/2] gnu: mympd: Update to 11.0.1.
@ 2023-07-23 20:03 Bruno Victal
  2023-07-23 20:06 ` [bug#64810] [PATCH 1/2] " Bruno Victal
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Bruno Victal @ 2023-07-23 20:03 UTC (permalink / raw)
  To: 64810; +Cc: Bruno Victal

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





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#64810] [PATCH 1/2] gnu: mympd: Update to 11.0.1.
  2023-07-23 20:03 [bug#64810] [PATCH 0/2] gnu: mympd: Update to 11.0.1 Bruno Victal
@ 2023-07-23 20:06 ` Bruno Victal
  2023-07-23 20:06 ` [bug#64810] [PATCH 2/2] gnu: mympd: Enable tests Bruno Victal
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Bruno Victal @ 2023-07-23 20:06 UTC (permalink / raw)
  To: 64810; +Cc: Bruno Victal

* 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





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#64810] [PATCH 2/2] gnu: mympd: Enable tests.
  2023-07-23 20:03 [bug#64810] [PATCH 0/2] gnu: mympd: Update to 11.0.1 Bruno Victal
  2023-07-23 20:06 ` [bug#64810] [PATCH 1/2] " Bruno Victal
@ 2023-07-23 20:06 ` Bruno Victal
  2023-08-06 15:44 ` [bug#64810] [PATCH v2 1/2] gnu: mympd: Update to 11.0.2 Bruno Victal
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Bruno Victal @ 2023-07-23 20:06 UTC (permalink / raw)
  To: 64810; +Cc: Bruno Victal

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





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#64810] [PATCH v2 1/2] gnu: mympd: Update to 11.0.2.
  2023-07-23 20:03 [bug#64810] [PATCH 0/2] gnu: mympd: Update to 11.0.1 Bruno Victal
  2023-07-23 20:06 ` [bug#64810] [PATCH 1/2] " Bruno Victal
  2023-07-23 20:06 ` [bug#64810] [PATCH 2/2] gnu: mympd: Enable tests Bruno Victal
@ 2023-08-06 15:44 ` Bruno Victal
  2023-08-06 15:44 ` [bug#64810] [PATCH v2 2/2] gnu: mympd: Enable tests Bruno Victal
  2023-08-13  8:04 ` bug#64810: [PATCH 0/2] gnu: mympd: Update to 11.0.1 宋文武 via Guix-patches via
  4 siblings, 0 replies; 6+ messages in thread
From: Bruno Victal @ 2023-08-06 15:44 UTC (permalink / raw)
  To: 64810; +Cc: Bruno Victal

* 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





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#64810] [PATCH v2 2/2] gnu: mympd: Enable tests.
  2023-07-23 20:03 [bug#64810] [PATCH 0/2] gnu: mympd: Update to 11.0.1 Bruno Victal
                   ` (2 preceding siblings ...)
  2023-08-06 15:44 ` [bug#64810] [PATCH v2 1/2] gnu: mympd: Update to 11.0.2 Bruno Victal
@ 2023-08-06 15:44 ` Bruno Victal
  2023-08-13  8:04 ` bug#64810: [PATCH 0/2] gnu: mympd: Update to 11.0.1 宋文武 via Guix-patches via
  4 siblings, 0 replies; 6+ messages in thread
From: Bruno Victal @ 2023-08-06 15:44 UTC (permalink / raw)
  To: 64810; +Cc: Bruno Victal

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





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* bug#64810: [PATCH 0/2] gnu: mympd: Update to 11.0.1.
  2023-07-23 20:03 [bug#64810] [PATCH 0/2] gnu: mympd: Update to 11.0.1 Bruno Victal
                   ` (3 preceding siblings ...)
  2023-08-06 15:44 ` [bug#64810] [PATCH v2 2/2] gnu: mympd: Enable tests Bruno Victal
@ 2023-08-13  8:04 ` 宋文武 via Guix-patches via
  4 siblings, 0 replies; 6+ messages in thread
From: 宋文武 via Guix-patches via @ 2023-08-13  8:04 UTC (permalink / raw)
  To: Bruno Victal; +Cc: 64810-done

Bruno Victal <mirai@makinata.eu> writes:

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

Pushed to master, thank you!




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-08-13  8:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-23 20:03 [bug#64810] [PATCH 0/2] gnu: mympd: Update to 11.0.1 Bruno Victal
2023-07-23 20:06 ` [bug#64810] [PATCH 1/2] " Bruno Victal
2023-07-23 20:06 ` [bug#64810] [PATCH 2/2] gnu: mympd: Enable tests Bruno Victal
2023-08-06 15:44 ` [bug#64810] [PATCH v2 1/2] gnu: mympd: Update to 11.0.2 Bruno Victal
2023-08-06 15:44 ` [bug#64810] [PATCH v2 2/2] gnu: mympd: Enable tests Bruno Victal
2023-08-13  8:04 ` bug#64810: [PATCH 0/2] gnu: mympd: Update to 11.0.1 宋文武 via Guix-patches via

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).