update update pycsspeechtts-1.0.4 (phuhh.)

This commit is contained in:
Andreas Billmeier 2020-11-12 23:49:54 +01:00 committed by Andreas Billmeier
parent 0ffa20fa58
commit 766a09a2c9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 0 deletions

View File

@ -14,6 +14,7 @@
* bump home-assistant-frontend-20201111.0
* bump zha-quirks-0.0.46
* bump greeclimate-0.9.6.ebuild, greeclimate-0.9.9
* update pycsspeechtts-1.0.4 (phuhh.)
2020-11-09
* update pyvlx-0.2.18

View File

@ -1,3 +1,5 @@
DIST pycsspeechtts-1.0.3.tar.gz 2689 BLAKE2B 69dcaf31a7570497f9eff0436078e76ff900596b19756e1925202018328143f782a9be57faaef21ac1ca79da89c99c94bf53a388a45dd0f5649448489671d874 SHA512 8ad00608d1df12e0241bc51727a24617d63bca7e99e9bf66bd70890add234fab78f1338cf960662dd98b8605ce6a7f9d0b32823b24f16a7be34228eca9700f3b
DIST pycsspeechtts-1.0.4.zip 31172 BLAKE2B 9664d3c1502011c7832ae2c1bfe2e5b537576cb5b2d8598707d3fe3edf5653d3f89b848920fd4b070d3a51813af821f63d89246a3674de728d1a7203f436a6db SHA512 cf5eee316b09b4f8df2f6b870acb276fa70d7afa3e43d9b4a9a5f8d8df4c5e220f2a8bb80c988549c0b433add4a4fb351099e087e01b3943a38b0a2135db64e3
EBUILD pycsspeechtts-1.0.3.ebuild 722 BLAKE2B 093e34786b8dc69885afcec2acdb5eaf54bfa6d55715a59b987f348b169709d7af3040ae84d4186b0bee84f8c7ad2b909e06d5aa2dbb62ccde220faddc03e50f SHA512 d25f4afb65e673ace369169ac41b44c33867fb27431351d60a6cf0c1c69ba7b08f69fcd9afcf90fa98a58dcb01d322b4b7d96b75ece3f70961ae7f291b24861c
EBUILD pycsspeechtts-1.0.4.ebuild 967 BLAKE2B 29ec7f7b359a4461b48aa1cc119ef274d87d9281c2f9834ee1adcacc7fbeaab1a84e31c990528725a4792996fde6d8da4f5d0dcc311cf0cb257c643554d648cf SHA512 f2149524da9bbba306088fc072169c7025457f6f5168033643da76c88f2782902e3e55567f4cbf0868f3b8230bed757f0939aac4103bea03bb077821223f4500
MISC metadata.xml 332 BLAKE2B d94ba15803de9e88a76a625df5f07a10dc91ee063662169401e85865cac1c7abb675e61b31cecdc67ca7508276557807dd1001a8bce072e587952078e45a751d SHA512 198ca09daa20996320f6caca394711e7942094f306eb48c2968c794365842c7d91a498017611285c7a711d7dc7b6ba997b69d4ce5da60d614adbae9feb532d2b

View File

@ -0,0 +1,34 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="Python 3 interface to Microsoft Cognitive Services Text To Speech"
HOMEPAGE="https://github.com/jeroenterheerdt/pycsspeechtts https://pypi.org/project/pycsspeechtts/"
# PYPI SDIST IS IMCOMPLETE
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
COMMITID="44049cb2e1f173eed9d58e61ab97a8b4d40b5e0a"
SRC_URI="https://github.com/jeroenterheerdt/pycsspeechtts/archive/${COMMITID}.zip -> ${P}.zip"
S="${WORKDIR}/${PN}-${COMMITID}/src/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}