commit 94ac740ee013c6082694e5f087fde200a751a545f9ec02f148ea95ba6aab4829 Author: Sascha Peilicke Date: Mon Jan 23 10:27:30 2012 +0000 Accepting request 101077 from home:malcolmlewis:Gnome New package, needed for pushing espeak-gui to factory via GNOME:Apps. OBS-URL: https://build.opensuse.org/request/show/101077 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-espeak?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/python-espeak-0.4.tar.gz b/python-espeak-0.4.tar.gz new file mode 100644 index 0000000..00663d4 --- /dev/null +++ b/python-espeak-0.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7280060ceecbfd2386b7e24aa34cfbcbd0307195fd12bf9f086f369540fd166 +size 16885 diff --git a/python-espeak.changes b/python-espeak.changes new file mode 100644 index 0000000..87e079d --- /dev/null +++ b/python-espeak.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Sat Jan 21 05:41:49 UTC 2012 - malcolmlewis@opensuse.org + +- Initial build. + diff --git a/python-espeak.spec b/python-espeak.spec new file mode 100644 index 0000000..308732e --- /dev/null +++ b/python-espeak.spec @@ -0,0 +1,54 @@ +# +# spec file for package python-espeak +# +# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 Malcolm J Lewis +# +# 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/ +# + +Name: python-espeak +Version: 0.4 +Release: 0 +License: GPL-3.0 +Summary: Python bindings for espeak +Url: https://launchpad.net/python-espeak +Group: Development/Languages/Python +Source0: http://launchpad.net/python-espeak/trunk/0.4/+download/python-espeak-0.4.tar.gz +BuildRequires: espeak-devel +BuildRequires: fdupes +BuildRequires: gcc-c++ +BuildRequires: python-devel +BuildRoot: %{_tmppath}/%{name}-%{version}-build +%py_requires +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")} + +%description +Simple to use yet complete Python bindings for the eSpeak speech synthesizer. + +%prep +%setup -q + +%build +python setup.py build + +%install +python setup.py install -O1 --skip-build --prefix=%{_prefix} --root=%{buildroot} +%fdupes %{buildroot} + +%files +%defattr(-,root,root) +%doc COPYING NEWS +%{python_sitearch}/espeak/ +%{python_sitearch}/python_espeak-%{version}-py%{py_ver}.egg-info + +%changelog