unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#65660] [PATCH 0/2] Update mympd and remove unused imports.
@ 2023-08-31 15:54 Bruno Victal
  2023-08-31 15:55 ` [bug#65660] [PATCH 1/2] gnu: mpd: Remove " Bruno Victal
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bruno Victal @ 2023-08-31 15:54 UTC (permalink / raw)
  To: 65660; +Cc: Bruno Victal

Passes 'make check-system TESTS=mympd'.

Bruno Victal (2):
  gnu: mpd: Remove unused imports.
  gnu: mympd: Update to 11.0.5.

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


base-commit: b51e45d3aaa8a85d39a8a4c3d18e8b57254aeaf2
-- 
2.40.1





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

* [bug#65660] [PATCH 1/2] gnu: mpd: Remove unused imports.
  2023-08-31 15:54 [bug#65660] [PATCH 0/2] Update mympd and remove unused imports Bruno Victal
@ 2023-08-31 15:55 ` Bruno Victal
  2023-08-31 15:55 ` [bug#65660] [PATCH 2/2] gnu: mympd: Update to 11.0.5 Bruno Victal
  2023-09-06  3:46 ` bug#65660: [PATCH 0/2] Update mympd and remove unused imports Maxim Cournoyer
  2 siblings, 0 replies; 4+ messages in thread
From: Bruno Victal @ 2023-08-31 15:55 UTC (permalink / raw)
  To: 65660; +Cc: Bruno Victal

Note:
cmake is a leftover from 709fd0e5e0a318c7272776efc6472487e8a28ddd.

* gnu/packages/mpd.scm: Remove unused imports.
---
 gnu/packages/mpd.scm | 2 --
 1 file changed, 2 deletions(-)

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 624febaa2a..496e90a71c 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -44,10 +44,8 @@ (define-module (gnu packages mpd)
   #:use-module (gnu packages avahi)
   #:use-module (gnu packages base)
   #:use-module (gnu packages bash)
-  #:use-module (gnu packages build-tools) ;meson-next
   #:use-module (gnu packages boost)
   #: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

base-commit: b51e45d3aaa8a85d39a8a4c3d18e8b57254aeaf2
-- 
2.40.1





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

* [bug#65660] [PATCH 2/2] gnu: mympd: Update to 11.0.5.
  2023-08-31 15:54 [bug#65660] [PATCH 0/2] Update mympd and remove unused imports Bruno Victal
  2023-08-31 15:55 ` [bug#65660] [PATCH 1/2] gnu: mpd: Remove " Bruno Victal
@ 2023-08-31 15:55 ` Bruno Victal
  2023-09-06  3:46 ` bug#65660: [PATCH 0/2] Update mympd and remove unused imports Maxim Cournoyer
  2 siblings, 0 replies; 4+ messages in thread
From: Bruno Victal @ 2023-08-31 15:55 UTC (permalink / raw)
  To: 65660; +Cc: Bruno Victal

* gnu/packages/mpd.scm (mympd): Update to 11.0.5.
---
 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 496e90a71c..d617dc014b 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -613,7 +613,7 @@ (define-public mpdevil
 (define-public mympd
   (package
     (name "mympd")
-    (version "11.0.4")
+    (version "11.0.5")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -622,7 +622,7 @@ (define-public mympd
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0ki9az71x35548mnl5assb0hgli3bvrbzv0fb5dfli4q5i1z8fmq"))))
+                "0b3skvam3kb14w2afzxl1pfvj4cfanr45nyv93zpxafmxgghxqcv"))))
     (build-system cmake-build-system)
     (arguments
      (list
-- 
2.40.1





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

* bug#65660: [PATCH 0/2] Update mympd and remove unused imports.
  2023-08-31 15:54 [bug#65660] [PATCH 0/2] Update mympd and remove unused imports Bruno Victal
  2023-08-31 15:55 ` [bug#65660] [PATCH 1/2] gnu: mpd: Remove " Bruno Victal
  2023-08-31 15:55 ` [bug#65660] [PATCH 2/2] gnu: mympd: Update to 11.0.5 Bruno Victal
@ 2023-09-06  3:46 ` Maxim Cournoyer
  2 siblings, 0 replies; 4+ messages in thread
From: Maxim Cournoyer @ 2023-09-06  3:46 UTC (permalink / raw)
  To: Bruno Victal; +Cc: 65660-done

Hi,

Bruno Victal <mirai@makinata.eu> writes:

> Passes 'make check-system TESTS=mympd'.
>
> Bruno Victal (2):
>   gnu: mpd: Remove unused imports.
>   gnu: mympd: Update to 11.0.5.

Installed!

-- 
Thanks,
Maxim




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

end of thread, other threads:[~2023-09-06  3:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-31 15:54 [bug#65660] [PATCH 0/2] Update mympd and remove unused imports Bruno Victal
2023-08-31 15:55 ` [bug#65660] [PATCH 1/2] gnu: mpd: Remove " Bruno Victal
2023-08-31 15:55 ` [bug#65660] [PATCH 2/2] gnu: mympd: Update to 11.0.5 Bruno Victal
2023-09-06  3:46 ` bug#65660: [PATCH 0/2] Update mympd and remove unused imports Maxim Cournoyer

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).