[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/12: gnu: mympd: Update to 13.0.5.
|
From: |
guix-commits |
|
Subject: |
01/12: gnu: mympd: Update to 13.0.5. |
|
Date: |
Thu, 23 Nov 2023 09:21:58 -0500 (EST) |
cbaines pushed a commit to branch master
in repository guix.
commit dbc02656cf4804821e68d655fc871e2365150f43
Author: Bruno Victal <mirai@makinata.eu>
AuthorDate: Mon Nov 20 17:33:08 2023 +0000
gnu: mympd: Update to 13.0.5.
* gnu/packages/mpd.scm (mympd): Update to 13.0.5.
[native-inputs]: Add jekyll.
[outputs]: Add 'doc.
[arguments]<#:configure-flags>: Install HTML documentation. Set correct
value
for localstatedir.
<#:phases>: Add 'move-doc.
Change-Id: I0f1ab4295b7bc03876ad1bbeff6154b4da6adc9a
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/mpd.scm | 22 +++++++++++++++-------
1 file changed, 15 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index b01d1934a2..dc827a4670 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -57,6 +57,7 @@
#:use-module (gnu packages libusb)
#:use-module (gnu packages lua)
#:use-module (gnu packages readline)
+ #:use-module (gnu packages ruby)
#:use-module (gnu packages check)
#:use-module (gnu packages compression)
#:use-module (gnu packages curl)
@@ -622,7 +623,7 @@ mpdevil loads all tags and covers on demand.")
(define-public mympd
(package
(name "mympd")
- (version "12.1.1")
+ (version "13.0.5")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -631,22 +632,29 @@ mpdevil loads all tags and covers on demand.")
(file-name (git-file-name name version))
(sha256
(base32
- "1bal31xmdmq46bi0qmia07sqcwy695vcz5y5hxwkz71rcfywbsf9"))))
+ "1ly3iw4irybfxyafgrldldwc28a879wwnd1pg32m2sgrwyhr0czm"))))
+ (outputs '("out" "doc"))
(build-system cmake-build-system)
(arguments
(list
#:configure-flags
- #~(list "-DMYMPD_BUILD_TESTING=ON"
- ;; Handled by 'strip' phase.
- "-DMYMPD_STRIP_BINARY=OFF")
+ #~(list "-DCMAKE_INSTALL_LOCALSTATEDIR=/var"
+ "-DMYMPD_BUILD_TESTING=ON"
+ "-DMYMPD_DOC_HTML=ON")
#:phases
#~(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
;; The following test requires network connectivity.
- (invoke "ctest" "--exclude-regex" "test_http_client")))))))
- (native-inputs (list jq perl pkg-config))
+ (invoke "ctest" "--exclude-regex" "test_http_client"))))
+ (add-after 'install 'move-doc
+ (lambda _
+ (let ((old (string-append #$output "/share/doc"))
+ (new (string-append #$output:doc "/share/doc")))
+ (mkdir-p (dirname new))
+ (rename-file old new)))))))
+ (native-inputs (list jekyll jq perl pkg-config))
(inputs (list flac libid3tag lua openssl pcre2))
(home-page "https://jcorporation.github.io/")
(synopsis "Web-based MPD client")
- branch master updated (8d596af2c9 -> c26ed5d6b9), guix-commits, 2023/11/23
- 02/12: gnu: python-pyfuse3: Update to 3.3.0., guix-commits, 2023/11/23
- 01/12: gnu: mympd: Update to 13.0.5.,
guix-commits <=
- 05/12: gnu: godot: Update to 4.1.3., guix-commits, 2023/11/23
- 03/12: gnu: beancount: Update to 2.3.6., guix-commits, 2023/11/23
- 06/12: gnu: nar-herder: Update to 0-23.5ccd6cb., guix-commits, 2023/11/23
- 08/12: gnu: guix-data-service: Update to 0.0.1-44.e13febc., guix-commits, 2023/11/23
- 04/12: gnu: book-sparc: Update to 1.1.0., guix-commits, 2023/11/23
- 07/12: gnu: guix-build-coordinator: Update to 92.78df0b3., guix-commits, 2023/11/23
- 09/12: gnu: radicale: Update to 3.1.8., guix-commits, 2023/11/23
- 10/12: gnu: Update ispell to 3.4.06., guix-commits, 2023/11/23
- 11/12: gnu: praat: Update to 6.4., guix-commits, 2023/11/23
- 12/12: gnu: mu: Update to 1.10.8., guix-commits, 2023/11/23