[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/11: gnu: libmpdclient: Update to 2.13.
From: |
Tobias Geerinckx-Rice |
Subject: |
06/11: gnu: libmpdclient: Update to 2.13. |
Date: |
Sat, 13 Jan 2018 15:35:18 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 7da9e792e453347c21bb729a7b109a3ef2698c7b
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Sat Jan 13 20:42:52 2018 +0100
gnu: libmpdclient: Update to 2.13.
* gnu/packages/mpd.scm (libmpdclient): Update to 2.13.
[build-system]: Switch to meson-build-system.
[native-inputs]: Add pkg-config and check.
[arguments]: Enable tests and build documentation.
---
gnu/packages/mpd.scm | 21 +++++++++++++++++----
1 file changed, 17 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index e6bc2b4..2a0f1f0 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -5,6 +5,7 @@
;;; Copyright © 2014 Ian Denhardt <address@hidden>
;;; Copyright © 2015 Paul van der Walt <address@hidden>
;;; Copyright © 2016 Leo Famulari <address@hidden>
+;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -28,6 +29,7 @@
#:use-module (guix download)
#:use-module (guix utils)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system meson)
#:use-module (guix build-system python)
#:use-module (gnu packages avahi)
#:use-module (gnu packages boost)
@@ -55,7 +57,7 @@
(define-public libmpdclient
(package
(name "libmpdclient")
- (version "2.11")
+ (version "2.13")
(source (origin
(method url-fetch)
(uri
@@ -64,9 +66,20 @@
"/libmpdclient-" version ".tar.xz"))
(sha256
(base32
- "1xms8q44g6zc7sc212qpcihq6ch3pmph3i1m9hzymmy0jcw6kzhm"))))
- (build-system gnu-build-system)
- (native-inputs `(("doxygen" ,doxygen)))
+ "0pflbv2jzik7yxnacci1iqs0awy1i5ipwn67xk0hg9r0pi9bs5ai"))))
+ (build-system meson-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+
+ ;; For building HTML documentation.
+ ("doxygen" ,doxygen)
+
+ ;; For tests.
+ ("check" ,check)))
+ (arguments
+ `(#:configure-flags
+ (list "-Ddocumentation=true"
+ "-Dtest=true")))
(synopsis "Music Player Daemon client library")
(description "A stable, documented, asynchronous API library for
interfacing MPD in the C, C++ & Objective C languages.")
- branch master updated (f05c46d -> a03abe7), Tobias Geerinckx-Rice, 2018/01/13
- 04/11: gnu: gsm: Update to 1.0.17., Tobias Geerinckx-Rice, 2018/01/13
- 01/11: gnu: lz4: Update to 1.8.1., Tobias Geerinckx-Rice, 2018/01/13
- 02/11: gnu: libcap-ng: Use HTTPS for home page., Tobias Geerinckx-Rice, 2018/01/13
- 07/11: gnu: mpdscribble: Update home page., Tobias Geerinckx-Rice, 2018/01/13
- 05/11: gnu: pcre: Use HTTPS for home pages., Tobias Geerinckx-Rice, 2018/01/13
- 09/11: gnu: mpd: Remove (gnu packages gcc) import., Tobias Geerinckx-Rice, 2018/01/13
- 08/11: gnu: mpd: Use HTTPS for musicpd.org home pages., Tobias Geerinckx-Rice, 2018/01/13
- 10/11: gnu: flashrom: Use HTTPS for home page., Tobias Geerinckx-Rice, 2018/01/13
- 03/11: gnu: youtube-dl: Update to 2018.01.14., Tobias Geerinckx-Rice, 2018/01/13
- 06/11: gnu: libmpdclient: Update to 2.13.,
Tobias Geerinckx-Rice <=
- 11/11: gnu: flashrom: Update to 1.0., Tobias Geerinckx-Rice, 2018/01/13