diff options
author | CoprDistGit <infra@openeuler.org> | 2023-06-20 04:05:33 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-06-20 04:05:33 +0000 |
commit | 725017b6be2a419a6a427bf853ba272e0b399e2c (patch) | |
tree | c2566b404dbc51210068338b682624f7c9192b62 | |
parent | efffa1ae30ec01fd8667b37c4a39c8a0f91c5838 (diff) |
automatic import of python-text-to-speechopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-text-to-speech.spec | 199 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 201 insertions, 0 deletions
@@ -0,0 +1 @@ +/text_to_speech-1.6.0.tar.gz 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
+
+[](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
+
+[](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
+
+[](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 <Python_Bot@openeuler.org> - 1.6.0-1 +- Package Spec generated @@ -0,0 +1 @@ +3d12a0bba6c14ba96b092279d22f5837 text_to_speech-1.6.0.tar.gz |