14
0

Accepting request 140015 from home:prusnak:branches:devel:languages:python

- updated to 0.2.7
- fixed build

OBS-URL: https://build.opensuse.org/request/show/140015
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyAudio?expand=0&rev=2
This commit is contained in:
Ismail Dönmez
2012-11-06 08:42:59 +00:00
committed by Git OBS Bridge
parent 86b08a2d94
commit f71f9c8b2c
5 changed files with 76 additions and 82 deletions

View File

@@ -1,5 +1,65 @@
-------------------------------------------------------------------
Wed Oct 3 14:33:38 UTC 2012 - mvyskocil@suse.com
#
# spec file for package python-PyAudio
#
# Copyright (c) 2012 SUSE LINUX Products 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.
- Initial packaging of python-pyaudio for openSUSE
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python-PyAudio
Version: 0.2.7
Release: 0
License: MIT
Summary: Python Bindings for PortAudio v19
Url: http://people.csail.mit.edu/hubert/pyaudio/
Group: Development/Libraries/Python
Source0: http://people.csail.mit.edu/hubert/pyaudio/packages/pyaudio-%{version}.tar.gz
BuildRequires: fdupes
BuildRequires: portaudio-devel
BuildRequires: python-devel
BuildRequires: python-distribute
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
PyAudio provides Python bindings for PortAudio v19, the cross-platform audio I/O library.
With PyAudio, you can easily use Python to play and record audio streams on a variety
of platforms (e.g., GNU/Linux, Microsoft Windows, and Mac OS X).
%package docs
Summary: Documentation for %{name}
%description docs
Documentation for python-PyAudio
%prep
%setup -q -n PyAudio-%{version}
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%fdupes -s %{buildroot}/%{_prefix}
%files
%defattr(-,root,root)
%doc CHANGELOG README
%{python_sitearch}/*egg-info
%{python_sitearch}/_portaudio.so
%{python_sitearch}/pyaudio.py*
%files docs
%defattr(-,root,root)
%doc docs
%changelog