all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#60357] [PATCH] gnu: mpd: Add missing inputs.
@ 2022-12-27 16:10 mirai
  2023-01-17  3:00 ` Bruno Victal
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: mirai @ 2022-12-27 16:10 UTC (permalink / raw)
  To: 60357; +Cc: Bruno Victal

From: Bruno Victal <mirai@makinata.eu>

Enable more features for MPD.

* gnu/packages/mpd.scm (mpd)[inputs]: Add liburing, chromaprint, expat,
libgme, libnfs, libopenmpt, libshout, pcre2, soxr, yajl and zziplib.
---
 gnu/packages/mpd.scm | 67 ++++++++++++++++++++++++++------------------
 1 file changed, 39 insertions(+), 28 deletions(-)

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 63fb9bc974..0659257ede 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -49,6 +49,7 @@ (define-module (gnu packages mpd)
   #: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
   #:use-module (gnu packages gettext)
   #:use-module (gnu packages gnome)
@@ -81,7 +82,8 @@ (define-module (gnu packages mpd)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages video)
   #:use-module (gnu packages web)
-  #:use-module (gnu packages xiph))
+  #:use-module (gnu packages xiph)
+  #:use-module (gnu packages xml))
 
 (define-public libmpdclient
   (package
@@ -144,41 +146,50 @@ (define-public mpd
                  (string-append "_" all)))
               (substitute* "meson.build"
                 (("systemd_dep,") "systemd_dep, _systemd_dep,")))))))
-    (inputs (list ao
-                  alsa-lib
-                  avahi
-                  boost
-                  curl
-                  elogind
-                  ffmpeg
-                  flac
-                  fmt
-                  glib
-                  icu4c
-                  ;; The LAME decoder comes from FFmpeg, but is added here so that
-                  ;; configure picks up the LAME encoder.
-                  lame
-                  libid3tag
-                  libmpdclient
-                  libsamplerate
-                  libsndfile
-                  libvorbis
-                  opus
-                  pipewire-0.3
-                  pulseaudio
-                  sqlite
-                  zlib))
+    (inputs (append
+             (if (target-linux?) (list liburing) '())
+             (list ao
+                   alsa-lib
+                   avahi
+                   boost
+                   chromaprint
+                   curl
+                   elogind
+                   expat
+                   ffmpeg
+                   flac
+                   fmt
+                   glib
+                   icu4c
+                   ;; The LAME decoder comes from FFmpeg, but is added here so that
+                   ;; configure picks up the LAME encoder.
+                   lame
+                   libgme
+                   libid3tag
+                   libmpdclient
+                   libnfs
+                   libopenmpt
+                   libsamplerate
+                   libshout
+                   libsndfile
+                   libvorbis
+                   opus
+                   pcre2
+                   pipewire-0.3
+                   pulseaudio
+                   soxr
+                   sqlite
+                   yajl
+                   zlib
+                   zziplib)))
     (native-inputs (list cmake pkg-config python-sphinx))
     ;; Missing optional inputs:
-    ;;   yajl
     ;;   libcdio_paranoia
     ;;   libmms
     ;;   libadplug
     ;;   libaudiofile
     ;;   faad2
     ;;   fluidsynth
-    ;;   libgme
-    ;;   libshout
     ;;   libmpg123
     ;;   libmodplug
     ;;   libmpcdec

base-commit: 8f93a1e01a879ae026678dd92c18e2a2a49be540
-- 
2.38.1





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

* [bug#60357] [PATCH] gnu: mpd: Add missing inputs.
  2022-12-27 16:10 [bug#60357] [PATCH] gnu: mpd: Add missing inputs mirai
@ 2023-01-17  3:00 ` Bruno Victal
  2023-01-23 20:04 ` [bug#60357] [PATCH v2 1/2] " Bruno Victal
  2023-02-06 17:35 ` bug#60357: (no subject) Bruno Victal
  2 siblings, 0 replies; 6+ messages in thread
From: Bruno Victal @ 2023-01-17  3:00 UTC (permalink / raw)
  To: 60357

a friendly bump




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

* [bug#60357] [PATCH v2 1/2] gnu: mpd: Add missing inputs.
  2022-12-27 16:10 [bug#60357] [PATCH] gnu: mpd: Add missing inputs mirai
  2023-01-17  3:00 ` Bruno Victal
@ 2023-01-23 20:04 ` Bruno Victal
  2023-01-23 20:04   ` [bug#60357] [PATCH v2 2/2] gnu: mpd: Update to 0.23.12 Bruno Victal
  2023-02-06 17:35 ` bug#60357: (no subject) Bruno Victal
  2 siblings, 1 reply; 6+ messages in thread
From: Bruno Victal @ 2023-01-23 20:04 UTC (permalink / raw)
  To: 60357; +Cc: Bruno Victal

Enable more features for MPD.

* gnu/packages/mpd.scm (mpd)[inputs]: Add liburing, chromaprint, expat,
libgme, libnfs, libopenmpt, libshout, pcre2, soxr, yajl and zziplib.
---
 gnu/packages/mpd.scm | 67 ++++++++++++++++++++++++++------------------
 1 file changed, 39 insertions(+), 28 deletions(-)

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 63163e09dc..fc52f377a8 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -49,6 +49,7 @@ (define-module (gnu packages mpd)
   #: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
   #:use-module (gnu packages gettext)
   #:use-module (gnu packages gnome)
@@ -81,7 +82,8 @@ (define-module (gnu packages mpd)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages video)
   #:use-module (gnu packages web)
-  #:use-module (gnu packages xiph))
+  #:use-module (gnu packages xiph)
+  #:use-module (gnu packages xml))
 
 (define-public libmpdclient
   (package
@@ -144,41 +146,50 @@ (define-public mpd
                  (string-append "_" all)))
               (substitute* "meson.build"
                 (("systemd_dep,") "systemd_dep, _systemd_dep,")))))))
