Compare commits
2 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| f67b0c60bb | |||
| fa9304c7ff |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:410835514ba10809803cb9887d4270f392b59eaf365915bb94516af3f8b1d037
|
|
||||||
size 40609
|
|
||||||
@@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 23 11:17:28 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.4.4
|
||||||
|
* Improves response to Pulseaudio runtime failures
|
||||||
|
* Fixes multi-byte sound card names on macOS
|
||||||
|
* Improves response to Windows buffer underruns
|
||||||
|
* Improves behavior when playing nothing on Windows
|
||||||
|
* Implements named channel map elements on Linux
|
||||||
|
* Fixes empty soundcard list on macOS
|
||||||
|
- Adjust upstream source name in spec file
|
||||||
|
- Allow lower- and uppercase filenames for meta directory
|
||||||
|
- Switch build system from setuptools to pyproject.toml
|
||||||
|
* Add python-pip and python-wheel to BuildRequires
|
||||||
|
* Replace %python_build with %pyproject_wheel
|
||||||
|
* Replace %python_install with %pyproject_install
|
||||||
|
- Switch package to modern Python Stack on SLE-15
|
||||||
|
* Use Python 3.11 on SLE-15 by default
|
||||||
|
* Drop support for older Python versions
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 10 08:57:14 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Mon Jun 10 08:57:14 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-SoundCard
|
# spec file for package python-SoundCard
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,23 +16,21 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?sle15_python_module_pythons}
|
||||||
%define skip_python2 1
|
|
||||||
%if 0%{suse_version} >= 1550
|
|
||||||
%define skip_python36 1
|
|
||||||
%endif
|
|
||||||
Name: python-SoundCard
|
Name: python-SoundCard
|
||||||
Version: 0.4.3
|
Version: 0.4.4
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python package to play and record audio
|
Summary: Python package to play and record audio
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
URL: https://github.com/bastibe/SoundCard
|
URL: https://github.com/bastibe/SoundCard
|
||||||
Source0: https://files.pythonhosted.org/packages/source/S/SoundCard/SoundCard-%{version}.tar.gz
|
Source0: https://files.pythonhosted.org/packages/source/s/soundcard/soundcard-%{version}.tar.gz
|
||||||
Source1: https://raw.githubusercontent.com/bastibe/SoundCard/master/LICENSE
|
Source1: https://raw.githubusercontent.com/bastibe/SoundCard/master/LICENSE
|
||||||
Source100: python-SoundCard-rpmlintrc
|
Source100: python-SoundCard-rpmlintrc
|
||||||
BuildRequires: %{python_module cffi}
|
BuildRequires: %{python_module cffi}
|
||||||
BuildRequires: %{python_module numpy}
|
BuildRequires: %{python_module numpy}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
%if 0%{?sle_version} && 0%{?sle_version} < 150300
|
%if 0%{?sle_version} && 0%{?sle_version} < 150300
|
||||||
@@ -56,19 +54,20 @@ across platforms, naming schemes and block sizes can vary between
|
|||||||
devices and platforms.
|
devices and platforms.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n SoundCard-%{version}
|
%setup -q -n soundcard-%{version}
|
||||||
cp %{SOURCE1} .
|
cp %{SOURCE1} .
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/soundcard
|
||||||
|
%{python_sitelib}/[Ss]ound[Cc]ard-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
3
soundcard-0.4.4.tar.gz
Normal file
3
soundcard-0.4.4.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:87df9c4b8ec97585fe440a1d9dbafabcece58eae5857ed005e6bb385b2179cff
|
||||||
|
size 40786
|
||||||
Reference in New Issue
Block a user