From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 04 05:42:50 2024 Received: (at submit) by debbugs.gnu.org; 4 Apr 2024 09:42:50 +0000 Received: from localhost ([127.0.0.1]:60586 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rsJcO-00078j-4I for submit@debbugs.gnu.org; Thu, 04 Apr 2024 05:42:50 -0400 Received: from lists.gnu.org ([2001:470:142::17]:56252) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rsJcJ-000779-Aw for submit@debbugs.gnu.org; Thu, 04 Apr 2024 05:42:46 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rsJc9-0002pe-1N for guix-patches@gnu.org; Thu, 04 Apr 2024 05:42:33 -0400 Received: from elegua.eauchat.org ([91.224.149.118] helo=eauchat.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1rsJc6-0006LE-Ty for guix-patches@gnu.org; Thu, 04 Apr 2024 05:42:32 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eauchat.org; s=mail; t=1712223745; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=HtneUQ0hZCbo2FUDeUETh6kMaJ+f/fjBdVoK/bNaiFw=; b=yDo2bJKOr1IjgZzROVwZsRgto9n7vnzUT+sAD2UMFggW+P9abZ+or54W7Qe231YOZm25+L 0wgUalVBRFedfRM1ZmMjqyciV6z5UaiQ+orrugtZBjyi4+eJnVPswL+RHaYubPTa0yQtZ5 Bfhv9NSoq4tnd8dUtU4OY9rngxySt28= From: =?UTF-8?q?S=C3=A9bastien=20Lerique?= To: guix-patches@gnu.org Subject: [PATCH] gnu: speech-dispatcher: Update to 0.11.5. Date: Thu, 4 Apr 2024 11:42:03 +0200 Message-ID: <0b78d4b1cbb0a902dcca400d2937a66ea66e06b2.1712223723.git.sl@eauchat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=91.224.149.118; envelope-from=sl@eauchat.org; helo=eauchat.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?S=C3=A9bastien=20Lerique?= X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) * 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. Change-Id: If323f17bac54da427be1a09d847de50842717a01 --- 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, base-commit: 188d18fc47f0d38edfe06e3e5834fa8587bd300b -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Sat Apr 06 02:29:55 2024 Received: (at control) by debbugs.gnu.org; 6 Apr 2024 06:29:55 +0000 Received: from localhost ([127.0.0.1]:37994 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rszYn-0003bz-Pi for submit@debbugs.gnu.org; Sat, 06 Apr 2024 02:29:55 -0400 Received: from [195.15.247.228] (port=52477 helo=rdmp.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rszYl-0003b7-2r for control@debbugs.gnu.org; Sat, 06 Apr 2024 02:29:52 -0400 Received: from [127.0.0.1] (helo=[IPv6:::1]) by rdmp.org with esmtp (Exim 4.96.1) (envelope-from ) id 1rszYY-0004pK-3B for control@debbugs.gnu.org; Sat, 06 Apr 2024 06:29:39 +0000 Message-ID: <888df926d111b65f1dd48c8e6796dd27cc7f2e06.camel@rdmp.org> Subject: Own guix 70190 From: Dale Mellor To: control Date: Sat, 06 Apr 2024 07:29:38 +0100 Organization: DM Bespoke Computer Solutions Ltd Content-Type: text/plain Content-Transfer-Encoding: 7bit User-Agent: Evolution 3.48.4 MIME-Version: 1.0 X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: owner 70190 ! user guix usertag 70190 + under-review quit Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) owner 70190 ! user guix usertag 70190 + under-review quit From debbugs-submit-bounces@debbugs.gnu.org Sat Apr 06 02:39:30 2024 Received: (at control) by debbugs.gnu.org; 6 Apr 2024 06:39:30 +0000 Received: from localhost ([127.0.0.1]:38035 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rszi4-0007CY-C7 for submit@debbugs.gnu.org; Sat, 06 Apr 2024 02:39:29 -0400 Received: from [195.15.247.228] (port=6855 helo=rdmp.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rszQH-0002we-Bb for control@debbugs.gnu.org; Sat, 06 Apr 2024 02:21:10 -0400 Received: from [127.0.0.1] (helo=[IPv6:::1]) by rdmp.org with esmtp (Exim 4.96.1) (envelope-from ) id 1rszQ3-0004p6-0Y for control@debbugs.gnu.org; Sat, 06 Apr 2024 06:20:51 +0000 Message-ID: Subject: Own guix 70190 From: Dale Mellor To: control Date: Sat, 06 Apr 2024 07:20:51 +0100 Organization: DM Bespoke Computer Solutions Ltd Content-Type: text/plain Content-Transfer-Encoding: 7bit User-Agent: Evolution 3.48.4 MIME-Version: 1.0 X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: owner 70190 ! quit Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS X-Debbugs-Envelope-To: control X-Mailman-Approved-At: Sat, 06 Apr 2024 02:39:27 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: guix-devel-0brg6b@rdmp.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) owner 70190 ! quit From debbugs-submit-bounces@debbugs.gnu.org Sat Apr 06 05:09:21 2024 Received: (at 70190) by debbugs.gnu.org; 6 Apr 2024 09:09:21 +0000 Received: from localhost ([127.0.0.1]:38274 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rt236-0007o8-I0 for submit@debbugs.gnu.org; Sat, 06 Apr 2024 05:09:20 -0400 Received: from [195.15.247.228] (port=55260 helo=rdmp.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rt234-0007nO-3w for 70190@debbugs.gnu.org; Sat, 06 Apr 2024 05:09:19 -0400 Received: from [127.0.0.1] (helo=localhost.localdomain) by rdmp.org with esmtp (Exim 4.96.1) (envelope-from ) id 1rt22r-0005Ku-2p; Sat, 06 Apr 2024 09:09:06 +0000 From: Dale Mellor To: 70190@debbugs.gnu.org Subject: [PATCH v2] gnu: speech-dispatcher: Update to 0.11.5. Date: Sat, 6 Apr 2024 10:08:54 +0100 Message-ID: <20240406090856.733386-1-guix-devel-0brg6b@rdmp.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <0b78d4b1cbb0a902dcca400d2937a66ea66e06b2.1712223723.git.sl@eauchat.org> References: <0b78d4b1cbb0a902dcca400d2937a66ea66e06b2.1712223723.git.sl@eauchat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: From: Sébastien Lerique * 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. Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS X-Debbugs-Envelope-To: 70190 Cc: =?UTF-8?q?S=C3=A9bastien=20Lerique?= , Dale Mellor X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) From: Sébastien Lerique * 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. Review: * the change is minimal, patch applies cleanly * the upstream source has changed to a GIT repository; checked authenticity against upstream home page https://freebsoft.org/speechd * the license is complicated, but does not appear to have changed from previous release * guix lint is clean * installed and tested by running 'spd-say "hello"' at the command-line Reviewed-by: Dale Mellor Change-Id: If323f17bac54da427be1a09d847de50842717a01 --- 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, -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 11 06:33:15 2024 Received: (at 70190-done) by debbugs.gnu.org; 11 Apr 2024 10:33:15 +0000 Received: from localhost ([127.0.0.1]:54997 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rurk2-0001j9-V8 for submit@debbugs.gnu.org; Thu, 11 Apr 2024 06:33:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40072) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rurjx-0001hU-AL for 70190-done@debbugs.gnu.org; Thu, 11 Apr 2024 06:33:12 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rurjh-0002Lb-D3; Thu, 11 Apr 2024 06:32:53 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=PUkoXaVepaEJVL3cWEIL9GtcZfw90PT7i+TX1MKgSu4=; b=RKVatfe430B6esT/WoSZ xh2g5slVd91eBg9DphTuCKMZkqLyJY31A+r7/2lEYd79JqHh4hm07QEm6Ci3Lz3jwhDSGksZRKJEl ZntwkW2Hx2JCYhI0w2WS9xGFQRbym719tUrmznRpCQjaoU0qohiwDaIGCaE8kn1Rr58e0AbsfZbIC WB9V8wtRHTeaNokDfWxnBWB19c6Hju8p+aGvKf2n3X3QZBw97edTrmDAnNKqzmuc5w63SqZnxA1W1 wpMCecZ1MHX+uflRmVEEhMYSh4/NMZYARsh849FuQemvmpmGsmo4foNCr9pJZfxmz7CLLOfNiEURa 4wNHgHG0/kAWCQ==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Dale Mellor Subject: Re: [bug#70190] [PATCH v2] gnu: speech-dispatcher: Update to 0.11.5. In-Reply-To: <20240406090856.733386-1-guix-devel-0brg6b@rdmp.org> (Dale Mellor's message of "Sat, 6 Apr 2024 10:08:54 +0100") References: <0b78d4b1cbb0a902dcca400d2937a66ea66e06b2.1712223723.git.sl@eauchat.org> <20240406090856.733386-1-guix-devel-0brg6b@rdmp.org> Date: Thu, 11 Apr 2024 12:32:33 +0200 Message-ID: <87sezsgpfi.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 70190-done Cc: =?utf-8?Q?S=C3=A9bastien?= Lerique , 70190-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, Dale Mellor skribis: > From: S=C3=A9bastien Lerique > > * 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. > > Review: > * the change is minimal, patch applies cleanly > * the upstream source has changed to a GIT repository; checked > authenticity against upstream home page https://freebsoft.org/spee= chd > * the license is complicated, but does not appear to have changed fr= om > previous release > * guix lint is clean > * installed and tested by running 'spd-say "hello"' at the command-line > > Reviewed-by: Dale Mellor > Change-Id: If323f17bac54da427be1a09d847de50842717a01 Applied. Thanks S=C3=A9bastien & Dale! Ludo=E2=80=99. From unknown Sat Jun 21 03:14:39 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 09 May 2024 11:24:10 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator