From 86b08a2d9420b7dabe09fdef7906fb05797e947656e36e29f6d25f606359be3f Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Mon, 8 Oct 2012 09:28:17 +0000 Subject: [PATCH] Accepting request 137022 from home:mvyskocil:branches:Education add python-PyAudio to d:l:python OBS-URL: https://build.opensuse.org/request/show/137022 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyAudio?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++++ .gitignore | 1 + pyaudio-0.2.4.tar.gz | 3 ++ python-PyAudio.spec | 5 +++ python-PyaAdio.spec | 76 ++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 108 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 pyaudio-0.2.4.tar.gz create mode 100644 python-PyAudio.spec create mode 100644 python-PyaAdio.spec 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/pyaudio-0.2.4.tar.gz b/pyaudio-0.2.4.tar.gz new file mode 100644 index 0000000..6b1c23e --- /dev/null +++ b/pyaudio-0.2.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3b6cc76116ddf688e658c41363f63590762c411dad43beebd04f908d52048e +size 80308 diff --git a/python-PyAudio.spec b/python-PyAudio.spec new file mode 100644 index 0000000..3024286 --- /dev/null +++ b/python-PyAudio.spec @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Wed Oct 3 14:33:38 UTC 2012 - mvyskocil@suse.com + +- Initial packaging of python-pyaudio for openSUSE + diff --git a/python-PyaAdio.spec b/python-PyaAdio.spec new file mode 100644 index 0000000..99c82cc --- /dev/null +++ b/python-PyaAdio.spec @@ -0,0 +1,76 @@ +# +# spec file for package +# +# 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. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +Name: python-PyAudio +Version: 0.2.4 +Release: 0 +License: MIT +Summary: Python bindings for portaudio +Url: http://people.csail.mit.edu/hubert/pyaudio/ +Group: Development/Libraries/Python +Source0: http://people.csail.mit.edu/hubert/pyaudio/packages/pyaudio-0.2.4.tar.gz +BuildRequires: fdupes +BuildRequires: python-devel +BuildRequires: python-distribute +BuildRequires: portaudio-devel +%{py_requires} +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +PyAudio provides Python bindings for PortAudio, the cross-platform audio I/O +library. With PyAudio, you can easily use Python to play and record audio on a +variety of platforms. + +PyAudio is designed to work with the PortAudio v19 API 2.0. Note that PyAudio +currently only supports blocking-mode audio I/O. + +%package docs +Summary: Documentation for %{name} + +%description docs +PyAudio provides Python bindings for PortAudio, the cross-platform audio I/O +library. With PyAudio, you can easily use Python to play and record audio on a +variety of platforms. + +This package provides a documentation + +%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 +%{py_sitedir}/*egg-info +%{py_sitedir}/_portaudio.so +%{py_sitedir}/pyaudio.py* + +%files docs +%defattr(-,root,root) +%doc docs + +%changelog +