15
0

- update to 14.0.1:

* Add debug prints to HomeAssistantController
  * Add JBL Link Portable to known devices
  * Fix race in HomeAssistantController
  * Revert "Remove socket timeouts"
  * Remove socket timeouts
  * Run rstcheck in CI
  * Remove mypy exclude pattern
  * Update default URL used in media example
- update to 14.0.0:
  * Most user facing functions accepting an optional callback
    function have been changed such that the optional arguments
    are now kwarg only
  * The signature of callbacks called when requests are completed
    has been changed
  * Some named tuples have been replaced with dataclasses
  * The ServiceInfo class has been split in two classes
  * Parameter names of `MediaStatusListener.load_media_failed`
    has been changed
  * Many user facing functions now have a default timeout, and
    will raise when that timeout expires
  * It's no longer supported to use pychromecast with event
    custom loops

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyChromecast?expand=0&rev=54
This commit is contained in:
2024-05-07 20:19:17 +00:00
committed by Git OBS Bridge
parent ca38357d39
commit 66982a57af
4 changed files with 38 additions and 9 deletions

View File

@@ -16,16 +16,18 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
%{?sle15_python_module_pythons}
%global skip_python310 1
Name: python-PyChromecast
Version: 13.1.0
Version: 14.0.1
Release: 0
Summary: Python module to talk to Google Chromecast
License: MIT
URL: https://github.com/balloob/pychromecast
Source: https://files.pythonhosted.org/packages/source/P/PyChromecast/PyChromecast-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-casttube >= 0.2.0
@@ -46,10 +48,10 @@ multi-room setups with Audio cast devices.
%setup -q -n PyChromecast-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
# no tests even on GitHub https://github.com/balloob/pychromecast/issues/333
@@ -59,6 +61,6 @@ multi-room setups with Audio cast devices.
%license LICENSE
%doc README.rst
%{python_sitelib}/pychromecast
%{python_sitelib}/PyChromecast-%{version}-*.egg-info
%{python_sitelib}/PyChromecast-%{version}.dist-info
%changelog