forked from pool/python-gTTS
- version update to 2.2.4 2.2.4 (2022-03-14) ------------------ Features ~~~~~~~ - Added Malay language support (`#316 <https://github.com/pndurette/gTTS/issues/316>`_) - Added Hebrew language support (`#324 <https://github.com/pndurette/gTTS/issues/324>`_) - Added new ``gTTS.stream()`` method to stream bytes (`#319 <https://github.com/pndurette/gTTS/issues/319>`_) Misc ~~~ - `#334 <https://github.com/pndurette/gTTS/issues/334>`_ 2.2.3 (2021-06-17) ------------------ Features ~~~~~~~ - Added Bulgarian language support (`#302 <https://github.com/pndurette/gTTS/issues/302>`_) 2.2.2 (2021-02-03) ------------------ Features ~~~~~~~ - Adds a language fallback feature for deprecated languages to maintain compatiblity (e.g. ``en-us`` becomes ``en``). Fallback can be disabled with ``lang_check=False`` or ``--nocheck`` for the cli (`#267 <https://github.com/pndurette/gTTS/issues/267>`_) Bugfixes ~~~~~~~ - Fix Python 2.7 compatiblity (!). Python 2 is long gone, but the cut wasn't clearly communicated for gTTS, so it was restored. Python 2 support will be completely removed in the next major release. (`#255 <https://github.com/pndurette/gTTS/issues/255>`_) - Language code case sensitivity is maintained throughout (`#267 <https://github.com/pndurette/gTTS/issues/267>`_) Deprecations and Removals OBS-URL: https://build.opensuse.org/request/show/963703 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-gTTS?expand=0&rev=18
84 lines
2.6 KiB
RPMSpec
84 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package python-gTTS
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-gTTS
|
|
Version: 2.2.4
|
|
Release: 0
|
|
Summary: Python module to create MP3 files from spoken text via the Google TTS API
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/pndurette/gTTS
|
|
Source: https://github.com/pndurette/gTTS/archive/refs/tags/v%{version}.tar.gz#/gTTS-%{version}.tar.gz
|
|
BuildRequires: %{python_module beautifulsoup4}
|
|
BuildRequires: %{python_module click}
|
|
BuildRequires: %{python_module gTTS-token >= 1.1.3}
|
|
BuildRequires: %{python_module pytest >= 3.9}
|
|
BuildRequires: %{python_module requests}
|
|
BuildRequires: %{python_module setuptools >= 38.6}
|
|
BuildRequires: %{python_module six}
|
|
BuildRequires: %{python_module testfixtures}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-beautifulsoup4
|
|
Requires: python-click
|
|
Requires: python-gTTS-token >= 1.1.3
|
|
Requires: python-requests
|
|
Requires: python-setuptools
|
|
Requires: python-six
|
|
Requires(post): update-alternatives
|
|
Requires(postun):update-alternatives
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
gTTS is a Python interface for Google's Text to Speech API. An MP3
|
|
file may be created with the gTTS module or the gtts-cli command line
|
|
utility. It allows unlimited lengths to be spoken by tokenizing long
|
|
sentences where the speech would naturally pause.
|
|
|
|
%prep
|
|
%setup -q -n gTTS-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_clone -a %{buildroot}%{_bindir}/gtts-cli
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
# tests are sadly mostly online
|
|
# https://github.com/pndurette/gTTS/issues/343
|
|
#%%pytest
|
|
|
|
%post
|
|
%python_install_alternative gtts-cli
|
|
|
|
%postun
|
|
%python_uninstall_alternative gtts-cli
|
|
|
|
%files %{python_files}
|
|
%doc CHANGELOG.rst README.md
|
|
%license LICENSE
|
|
%python_alternative %{_bindir}/gtts-cli
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|