From f0b97df72061bf01fce47da1ee97332071236b3a Mon Sep 17 00:00:00 2001 From: alick01 Date: Mon, 24 Jan 2022 17:24:36 +0300 Subject: [PATCH] 8 Each Python Module for Jelvis --- .../python3/python3-PyAudio/actions.py | 15 +++++ .../python3/python3-PyAudio/pspec.xml | 45 ++++++++++++++ .../python3/python3-PyAudio/translations.xml | 8 +++ .../language/python3/python3-aiml/actions.py | 15 +++++ .../language/python3/python3-aiml/pspec.xml | 45 ++++++++++++++ .../python3/python3-aiml/translations.xml | 8 +++ .../language/python3/python3-bs4/actions.py | 15 +++++ .../language/python3/python3-bs4/pspec.xml | 45 ++++++++++++++ .../python3/python3-bs4/translations.xml | 8 +++ .../python3/python3-gtts-token/actions.py | 15 +++++ .../python3/python3-gtts-token/pspec.xml | 46 ++++++++++++++ .../python3-gtts-token/translations.xml | 8 +++ .../language/python3/python3-gtts/actions.py | 15 +++++ .../language/python3/python3-gtts/pspec.xml | 47 ++++++++++++++ .../python3/python3-gtts/translations.xml | 8 +++ .../python3/python3-pocketsphinx/actions.py | 15 +++++ .../python3/python3-pocketsphinx/pspec.xml | 59 ++++++++++++++++++ .../python3-pocketsphinx/translations.xml | 8 +++ .../python3/python3-pyalsaaudio/actions.py | 15 +++++ .../python3/python3-pyalsaaudio/pspec.xml | 61 +++++++++++++++++++ .../python3-pyalsaaudio/translations.xml | 8 +++ .../python3/python3-pyttsx3/actions.py | 15 +++++ .../python3/python3-pyttsx3/pspec.xml | 48 +++++++++++++++ .../python3/python3-pyttsx3/translations.xml | 8 +++ 24 files changed, 580 insertions(+) create mode 100644 programming/language/python3/python3-PyAudio/actions.py create mode 100644 programming/language/python3/python3-PyAudio/pspec.xml create mode 100644 programming/language/python3/python3-PyAudio/translations.xml create mode 100644 programming/language/python3/python3-aiml/actions.py create mode 100644 programming/language/python3/python3-aiml/pspec.xml create mode 100644 programming/language/python3/python3-aiml/translations.xml create mode 100644 programming/language/python3/python3-bs4/actions.py create mode 100644 programming/language/python3/python3-bs4/pspec.xml create mode 100644 programming/language/python3/python3-bs4/translations.xml create mode 100644 programming/language/python3/python3-gtts-token/actions.py create mode 100644 programming/language/python3/python3-gtts-token/pspec.xml create mode 100644 programming/language/python3/python3-gtts-token/translations.xml create mode 100644 programming/language/python3/python3-gtts/actions.py create mode 100644 programming/language/python3/python3-gtts/pspec.xml create mode 100644 programming/language/python3/python3-gtts/translations.xml create mode 100644 programming/language/python3/python3-pocketsphinx/actions.py create mode 100644 programming/language/python3/python3-pocketsphinx/pspec.xml create mode 100644 programming/language/python3/python3-pocketsphinx/translations.xml create mode 100644 programming/language/python3/python3-pyalsaaudio/actions.py create mode 100644 programming/language/python3/python3-pyalsaaudio/pspec.xml create mode 100644 programming/language/python3/python3-pyalsaaudio/translations.xml create mode 100644 programming/language/python3/python3-pyttsx3/actions.py create mode 100644 programming/language/python3/python3-pyttsx3/pspec.xml create mode 100644 programming/language/python3/python3-pyttsx3/translations.xml diff --git a/programming/language/python3/python3-PyAudio/actions.py b/programming/language/python3/python3-PyAudio/actions.py new file mode 100644 index 0000000000..122511281a --- /dev/null +++ b/programming/language/python3/python3-PyAudio/actions.py @@ -0,0 +1,15 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import pythonmodules + +#WorkDir="PyAudio-%s" % get.srcVERSION() + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") diff --git a/programming/language/python3/python3-PyAudio/pspec.xml b/programming/language/python3/python3-PyAudio/pspec.xml new file mode 100644 index 0000000000..c89d576550 --- /dev/null +++ b/programming/language/python3/python3-PyAudio/pspec.xml @@ -0,0 +1,45 @@ + + + + + python3-PyAudio + http://people.csail.mit.edu/hubert/pyaudio/ + + PisiLinux Community + admins@pisilinux.org + + programming.language.python3 + MIT + library + Python Bindings for PortAudio. + ython bindings for PortAudio (Fork to fix PY_SSIZE_T_CLEAN error) + https://files.pythonhosted.org/packages/ab/42/b4f04721c5c5bfc196ce156b3c768998ef8c0ae3654ed29ea5020c749a6b/PyAudio-0.2.11.tar.gz + + python3-devel + portaudio-devel + + + + + python3-PyAudio + Python Bindings for PortAudio. + + python3 + portaudio + + ortaudio + /usr/lib/python3* + /usr/share/doc/python3-PyAudio + + + + + + 2022-01-23 + 0.2.11 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/programming/language/python3/python3-PyAudio/translations.xml b/programming/language/python3/python3-PyAudio/translations.xml new file mode 100644 index 0000000000..951f7eb091 --- /dev/null +++ b/programming/language/python3/python3-PyAudio/translations.xml @@ -0,0 +1,8 @@ + + + + python3-PyAudio + Python Bindings for PortAudio. + ython bindings for PortAudio (Fork to fix PY_SSIZE_T_CLEAN error) + + diff --git a/programming/language/python3/python3-aiml/actions.py b/programming/language/python3/python3-aiml/actions.py new file mode 100644 index 0000000000..605f928bd1 --- /dev/null +++ b/programming/language/python3/python3-aiml/actions.py @@ -0,0 +1,15 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import pythonmodules + +#WorkDir="aiml-%s" % get.srcVERSION() + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") diff --git a/programming/language/python3/python3-aiml/pspec.xml b/programming/language/python3/python3-aiml/pspec.xml new file mode 100644 index 0000000000..c74d4cf41a --- /dev/null +++ b/programming/language/python3/python3-aiml/pspec.xml @@ -0,0 +1,45 @@ + + + + + python3-aiml + https://github.com/ArtificialIntelligenceToolkit/aiml + + PisiLinux Community + admins@pisilinux.org + + programming.language.python3 + MIT + library + aiml implements an interpreter for AIML + aiml implements an interpreter for AIML, the Artificial Intelligence Markup Language developed by Dr. Richard Wallace of the A.L.I.C.E. Foundation. It can be used to implement a conversational AI program. + https://github.com/paulovn/python-aiml/archive/0.9.3.tar.gz + + python3-devel + python3-setuptools + + + + + python3-aiml + aiml implements an interpreter for AIML + + python3 + + + /usr/bin* + /usr/lib/python3* + /usr/share/doc/python3-aiml + + + + + + 2022-01-23 + 0.9.3 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/programming/language/python3/python3-aiml/translations.xml b/programming/language/python3/python3-aiml/translations.xml new file mode 100644 index 0000000000..4b0aa2d3e2 --- /dev/null +++ b/programming/language/python3/python3-aiml/translations.xml @@ -0,0 +1,8 @@ + + + + python3-aiml + aiml implements an interpreter for AIML + aiml implements an interpreter for AIML, the Artificial Intelligence Markup Language developed by Dr. Richard Wallace of the A.L.I.C.E. Foundation. It can be used to implement a conversational AI program. + + diff --git a/programming/language/python3/python3-bs4/actions.py b/programming/language/python3/python3-bs4/actions.py new file mode 100644 index 0000000000..e9dd9a4655 --- /dev/null +++ b/programming/language/python3/python3-bs4/actions.py @@ -0,0 +1,15 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import pythonmodules + +#WorkDir="bs4-%s" % get.srcVERSION() + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") \ No newline at end of file diff --git a/programming/language/python3/python3-bs4/pspec.xml b/programming/language/python3/python3-bs4/pspec.xml new file mode 100644 index 0000000000..125ba77526 --- /dev/null +++ b/programming/language/python3/python3-bs4/pspec.xml @@ -0,0 +1,45 @@ + + + + + python3-bs4 + https://www.crummy.com/software/BeautifulSoup/index.html + + PisiLinux Community + admins@pisilinux.org + + programming.language.python3 + custom:unknown + library + This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. g + The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4. This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup. + https://files.pythonhosted.org/packages/source/b/bs4/bs4-0.0.1.tar.gz + + python3-devel + python3-setuptools + python3-beautifulsoup4 + + + + + python3-bs4 + This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-bs4 + + + + + + 2022-01-23 + 0.0.1 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/programming/language/python3/python3-bs4/translations.xml b/programming/language/python3/python3-bs4/translations.xml new file mode 100644 index 0000000000..6d13a8bc10 --- /dev/null +++ b/programming/language/python3/python3-bs4/translations.xml @@ -0,0 +1,8 @@ + + + + python3-bs4 + This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. g + The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4. This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup. + + diff --git a/programming/language/python3/python3-gtts-token/actions.py b/programming/language/python3/python3-gtts-token/actions.py new file mode 100644 index 0000000000..c3ed8c828c --- /dev/null +++ b/programming/language/python3/python3-gtts-token/actions.py @@ -0,0 +1,15 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import pythonmodules + +#WorkDir="gtts-token-%s" % get.srcVERSION() + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") \ No newline at end of file diff --git a/programming/language/python3/python3-gtts-token/pspec.xml b/programming/language/python3/python3-gtts-token/pspec.xml new file mode 100644 index 0000000000..19168ea610 --- /dev/null +++ b/programming/language/python3/python3-gtts-token/pspec.xml @@ -0,0 +1,46 @@ + + + + + python3-gtts-token + https://github.com/Boudewijn26/gTTS-token + + PisiLinux Community + admins@pisilinux.org + + programming.language.python3 + MIT + library + Google Text to Speech token + A python implementation of the token validation of Google Translate. + https://files.pythonhosted.org/packages/source/g/gTTS-token/gTTS-token-1.1.4.tar.gz + + python3-devel + python3-setuptools + python3-requests + + + + + python3-gtts-token + Google Text to Speech token + + python3 + + + /usr/bin* + /usr/lib/python3* + /usr/share/doc/python3-gtts-token + + + + + + 2022-01-23 + 1.1.4 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/programming/language/python3/python3-gtts-token/translations.xml b/programming/language/python3/python3-gtts-token/translations.xml new file mode 100644 index 0000000000..3348db82d5 --- /dev/null +++ b/programming/language/python3/python3-gtts-token/translations.xml @@ -0,0 +1,8 @@ + + + + python3-gtts-token + Google Text to Speech token + A python implementation of the token validation of Google Translate. + + diff --git a/programming/language/python3/python3-gtts/actions.py b/programming/language/python3/python3-gtts/actions.py new file mode 100644 index 0000000000..6204114273 --- /dev/null +++ b/programming/language/python3/python3-gtts/actions.py @@ -0,0 +1,15 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import pythonmodules + +#WorkDir="gtts-%s" % get.srcVERSION() + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") \ No newline at end of file diff --git a/programming/language/python3/python3-gtts/pspec.xml b/programming/language/python3/python3-gtts/pspec.xml new file mode 100644 index 0000000000..3ecea8f5de --- /dev/null +++ b/programming/language/python3/python3-gtts/pspec.xml @@ -0,0 +1,47 @@ + + + + + python3-gtts + https://github.com/pndurette/gTTS + + PisiLinux Community + admins@pisilinux.org + + programming.language.python3 + MIT + library + Google Text to Speech (TTS) API + Module and command line utility to save spoken text to mp3 via the Google Text to Speech (TTS) API + https://github.com/pndurette/gTTS/archive/v2.2.3.tar.gz + + python3-devel + python3-setuptools + python3-click + python3-requests + + + + + python3-gtts + Google Text to Speech (TTS) API + + python3 + + + /usr/bin* + /usr/lib/python3* + /usr/share/doc/python3-gtts + + + + + + 2022-01-23 + 2.2.3 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/programming/language/python3/python3-gtts/translations.xml b/programming/language/python3/python3-gtts/translations.xml new file mode 100644 index 0000000000..d1284128d1 --- /dev/null +++ b/programming/language/python3/python3-gtts/translations.xml @@ -0,0 +1,8 @@ + + + + python3-gtts + Google Text to Speech (TTS) API + Module and command line utility to save spoken text to mp3 via the Google Text to Speech (TTS) API + + diff --git a/programming/language/python3/python3-pocketsphinx/actions.py b/programming/language/python3/python3-pocketsphinx/actions.py new file mode 100644 index 0000000000..e76ba01870 --- /dev/null +++ b/programming/language/python3/python3-pocketsphinx/actions.py @@ -0,0 +1,15 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import pythonmodules + +#WorkDir="pocketsphinx-%s" % get.srcVERSION() + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") diff --git a/programming/language/python3/python3-pocketsphinx/pspec.xml b/programming/language/python3/python3-pocketsphinx/pspec.xml new file mode 100644 index 0000000000..aca7512433 --- /dev/null +++ b/programming/language/python3/python3-pocketsphinx/pspec.xml @@ -0,0 +1,59 @@ + + + + + python3-pocketsphinx + https://github.com/AzatAI/pocketsphinx-python + + PisiLinux Community + admins@pisilinux.org + + programming.language.python3 + BSD + library + Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. + This package provides a python interface to CMU Sphinxbase and Pocketsphinx libraries created with SWIG and Setuptools. + https://files.pythonhosted.org/packages/13/6f/280431fc903d7bc1a0b7efe5dc837602f0f193e382b36006bf23178acab5/pocketsphinx2-0.1.17.tar.gz + + python3-devel + swig + python-setuptools + python3-setuptools + + + + + python3-pocketsphinx + Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. + + python3 + python3-soupsieve + + + /usr/lib/python3* + /usr/share/doc/python3-pocketsphinx + + + + + python-pocketsphinx + Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. + + python + + + /usr/lib/python* + /usr/share/doc/python-pocketsphinx + + + + + + 2022-01-23 + 0.1.17 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/programming/language/python3/python3-pocketsphinx/translations.xml b/programming/language/python3/python3-pocketsphinx/translations.xml new file mode 100644 index 0000000000..3ae00a905c --- /dev/null +++ b/programming/language/python3/python3-pocketsphinx/translations.xml @@ -0,0 +1,8 @@ + + + + python3-pocketsphinx + Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. + This package provides a python interface to CMU Sphinxbase and Pocketsphinx libraries created with SWIG and Setuptools. + + diff --git a/programming/language/python3/python3-pyalsaaudio/actions.py b/programming/language/python3/python3-pyalsaaudio/actions.py new file mode 100644 index 0000000000..8c1185f8a2 --- /dev/null +++ b/programming/language/python3/python3-pyalsaaudio/actions.py @@ -0,0 +1,15 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import pythonmodules + +#WorkDir="pyalsaaudio-%s" % get.srcVERSION() + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") diff --git a/programming/language/python3/python3-pyalsaaudio/pspec.xml b/programming/language/python3/python3-pyalsaaudio/pspec.xml new file mode 100644 index 0000000000..241145088e --- /dev/null +++ b/programming/language/python3/python3-pyalsaaudio/pspec.xml @@ -0,0 +1,61 @@ + + + + + python3-pyalsaaudio + http://larsimmisch.github.io/pyalsaaudio/ + + PisiLinux Community + admins@pisilinux.org + + programming.language.python3 + PSF + library + This package contains wrappers for accessing the ALSA API from Python. + It is fairly complete for PCM devices and Mixer access. + https://files.pythonhosted.org/packages/23/b1/672d496718562301ce2052b07196ca31874e4f1a497881ae44b2279a4e1d/pyalsaaudio-0.9.0.tar.gz + + python3-devel + python-setuptools + python-devel + python3-setuptools + alsa-lib-devel + + + + + python3-pyalsaaudio + This package contains wrappers for accessing the ALSA API from Python. + + python3 + alsa-lib + + + /usr/lib/python3* + /usr/share/doc/python3-pyalsaaudio + + + + + python-pyalsaaudio + This package contains wrappers for accessing the ALSA API from Python. + + python + alsa-lib + + + /usr/lib/python* + /usr/share/doc/python-pyalsaaudio + + + + + + 2022-01-23 + 0.9.0 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/programming/language/python3/python3-pyalsaaudio/translations.xml b/programming/language/python3/python3-pyalsaaudio/translations.xml new file mode 100644 index 0000000000..68c966cdb0 --- /dev/null +++ b/programming/language/python3/python3-pyalsaaudio/translations.xml @@ -0,0 +1,8 @@ + + + + python3-pyalsaaudio + This package contains wrappers for accessing the ALSA API from Python. + It is fairly complete for PCM devices and Mixer access. + + diff --git a/programming/language/python3/python3-pyttsx3/actions.py b/programming/language/python3/python3-pyttsx3/actions.py new file mode 100644 index 0000000000..da320a5348 --- /dev/null +++ b/programming/language/python3/python3-pyttsx3/actions.py @@ -0,0 +1,15 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import pythonmodules + +#WorkDir="pyttsx3-%s" % get.srcVERSION() + +def build(): + pythonmodules.compile(pyVer="3") + +def install(): + pythonmodules.install(pyVer="3") diff --git a/programming/language/python3/python3-pyttsx3/pspec.xml b/programming/language/python3/python3-pyttsx3/pspec.xml new file mode 100644 index 0000000000..3b81ceb8c7 --- /dev/null +++ b/programming/language/python3/python3-pyttsx3/pspec.xml @@ -0,0 +1,48 @@ + + + + + python3-pyttsx3 + https://github.com/nateshmbhat/pyttsx3 + + PisiLinux Community + admins@pisilinux.org + + programming.language.python3 + MPL2 + library + pyttsx3 is a text-to-speech conversion library in Python. + pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline, and is compatible with both Python 2 and 3. + https://github.com/nateshmbhat/pyttsx3/archive/v.2.90.tar.gz + + python3-devel + python3-setuptools + espeak-devel + python3-sphinx + + + + + python3-pyttsx3 + pyttsx3 is a text-to-speech conversion library in Python. + + python3 + espeak + python3-sphinx + + + /usr/lib/python3* + /usr/share/doc/python3-pyttsx3 + + + + + + 2022-01-23 + 2.90 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/programming/language/python3/python3-pyttsx3/translations.xml b/programming/language/python3/python3-pyttsx3/translations.xml new file mode 100644 index 0000000000..b54c8538b3 --- /dev/null +++ b/programming/language/python3/python3-pyttsx3/translations.xml @@ -0,0 +1,8 @@ + + + + python3-pyttsx3 + pyttsx3 is a text-to-speech conversion library in Python. + pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline, and is compatible with both Python 2 and 3. + +