From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul van der Walt Subject: [PATCH] Update ncmpcpp to v0.6.2 Date: Fri, 27 Feb 2015 11:13:22 +0100 Message-ID: <87sidrll19.fsf@denknerd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44149) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRHvF-00058z-KJ for guix-devel@gnu.org; Fri, 27 Feb 2015 05:13:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YRHvB-0005nx-JK for guix-devel@gnu.org; Fri, 27 Feb 2015 05:13:29 -0500 Received: from mx02.posteo.de ([89.146.194.165]:57972) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRHvB-0005nt-D4 for guix-devel@gnu.org; Fri, 27 Feb 2015 05:13:25 -0500 Received: from dovecot03.posteo.de (unknown [185.67.36.28]) by mx02.posteo.de (Postfix) with ESMTPS id 76A5225A2137 for ; Fri, 27 Feb 2015 11:13:24 +0100 (CET) Received: from mail.posteo.de (localhost [127.0.0.1]) by dovecot03.posteo.de (Postfix) with ESMTPSA id 3ktmsb5YYvz5vN5 for ; Fri, 27 Feb 2015 11:13:23 +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 again, A patch to update ncmpcpp, the mpd frontend. I hope my patch makes more sense now -- the build system is a little finicky, so perhaps there's a neater way to accomplish what i'm doing. Thanks, p. --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-ncmpcpp-Update-to-0.6.2.patch >From e1382a9df3e7df94e794df8aa247920b7e28c0c6 Mon Sep 17 00:00:00 2001 From: Paul van der Walt Date: Fri, 27 Feb 2015 10:54:07 +0100 Subject: [PATCH] gnu: ncmpcpp: Update to 0.6.2. * gnu/packages/mpd.scm (ncmpcpp): Update to 0.6.2. Add readline, boost, autotools. Patch build system to find boost correctly (without -mt suffix). --- gnu/packages/mpd.scm | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index a1b4272..1daf261 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -27,6 +27,8 @@ #:use-module (guix utils) #:use-module (guix build-system gnu) #:use-module (gnu packages avahi) + #:use-module (gnu packages boost) + #:use-module (gnu packages readline) #:use-module (gnu packages compression) #:use-module (gnu packages curl) #:use-module (gnu packages doxygen) @@ -35,6 +37,7 @@ #:use-module (gnu packages mp3) #:use-module (gnu packages ncurses) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages autotools) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages databases) #:use-module (gnu packages video) @@ -153,7 +156,7 @@ terminal using ncurses.") (define ncmpcpp (package (name "ncmpcpp") - (version "0.5.10") + (version "0.6.2") (source (origin (method url-fetch) (uri @@ -161,11 +164,29 @@ terminal using ncurses.") version ".tar.bz2")) (sha256 (base32 - "1a54g6dary1rirrny9fd0hpxpyyffypni3mpbdpvmjnrl9v56vgz")))) + "1mrd6m6ph0fscxp9x96ipxh6ai7w0n1miapcfqrqfy058qx5zbck")))) (build-system gnu-build-system) (inputs `(("libmpdclient" ,libmpdclient) ("ncurses" ,ncurses))) - (native-inputs `(("pkg-config" ,pkg-config))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("readline" ,readline) + ("automake" ,automake) + ("autoconf" ,autoconf) + ("libtool" ,libtool) + ("boost" ,boost))) + (arguments + '(#:configure-flags + '("BOOST_LIB_SUFFIX=") + #:phases + (alist-cons-after + 'unpack 'autogen + (lambda _ + (substitute* "autogen.sh" + (("/bin/sh") (which "bash"))) + (setenv "NOCONFIGURE" "true") + (zero? (system* "bash" "autogen.sh"))) + %standard-phases))) (synopsis "Featureful ncurses based MPD client inspired by ncmpc") (description "Ncmpcpp is an mpd client with a UI very similar to ncmpc, but it provides new useful features such as support for regular expressions -- 2.3.1 --=-=-=--