gnu: mpd-mpc: Update to 0.34.
* gnu/packages/mpd.scm (mpd-mpc): Update to 0.34. [arguments]: Add a new 'remove-bogus-rsync-requirement phase.master
parent
287c404c7f
commit
3b2b42034c
|
@ -30,6 +30,7 @@
|
||||||
(define-module (gnu packages mpd)
|
(define-module (gnu packages mpd)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
|
@ -174,7 +175,7 @@ protocol.")
|
||||||
(define-public mpd-mpc
|
(define-public mpd-mpc
|
||||||
(package
|
(package
|
||||||
(name "mpd-mpc")
|
(name "mpd-mpc")
|
||||||
(version "0.33")
|
(version "0.34")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
|
@ -183,8 +184,19 @@ protocol.")
|
||||||
"/mpc-" version ".tar.xz"))
|
"/mpc-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"15hjpzqs83v1zx49x8nkpwy9hpl1jxd55z1w50vm82gm32zcqh2g"))))
|
"086sdx88zvgbv4j9kw4qlrsw1n621d6j6403pcid045wahv3y7k9"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'remove-bogus-rsync-requirement
|
||||||
|
;; Meson thinks a maintainer ‘upload to musicpd.org’ task
|
||||||
|
;; merits a hard dependency on rsync. Convince it otherwise.
|
||||||
|
;; Don't use ‘true’ so that the build will fail if it is ever
|
||||||
|
;; actually invoked.
|
||||||
|
(lambda _
|
||||||
|
(substitute* "doc/meson.build"
|
||||||
|
(("rsync") "ls")))))))
|
||||||
(inputs (list libmpdclient))
|
(inputs (list libmpdclient))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config python-sphinx))
|
(list pkg-config python-sphinx))
|
||||||
|
|
Reference in New Issue