speech-dispatcher: update to 0.10.2.
This commit is contained in:
parent
6f21e786e0
commit
a0bc05299e
2 changed files with 6 additions and 34 deletions
|
@ -1,29 +0,0 @@
|
|||
From 4fe066fefcbb28161b1053326867514a21f421b9 Mon Sep 17 00:00:00 2001
|
||||
From: Michael Catanzaro <mcatanzaro@gnome.org>
|
||||
Date: Fri, 11 Sep 2020 13:15:07 -0500
|
||||
Subject: [PATCH] Fix crash with python 3.9
|
||||
|
||||
Thread.isAlive() was removed in python 3.9. Thread.is_alive() has been
|
||||
available since python 2.6, so let's use that.
|
||||
|
||||
Fixes #402
|
||||
---
|
||||
src/api/python/speechd/client.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/api/python/speechd/client.py b/src/api/python/speechd/client.py
|
||||
index ba7c0496..68200e2f 100644
|
||||
--- src/api/python/speechd/client.py
|
||||
+++ src/api/python/speechd/client.py
|
||||
@@ -289,7 +289,7 @@ class _SSIP_Connection(object):
|
||||
and return the triplet (code, msg, data)."""
|
||||
# TODO: This check is dumb but seems to work. The main thread
|
||||
# hangs without it, when the Speech Dispatcher connection is lost.
|
||||
- if not self._communication_thread.isAlive():
|
||||
+ if not self._communication_thread.is_alive():
|
||||
raise SSIPCommunicationError
|
||||
self._ssip_reply_semaphore.acquire()
|
||||
# The list is sorted, read the first item
|
||||
--
|
||||
2.28.0
|
||||
|
|
@ -1,12 +1,13 @@
|
|||
# Template file for 'speech-dispatcher'
|
||||
pkgname=speech-dispatcher
|
||||
version=0.10.1
|
||||
revision=3
|
||||
version=0.10.2
|
||||
revision=1
|
||||
wrksrc="speechd-${version}"
|
||||
build_style=gnu-configure
|
||||
# Disable support for sundry non-free TTS systems (said support causes
|
||||
# the pre-pkg step to fail on account of missing shlibs).
|
||||
configure_args="--disable-static --without-kali --without-ibmtts --without-baratinoo"
|
||||
configure_args="--disable-static --without-kali --without-ibmtts --without-baratinoo
|
||||
--without-voxin"
|
||||
hostmakedepends="automake libtool gettext-devel
|
||||
pkg-config intltool python3-devel texinfo"
|
||||
makedepends="libltdl-devel glib-devel dotconf-devel
|
||||
|
@ -18,7 +19,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
|
|||
license="GPL-2.0-or-later, LGPL-2.1-or-later, GFDL-1.2-or-later"
|
||||
homepage="http://devel.freebsoft.org/speechd"
|
||||
distfiles="https://github.com/brailcom/speechd/archive/${version}.tar.gz"
|
||||
checksum=0c702d4acc4920818db3daa28ecf14004123b64514b4575c138874618835104c
|
||||
checksum=056efb80186f2bfc3f6ef468ab9905ca2d652cc2180b13514b752a9d616a6930
|
||||
|
||||
conf_files="
|
||||
/etc/speech-dispatcher/clients/*.conf
|
||||
|
@ -38,7 +39,7 @@ pre_configure() {
|
|||
|
||||
speech-dispatcher-devel_package() {
|
||||
short_desc+=" - development files"
|
||||
depends="${sourcepkg}-${version}_${revision}"
|
||||
depends="${sourcepkg}>=${version}_${revision}"
|
||||
pkg_install() {
|
||||
vmove usr/include
|
||||
vmove usr/lib/pkgconfig
|
||||
|
|
Loading…
Reference in a new issue