-    (inputs (list ao
-                  alsa-lib
-                  avahi
-                  boost
-                  curl
-                  elogind
-                  ffmpeg
-                  flac
-                  fmt
-                  glib
-                  icu4c
-                  ;; The LAME decoder comes from FFmpeg, but is added here so that
-                  ;; configure picks up the LAME encoder.
-                  lame
-                  libid3tag
-                  libmpdclient
-                  libsamplerate
-                  libsndfile
-                  libvorbis
-                  opus
-                  pipewire
-                  pulseaudio
-                  sqlite
-                  zlib))
+    (inputs (append
+             (if (target-linux?) (list liburing) '())
+             (list ao
+                   alsa-lib
+                   avahi
+                   boost
+                   chromaprint
+                   curl
+                   elogind
+                   expat
+                   ffmpeg
+                   flac
+                   fmt
+                   glib
+                   icu4c
+                   ;; The LAME decoder comes from FFmpeg, but is added here so that
+                   ;; configure picks up the LAME encoder.
+                   lame
+                   libgme
+                   libid3tag
+                   libmpdclient
+                   libnfs
+                   libopenmpt
+                   libsamplerate
+                   libshout
+                   libsndfile
+                   libvorbis
+                   opus
+                   pcre2
+                   pipewire
+                   pulseaudio
+                   soxr
+                   sqlite
+                   yajl
+                   zlib
+                   zziplib)))
     (native-inputs (list cmake pkg-config python-sphinx))
     ;; Missing optional inputs:
-    ;;   yajl
     ;;   libcdio_paranoia
     ;;   libmms
     ;;   libadplug
     ;;   libaudiofile
     ;;   faad2
     ;;   fluidsynth
-    ;;   libgme
-    ;;   libshout
     ;;   libmpg123
     ;;   libmodplug
     ;;   libmpcdec

base-commit: 9e4f1f8c339cb5f1d3dcf9b22ae74cd5b1c25053
-- 
2.38.1





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

* [bug#60357] [PATCH v2 2/2] gnu: mpd: Update to 0.23.12.
  2023-01-23 20:04 ` [bug#60357] [PATCH v2 1/2] " Bruno Victal
@ 2023-01-23 20:04   ` Bruno Victal
  2023-02-05 16:59     ` Leo Famulari
  0 siblings, 1 reply; 6+ messages in thread
From: Bruno Victal @ 2023-01-23 20:04 UTC (permalink / raw)
  To: 60357; +Cc: Bruno Victal

* gnu/packages/mpd.scm (mpd): Update to 0.23.12.
---
 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 fc52f377a8..0526fd42d6 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -118,7 +118,7 @@ (define-public libmpdclient
 (define-public mpd
   (package
     (name "mpd")
-    (version "0.23.11")
+    (version "0.23.12")
     (source (origin
               (method url-fetch)
               (uri
@@ -127,7 +127,7 @@ (define-public mpd
                               "/mpd-" version ".tar.xz"))
               (sha256
                (base32
-                "1afwvw2670yz3kxzlqjlg9r8ra8fjihj97hgc6skiwnzz6lfgd7d"))))
+                "1rq2hyfvwwri3sivab747csza2i096y7m8563rl5mhpchhiadz5p"))))
     (build-system meson-build-system)
     (arguments
      (list
-- 
2.38.1





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

* [bug#60357] [PATCH v2 2/2] gnu: mpd: Update to 0.23.12.
  2023-01-23 20:04   ` [bug#60357] [PATCH v2 2/2] gnu: mpd: Update to 0.23.12 Bruno Victal
@ 2023-02-05 16:59     ` Leo Famulari
  0 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2023-02-05 16:59 UTC (permalink / raw)
  To: Bruno Victal; +Cc: 60357

On Mon, Jan 23, 2023 at 08:04:26PM +0000, Bruno Victal wrote:
> * gnu/packages/mpd.scm (mpd): Update to 0.23.12.

Applied, thanks!




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

* bug#60357: (no subject)
  2022-12-27 16:10 [bug#60357] [PATCH] gnu: mpd: Add missing inputs mirai
  2023-01-17  3:00 ` Bruno Victal
  2023-01-23 20:04 ` [bug#60357] [PATCH v2 1/2] " Bruno Victal
@ 2023-02-06 17:35 ` Bruno Victal
  2 siblings, 0 replies; 6+ messages in thread
From: Bruno Victal @ 2023-02-06 17:35 UTC (permalink / raw)
  To: 60357-done





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

end of thread, other threads:[~2023-02-06 17:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-27 16:10 [bug#60357] [PATCH] gnu: mpd: Add missing inputs mirai
2023-01-17  3:00 ` Bruno Victal
2023-01-23 20:04 ` [bug#60357] [PATCH v2 1/2] " Bruno Victal
2023-01-23 20:04   ` [bug#60357] [PATCH v2 2/2] gnu: mpd: Update to 0.23.12 Bruno Victal
2023-02-05 16:59     ` Leo Famulari
2023-02-06 17:35 ` bug#60357: (no subject) Bruno Victal

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.