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
This commit is contained in:
commit
4a03700b88
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
pulsectl-17.12.2.tar.gz
Normal file
3
pulsectl-17.12.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:67d7dbaeea4f5fe6362f2deeb56ede0017339d692c246f74b99ddd92df15dca4
|
||||
size 32709
|
12
python-pulsectl.changes
Normal file
12
python-pulsectl.changes
Normal file
@ -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
|
69
python-pulsectl.spec
Normal file
69
python-pulsectl.spec
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user