From 725017b6be2a419a6a427bf853ba272e0b399e2c Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Tue, 20 Jun 2023 04:05:33 +0000 Subject: automatic import of python-text-to-speech --- python-text-to-speech.spec | 199 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 199 insertions(+) create mode 100644 python-text-to-speech.spec (limited to 'python-text-to-speech.spec') diff --git a/python-text-to-speech.spec b/python-text-to-speech.spec new file mode 100644 index 0000000..25ce924 --- /dev/null +++ b/python-text-to-speech.spec @@ -0,0 +1,199 @@ +%global _empty_manifest_terminate_build 0 +Name: python-text-to-speech +Version: 1.6.0 +Release: 1 +Summary: A simple text to speech engine +License: MIT +URL: https://github.com/dewittethomas/text-to-speech +Source0: https://mirrors.aliyun.com/pypi/web/packages/e7/fa/9f35f1fbc446d1c3af3406e16f44a98de4a79b0cff672a56ffa0fec63866/text_to_speech-1.6.0.tar.gz +BuildArch: noarch + +Requires: python3-gTTS + +%description +# text-to-speech + +[![npm](https://img.shields.io/pypi/v/text-to-speech.svg)](https://pypi.org/project/text-to-speech/) + +This is a simple text to speech engine with some customizable options. + +## Installation + +Run the following to install: + +```console +pip install text-to-speech +``` + +## Usage + +### Save + +```python +save() +``` + +Params: + +``` +Text: String ? The text to be read. +Language: String ? The language (IETF language tag) to read the text in. +Slow: Boolean ? Reads text more slowly. +File: String ? The file to save the text to, default is = "speech.mp3", only accepts .mp3. +Lang_check: Boolean ? If the text has to be checked on language errors. +``` + +Demo: + +```python +from text_to_speech import save + +save("Hello World", "en", file="Hello-World.mp3") +``` + +# License +[MIT](https://github.com/dewittethomas/text-to-speech/blob/master/LICENSE) + + +%package -n python3-text-to-speech +Summary: A simple text to speech engine +Provides: python-text-to-speech +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-text-to-speech +# text-to-speech + +[![npm](https://img.shields.io/pypi/v/text-to-speech.svg)](https://pypi.org/project/text-to-speech/) + +This is a simple text to speech engine with some customizable options. + +## Installation + +Run the following to install: + +```console +pip install text-to-speech +``` + +## Usage + +### Save + +```python +save() +``` + +Params: + +``` +Text: String ? The text to be read. +Language: String ? The language (IETF language tag) to read the text in. +Slow: Boolean ? Reads text more slowly. +File: String ? The file to save the text to, default is = "speech.mp3", only accepts .mp3. +Lang_check: Boolean ? If the text has to be checked on language errors. +``` + +Demo: + +```python +from text_to_speech import save + +save("Hello World", "en", file="Hello-World.mp3") +``` + +# License +[MIT](https://github.com/dewittethomas/text-to-speech/blob/master/LICENSE) + + +%package help +Summary: Development documents and examples for text-to-speech +Provides: python3-text-to-speech-doc +%description help +# text-to-speech + +[![npm](https://img.shields.io/pypi/v/text-to-speech.svg)](https://pypi.org/project/text-to-speech/) + +This is a simple text to speech engine with some customizable options. + +## Installation + +Run the following to install: + +```console +pip install text-to-speech +``` + +## Usage + +### Save + +```python +save() +``` + +Params: + +``` +Text: String ? The text to be read. +Language: String ? The language (IETF language tag) to read the text in. +Slow: Boolean ? Reads text more slowly. +File: String ? The file to save the text to, default is = "speech.mp3", only accepts .mp3. +Lang_check: Boolean ? If the text has to be checked on language errors. +``` + +Demo: + +```python +from text_to_speech import save + +save("Hello World", "en", file="Hello-World.mp3") +``` + +# License +[MIT](https://github.com/dewittethomas/text-to-speech/blob/master/LICENSE) + + +%prep +%autosetup -n text_to_speech-1.6.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-text-to-speech -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Jun 20 2023 Python_Bot - 1.6.0-1 +- Package Spec generated -- cgit v1.2.3