From 2587aba10528772e71821d3fedaebb72e4bbd00572c9f9f5096ab52bc53d0ae3 Mon Sep 17 00:00:00 2001 From: Todd R Date: Fri, 2 Nov 2018 04:45:26 +0000 Subject: [PATCH] provides GIL-less audio playback support to other python packages OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pa-ringbuffer?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++ .gitignore | 1 + pa-ringbuffer-0.1.3.tar.gz | 3 ++ python-pa-ringbuffer.changes | 4 +++ python-pa-ringbuffer.spec | 69 ++++++++++++++++++++++++++++++++++++ 5 files changed, 100 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 pa-ringbuffer-0.1.3.tar.gz create mode 100644 python-pa-ringbuffer.changes create mode 100644 python-pa-ringbuffer.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/pa-ringbuffer-0.1.3.tar.gz b/pa-ringbuffer-0.1.3.tar.gz new file mode 100644 index 0000000..2b4d31f --- /dev/null +++ b/pa-ringbuffer-0.1.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfe5ed7f581befb46319bf6642f883f69ca917f8450628abfab4255a911b7df0 +size 7275 diff --git a/python-pa-ringbuffer.changes b/python-pa-ringbuffer.changes new file mode 100644 index 0000000..350878e --- /dev/null +++ b/python-pa-ringbuffer.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Fri Nov 2 04:37:28 UTC 2018 - Todd R + +- Initial version diff --git a/python-pa-ringbuffer.spec b/python-pa-ringbuffer.spec new file mode 100644 index 0000000..b038dc2 --- /dev/null +++ b/python-pa-ringbuffer.spec @@ -0,0 +1,69 @@ +# +# spec file for package python-pa-ringbuffer +# +# 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 https://bugs.opensuse.org/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-pa-ringbuffer +Version: 0.1.3 +Release: 0 +Summary: Python wrapper for PortAudio's ring buffer +License: MIT +Group: Development/Languages/Python +Url: https://github.com/spatialaudio/python-pa-ringbuffer +Source: https://files.pythonhosted.org/packages/source/p/pa-ringbuffer/pa-ringbuffer-%{version}.tar.gz +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-cffi +BuildArch: noarch + +%python_subpackages + +%description +The ring buffer functionality is typically not included in binary +distributions of PortAudio, therefore most Python wrappers don't include it, +either. + +The pa_ringbuffer module provides only a Python wrapper, the actual +PortAudio ring buffer code has to be compiled separately. +It can be used on any Python version where CFFI is available. + +This module is designed to be used together with the sounddevice module (it +might work with other modules, too) for non-blocking transfer of data between +the main Python program and an audio callback function which is implemented in C +or some other compiled language. + +This module is not meant to be used on its own, it is only useful in cooperation +with another Python module using CFFI. + +%prep +%setup -q -n pa-ringbuffer-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%files %{python_files} +%doc NEWS.rst README.rst +%license LICENSE +%{python_sitelib}/* + +%changelog