From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul van der Walt Subject: [PATCH] gnu: mpd: Update version to 0.19.9 Date: Mon, 02 Mar 2015 22:56:31 +0100 Message-ID: <87fv9njc6o.fsf@denknerd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58955) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSYKM-0002LF-6a for guix-devel@gnu.org; Mon, 02 Mar 2015 16:56:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YSYKJ-0002xF-0X for guix-devel@gnu.org; Mon, 02 Mar 2015 16:56:38 -0500 Received: from mx02.posteo.de ([89.146.194.165]:50460) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSYKI-0002x5-Ql for guix-devel@gnu.org; Mon, 02 Mar 2015 16:56:34 -0500 Received: from dovecot03.posteo.de (unknown [185.67.36.28]) by mx02.posteo.de (Postfix) with ESMTPS id 5A66A25A210F for ; Mon, 2 Mar 2015 22:56:32 +0100 (CET) Received: from mail.posteo.de (localhost [127.0.0.1]) by dovecot03.posteo.de (Postfix) with ESMTPSA id 3kwwKX4hW5z5vNF for ; Mon, 2 Mar 2015 22:56:32 +0100 (CET) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Guix-devel --=-=-= Content-Type: text/plain 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. --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-mpd-Update-to-version-0.19.9.-Add-boost-and-icu4.patch >From 16cf9de7c4c2ad60bc1c78f026db9f366a07cda1 Mon Sep 17 00:00:00 2001 From: Paul van der Walt Date: Mon, 2 Mar 2015 22:52:49 +0100 Subject: [PATCH] gnu: mpd: Update to version 0.19.9. Add boost and icu4c. * 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 --=-=-=--