Paul van der Walt <[email protected]> writes: > Hello guix, > > Bavier and i had a problem where mpd was segfaulting. I didn't dig deep, > but the issue evaporated when i upgraded my mpd version. The one in Guix > was over a year old. > > I hope this patch is acceptable -- it's pretty trivial. > > Cheers, > p. > From 16cf9de7c4c2ad60bc1c78f026db9f366a07cda1 Mon Sep 17 00:00:00 2001 > From: Paul van der Walt <[email protected]> > Date: Mon, 2 Mar 2015 22:52:49 +0100 > Subject: [PATCH] gnu: mpd: Update to version 0.19.9. Add boost and icu4c.
Use a single, brief sentence. "gnu: mpd: Update to 0.19.9." > > * gnu/packages/mpd.scm (mpd): Update version to 0.19.9. Add boost and > icu4c. > --- > gnu/packages/mpd.scm | 9 ++++++--- > 1 file changed, 6 insertions(+), 3 deletions(-) > > diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm > index 2d7ca6e..b757bda 100644 > --- a/gnu/packages/mpd.scm > +++ b/gnu/packages/mpd.scm > @@ -29,6 +29,7 @@ > #:use-module (guix build-system gnu) > #:use-module (gnu packages avahi) > #:use-module (gnu packages boost) > + #:use-module (gnu packages icu4c) > #:use-module (gnu packages readline) > #:use-module (gnu packages compression) > #:use-module (gnu packages curl) > @@ -68,24 +69,26 @@ interfacing MPD in the C, C++ & Objective C languages.") > (define-public mpd > (package > (name "mpd") > - (version "0.18.8") > + (version "0.19.9") > (source (origin > (method url-fetch) > (uri > (string-append "http://musicpd.org/download/mpd/" > (version-major+minor version) > - "/mpd-" version ".tar.gz")) > + "/mpd-" version ".tar.xz")) > (sha256 > (base32 > - "1ryqh0xf76xv4mpwy1gjwy275ar4wmbzifa9ccjim9r7lk2hgp5v")))) > + "0vzj365s4j0pw5w37lfhx3dmpkdp85driravsvx8rlrw0lii91a7")))) > (build-system gnu-build-system) > (inputs `(("ao" ,ao) > ("alsa-lib" ,alsa-lib) > ("avahi" ,avahi) > + ("boost" ,boost) > ("curl" ,curl) > ("ffmpeg" ,ffmpeg) > ("flac" ,flac) > ("glib" ,glib) > + ("icu4c" ,icu4c) > ("lame" ,lame) > ("libid3tag" ,libid3tag) > ("libmad" ,libmad) > -- > 2.3.1 > OK to push with an adjusted commit log. Thank you very much for fixing mpd for us! Now, we need to write an mpd service defintion. ;) -- David Thompson Web Developer - Free Software Foundation - http://fsf.org GPG Key: 0FF1D807 Support the FSF: https://fsf.org/donate
