commit e02b0257ca1771056e92ff50d931b990e766a1b9defc22b63efdda3d315c659b Author: Antonio Larrosa Date: Thu May 3 11:05:30 2018 +0000 Accepting request 603631 from devel:languages:python:misc Move back the package to d:l:p to try to submit it to Factory again OBS-URL: https://build.opensuse.org/request/show/603631 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-gTTS?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/gTTS-1.2.2.tar.gz b/gTTS-1.2.2.tar.gz new file mode 100644 index 0000000..ede7b51 --- /dev/null +++ b/gTTS-1.2.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63edbd7babebc60ba328fd6a798961f9ec757852b0e947d064b4b958116e4516 +size 9304 diff --git a/python-gTTS.changes b/python-gTTS.changes new file mode 100644 index 0000000..10ffef9 --- /dev/null +++ b/python-gTTS.changes @@ -0,0 +1,14 @@ +------------------------------------------------------------------- +Thu May 3 09:36:21 UTC 2018 - alarrosa@suse.com + +- Use %license for the LICENSE file + +------------------------------------------------------------------- +Sun Mar 4 13:08:06 UTC 2018 - jengelh@inai.de + +- Focus description on gTTS. + +------------------------------------------------------------------- +Mon Sep 4 16:53:35 UTC 2017 - alarrosa@suse.com + +- Initial release of python-gTTS 1.2.2 diff --git a/python-gTTS.spec b/python-gTTS.spec new file mode 100644 index 0000000..29f3c98 --- /dev/null +++ b/python-gTTS.spec @@ -0,0 +1,61 @@ +# +# spec file for package python-gTTS +# +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# +# 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 http://bugs.opensuse.org/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-gTTS +Version: 1.2.2 +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://files.pythonhosted.org/packages/source/g/gTTS/gTTS-%{version}.tar.gz +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-gTTS-token +Requires: python-requests +Requires: python-six +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_expand %fdupes %{buildroot}%{$python_sitelib} + +%files %{python_files} +%defattr(-,root,root,-) +%doc CHANGELOG.md README.md +%license LICENSE +%python3_only %{_bindir}/gtts-cli +%python3_only %{_bindir}/gtts-cli.py +%{python_sitelib}/* + +%changelog