From 4a03700b88b26ae12a1499541caaf66f8cf84f69eed028ee246b617b28506790 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Tue, 9 Jan 2018 16:11:12 +0000 Subject: [PATCH] Accepting request 563062 from home:alarrosa:branches:devel:languages:python New package python-pulsectl, required by mycroft-core OBS-URL: https://build.opensuse.org/request/show/563062 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pulsectl?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++++ .gitignore | 1 + pulsectl-17.12.2.tar.gz | 3 ++ python-pulsectl.changes | 12 +++++++ python-pulsectl.spec | 69 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 108 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 pulsectl-17.12.2.tar.gz create mode 100644 python-pulsectl.changes create mode 100644 python-pulsectl.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/pulsectl-17.12.2.tar.gz b/pulsectl-17.12.2.tar.gz new file mode 100644 index 0000000..c7a0637 --- /dev/null +++ b/pulsectl-17.12.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d7dbaeea4f5fe6362f2deeb56ede0017339d692c246f74b99ddd92df15dca4 +size 32709 diff --git a/python-pulsectl.changes b/python-pulsectl.changes new file mode 100644 index 0000000..c9139a5 --- /dev/null +++ b/python-pulsectl.changes @@ -0,0 +1,12 @@ +------------------------------------------------------------------- +Fri Jan 5 09:16:09 UTC 2018 - alarrosa@suse.com + +- Update to version 17.12.2 + * Use pa_card_profile_info2 / profiles2 introspection API. + * Only adds one "available" property to PulseCardProfileInfo. + Requires pulseaudio/libpulse 5.0+. + +------------------------------------------------------------------- +Fri Nov 10 15:47:08 UTC 2017 - alarrosa@suse.com + +- Initial release of python-pulsectl 17.9.3 diff --git a/python-pulsectl.spec b/python-pulsectl.spec new file mode 100644 index 0000000..16f012f --- /dev/null +++ b/python-pulsectl.spec @@ -0,0 +1,69 @@ +# +# spec file for package python-pulsectl +# +# Copyright (c) 2017 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-%{**}} +%bcond_without test +Name: python-pulsectl +Version: 17.12.2 +Release: 0 +License: MIT +Summary: Python high-level interface and ctypes-based bindings for PulseAudio (libpulse) +Url: http://github.com/mk-fg/python-pulse-control +Group: Development/Languages/Python +Source: https://files.pythonhosted.org/packages/source/p/pulsectl/pulsectl-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +%if %{with test} +BuildRequires: pulseaudio +BuildRequires: pulseaudio-utils +BuildRequires: libpulse-devel >= 5.0 +%endif +BuildRequires: fdupes +Requires: python-setuptools +Requires: pulseaudio >= 5.0 +BuildArch: noarch + +%python_subpackages + +%description +Python (3.x and 2.x) high-level interface and ctypes-based bindings for +PulseAudio (libpulse), mostly focused on mixer-like controls and +introspection-related operations (as opposed to e.g. submitting sound samples to +play, player-like client). + +%prep +%setup -q -n pulsectl-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%if %{with test} +%check +%python_exec setup.py test +%endif + +%files %{python_files} +%defattr(-,root,root,-) +%doc CHANGES.rst COPYING README.rst +%{python_sitelib}/* + +%changelog