From cba4c9f16143df7f4c32638e7ffa9bc7f822a165 Mon Sep 17 00:00:00 2001 From: Sébastien Lerique Date: Sat, 6 Apr 2024 10:08:54 +0100 Subject: gnu: speech-dispatcher: Update to 0.11.5. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/speech.scm (speech-dispatcher): Update to 0.11.5. [source]: Switch to git-fetch. [native-inputs]: Add autoconf, automake, libtool. [inputs]: Add python-xdg. Reviewed-by: Dale Mellor Change-Id: If323f17bac54da427be1a09d847de50842717a01 Signed-off-by: Ludovic Courtès --- gnu/packages/speech.scm | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/gnu/packages/speech.scm b/gnu/packages/speech.scm index 9939d2f165..36b67ccd93 100644 --- a/gnu/packages/speech.scm +++ b/gnu/packages/speech.scm @@ -8,6 +8,7 @@ ;;; Copyright © 2020 Nicolas Goaziou ;;; Copyright © 2020 Efraim Flashner ;;; Copyright © 2021 qblade +;;; Copyright © 2024 Sébastien Lerique ;;; ;;; This file is part of GNU Guix. ;;; @@ -51,6 +52,7 @@ (define-module (gnu packages speech) #:use-module (gnu packages pkg-config) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages python) + #:use-module (gnu packages python-xyz) #:use-module (gnu packages swig) #:use-module (gnu packages texinfo) #:use-module (gnu packages textutils)) @@ -236,15 +238,16 @@ (define-public mitlm (define-public speech-dispatcher (package (name "speech-dispatcher") - (version "0.11.4") + (version "0.11.5") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/brailcom/speechd/releases" - "/download/" version "/speech-dispatcher-" - version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/brailcom/speechd") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "1fb6ypnr8r3905b68bbplg1qcaw3f6br2yzxkk4bb79dnwdj42cc")))) + "0z2rb1yi06v145sr2h69rxbxzrsfrk198cw6bgpf8wj2njfh3555")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--disable-static" @@ -253,7 +256,12 @@ (define-public speech-dispatcher "--with-voxin=no" "--with-ibmtts=no" "--with-kali=no" "--with-baratinoo=no"))) (native-inputs - (list gettext-minimal pkg-config texinfo)) + (list autoconf + automake + gettext-minimal + libtool + pkg-config + texinfo)) (inputs (list dotconf espeak-ng @@ -261,7 +269,8 @@ (define-public speech-dispatcher libltdl libsndfile pulseaudio - python)) + python + python-xdg)) (synopsis "Common interface to speech synthesizers") (description "The Speech Dispatcher project provides a high-level device independent layer for access to speech synthesis through a simple, -- cgit v1.2.3