forked from pool/python-pulsectl
Compare commits
28 Commits
Author | SHA256 | Date | |
---|---|---|---|
91693a6f96 | |||
d251f7978a | |||
2982f6f812 | |||
37024dd28a | |||
bace7c6482 | |||
4e9a995cac | |||
f18f330cdc | |||
a5141fbc5d | |||
625c408fff | |||
76901c2b79 | |||
47c8dbfe61 | |||
b0b81c77bd | |||
18eb2208f5 | |||
0d50e71685 | |||
498bb2afce | |||
|
7d876e7a20 | ||
854a1eb9f7 | |||
561502444a | |||
|
736f1cb2c3 | ||
a347ef68ad | |||
b3a031ed85 | |||
c54be1ad9e | |||
|
2db30ad65b | ||
33d8f0d81f | |||
3a6c0ec326 | |||
5cbd84d85f | |||
416139eab9 | |||
|
4a03700b88 |
3
pulsectl-24.12.0.tar.gz
Normal file
3
pulsectl-24.12.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:288d6715232ac6f3dcdb123fbecaa2c0b9a50ea4087e6e87c3f841ab0a8a07fc
|
||||||
|
size 41200
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:697ed50e7d452e78678ae38e2ab935843008bec448955283cd0fb362867e3165
|
|
||||||
size 41166
|
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b051506d0d73d3cc4357cefd3de17bb859d7ecf004e994b0f7cfa87851bc7156
|
|
||||||
size 41171
|
|
@@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 11 05:49:26 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Switch to pyproject macros.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 26 11:39:55 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 24.12.0
|
||||||
|
* expose profile_list (and n_profiles too) for PulseCardPortInfo
|
||||||
|
* Setup/changelog version bump
|
||||||
|
- Use Python 3.11 on SLE-15 by default
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Nov 23 08:30:41 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 24.11.0:
|
||||||
|
* pulsectl: check return from pa_context_new to be not NULL
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Aug 31 11:42:13 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Sat Aug 31 11:42:13 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-pulsectl
|
# spec file for package python-pulsectl
|
||||||
#
|
#
|
||||||
# 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,16 +16,19 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%{?sle15_python_module_pythons}
|
||||||
%bcond_without test
|
%bcond_without test
|
||||||
Name: python-pulsectl
|
Name: python-pulsectl
|
||||||
Version: 24.8.0
|
Version: 24.12.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python high-level interface and ctypes-based bindings for PulseAudio (libpulse)
|
Summary: Python high-level interface and ctypes-based bindings for PulseAudio (libpulse)
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/mk-fg/python-pulse-control
|
URL: https://github.com/mk-fg/python-pulse-control
|
||||||
Source: https://files.pythonhosted.org/packages/source/p/pulsectl/pulsectl-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/p/pulsectl/pulsectl-%{version}.tar.gz
|
||||||
|
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
|
||||||
Requires: python-setuptools
|
Requires: python-setuptools
|
||||||
@@ -52,10 +55,10 @@ play, player-like client).
|
|||||||
%setup -q -n pulsectl-%{version}
|
%setup -q -n pulsectl-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
@@ -67,6 +70,6 @@ play, player-like client).
|
|||||||
%license COPYING
|
%license COPYING
|
||||||
%doc CHANGES.rst README.rst
|
%doc CHANGES.rst README.rst
|
||||||
%{python_sitelib}/pulsectl
|
%{python_sitelib}/pulsectl
|
||||||
%{python_sitelib}/pulsectl-%{version}*-info
|
%{python_sitelib}/pulsectl-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user