2018-01-09 17:11:12 +01:00
|
|
|
#
|
|
|
|
# spec file for package python-pulsectl
|
|
|
|
#
|
2023-02-24 11:59:40 +01:00
|
|
|
# Copyright (c) 2023 SUSE LLC
|
2018-01-09 17:11:12 +01:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2018-12-04 14:48:40 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
|
|
#
|
2018-01-09 17:11:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
%bcond_without test
|
|
|
|
Name: python-pulsectl
|
2023-12-09 11:02:20 +01:00
|
|
|
Version: 23.5.2
|
2018-01-09 17:11:12 +01:00
|
|
|
Release: 0
|
|
|
|
Summary: Python high-level interface and ctypes-based bindings for PulseAudio (libpulse)
|
2018-12-04 14:48:40 +01:00
|
|
|
License: MIT
|
2018-01-09 17:11:12 +01:00
|
|
|
Group: Development/Languages/Python
|
2021-04-16 15:45:00 +02:00
|
|
|
URL: https://github.com/mk-fg/python-pulse-control
|
2018-01-09 17:11:12 +01:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/p/pulsectl/pulsectl-%{version}.tar.gz
|
|
|
|
BuildRequires: %{python_module setuptools}
|
2018-12-04 18:18:55 +01:00
|
|
|
BuildRequires: fdupes
|
2018-12-04 14:48:40 +01:00
|
|
|
BuildRequires: python-rpm-macros
|
2021-04-16 15:45:00 +02:00
|
|
|
Requires: python-setuptools
|
|
|
|
BuildArch: noarch
|
2021-02-25 15:59:28 +01:00
|
|
|
%if 0%{?sle_version} && 0%{?sle_version} < 150300
|
|
|
|
Requires: pulseaudio
|
|
|
|
%else
|
|
|
|
Requires: pulseaudio-daemon
|
|
|
|
%endif
|
2018-01-09 17:11:12 +01:00
|
|
|
%if %{with test}
|
2021-02-25 15:59:28 +01:00
|
|
|
BuildRequires: libpulse-devel
|
2018-01-09 17:11:12 +01:00
|
|
|
BuildRequires: pulseaudio
|
|
|
|
BuildRequires: pulseaudio-utils
|
|
|
|
%endif
|
|
|
|
%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
|
2023-02-24 11:59:40 +01:00
|
|
|
%pyunittest discover
|
2018-01-09 17:11:12 +01:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%files %{python_files}
|
2018-12-04 18:18:55 +01:00
|
|
|
%license COPYING
|
|
|
|
%doc CHANGES.rst README.rst
|
2023-02-24 11:59:40 +01:00
|
|
|
%{python_sitelib}/pulsectl
|
|
|
|
%{python_sitelib}/pulsectl-%{version}*-info
|
2018-01-09 17:11:12 +01:00
|
|
|
|
|
|
|
%changelog
|