* documentation updates
* IEC958 fixes
* hctltest1.py: Skip read/write if no values in element
* alsamixer: fix return value in pyalsamixerelement_getvolumedb()
* alsaseq: Fix type check in set_time()
For details, see:
https://www.alsa-project.org/wiki/Changes_v1.2.13_v1.2.14#alsa-python
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/python-alsa?expand=0&rev=13
59 lines
1.7 KiB
RPMSpec
59 lines
1.7 KiB
RPMSpec
#
|
|
# spec file for package python-alsa
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC
|
|
#
|
|
# 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-alsa
|
|
Version: 1.2.14
|
|
Release: 0
|
|
Summary: Python ALSA binding
|
|
License: GPL-2.0-only AND LGPL-2.1-or-later
|
|
Group: Development/Libraries/Python
|
|
URL: https://www.alsa-project.org
|
|
Source: %{url}/files/pub/pyalsa/pyalsa-%{version}.tar.bz2
|
|
Source1: %{url}/files/pub/pyalsa/pyalsa-%{version}.tar.bz2.sig
|
|
Source2: COPYING
|
|
Source3: COPYING.LIB
|
|
Source4: %{name}.keyring
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: alsa-devel
|
|
BuildRequires: python-rpm-macros
|
|
Provides: pyalsa = %{version}
|
|
Obsoletes: pyalsa < %{version}
|
|
%python_subpackages
|
|
|
|
%description
|
|
This package provides the Python binding to ALSA.
|
|
|
|
%prep
|
|
%setup -q -n pyalsa-%{version}
|
|
cp %{SOURCE2} %{SOURCE3} .
|
|
|
|
%build
|
|
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
|
|
%files %{python_files}
|
|
%license COPYING COPYING.LIB
|
|
%{python_sitearch}/*
|
|
|
|
%changelog
|