Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-PyChromecast for openSUSE:Factory checked in at 2022-12-06 14:23:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-PyChromecast (Old) and /work/SRC/openSUSE:Factory/.python-PyChromecast.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-PyChromecast" Tue Dec 6 14:23:47 2022 rev:21 rq:1040445 version:13.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-PyChromecast/python-PyChromecast.changes 2022-08-19 17:59:11.128440768 +0200 +++ /work/SRC/openSUSE:Factory/.python-PyChromecast.new.1835/python-PyChromecast.changes 2022-12-06 14:24:03.429975581 +0100 @@ -1,0 +2,16 @@ +Mon Dec 5 19:29:31 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com> + +- Update to version 13.0.1 + * Make sure __version__ is consistent + * Make pylint happier + * Drop __version__ + +- Update to version 13.0.0 + * Adapt to pylint 2.15.5 (#670) @emontnemery + * Added three unknown models with cast-types (#658) @heikkih + * Revert "pin to protobuf v3" (#669) @emontnemery + * Pin github actions and add dependabot actions ecosystem (#655) @MartinHjelmare + * Improve output of discovery examples (#653) @emontnemery + * Update version_info in init (#640) @clach04 + +------------------------------------------------------------------- Old: ---- PyChromecast-12.1.4.tar.gz New: ---- PyChromecast-13.0.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-PyChromecast.spec ++++++ --- /var/tmp/diff_new_pack.rwRp6J/_old 2022-12-06 14:24:06.217999350 +0100 +++ /var/tmp/diff_new_pack.rwRp6J/_new 2022-12-06 14:24:06.225999418 +0100 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-PyChromecast -Version: 12.1.4 +Version: 13.0.1 Release: 0 Summary: Python module to talk to Google Chromecast License: MIT ++++++ PyChromecast-12.1.4.tar.gz -> PyChromecast-13.0.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyChromecast-12.1.4/PKG-INFO new/PyChromecast-13.0.1/PKG-INFO --- old/PyChromecast-12.1.4/PKG-INFO 2022-06-21 17:47:10.008138400 +0200 +++ new/PyChromecast-13.0.1/PKG-INFO 2022-11-21 13:38:21.985876800 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: PyChromecast -Version: 12.1.4 +Version: 13.0.1 Summary: Python module to talk to Google Chromecast. Home-page: https://github.com/balloob/pychromecast Author: Paulus Schoutsen @@ -172,5 +172,3 @@ .. _@rmkraus: https://github.com/rmkraus .. _@balloob: https://github.com/balloob .. _Fred Clift: https://github.com/minektur - - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyChromecast-12.1.4/PyChromecast.egg-info/PKG-INFO new/PyChromecast-13.0.1/PyChromecast.egg-info/PKG-INFO --- old/PyChromecast-12.1.4/PyChromecast.egg-info/PKG-INFO 2022-06-21 17:47:09.000000000 +0200 +++ new/PyChromecast-13.0.1/PyChromecast.egg-info/PKG-INFO 2022-11-21 13:38:21.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: PyChromecast -Version: 12.1.4 +Version: 13.0.1 Summary: Python module to talk to Google Chromecast. Home-page: https://github.com/balloob/pychromecast Author: Paulus Schoutsen @@ -172,5 +172,3 @@ .. _@rmkraus: https://github.com/rmkraus .. _@balloob: https://github.com/balloob .. _Fred Clift: https://github.com/minektur - - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyChromecast-12.1.4/PyChromecast.egg-info/requires.txt new/PyChromecast-13.0.1/PyChromecast.egg-info/requires.txt --- old/PyChromecast-12.1.4/PyChromecast.egg-info/requires.txt 2022-06-21 17:47:09.000000000 +0200 +++ new/PyChromecast-13.0.1/PyChromecast.egg-info/requires.txt 2022-11-21 13:38:21.000000000 +0100 @@ -1,3 +1,3 @@ -protobuf<4,>=3.19.1 +protobuf>=3.19.1 zeroconf>=0.25.1 casttube>=0.2.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyChromecast-12.1.4/pychromecast/__init__.py new/PyChromecast-13.0.1/pychromecast/__init__.py --- old/PyChromecast-12.1.4/pychromecast/__init__.py 2022-06-21 17:47:03.000000000 +0200 +++ new/PyChromecast-13.0.1/pychromecast/__init__.py 2022-11-21 13:38:12.000000000 +0100 @@ -27,9 +27,7 @@ from .controllers.media import STREAM_TYPE_BUFFERED # noqa: F401 from .models import CastInfo -__all__ = ("__version__", "__version_info__", "get_chromecasts", "Chromecast") -__version_info__ = ("0", "7", "6") -__version__ = ".".join(__version_info__) +__all__ = ("get_chromecasts", "Chromecast") IDLE_APP_ID = "E8C28D3C" IGNORE_CEC = [] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyChromecast-12.1.4/pychromecast/config.py new/PyChromecast-13.0.1/pychromecast/config.py --- old/PyChromecast-12.1.4/pychromecast/config.py 2022-06-21 17:47:03.000000000 +0200 +++ new/PyChromecast-13.0.1/pychromecast/config.py 2022-11-21 13:38:12.000000000 +0100 @@ -24,7 +24,8 @@ try: req = requests.get( - "https://clients3.google.com/cast/chromecast/device/baseconfig" + "https://clients3.google.com/cast/chromecast/device/baseconfig", + timeout=10, ) data = json.loads(req.text[4:]) @@ -39,7 +40,8 @@ """Get specific configuration for 'app_id'.""" try: req = requests.get( - f"https://clients3.google.com/cast/chromecast/device/app?a={app_id}" + f"https://clients3.google.com/cast/chromecast/device/app?a={app_id}", + timeout=10, ) return json.loads(req.text[4:]) if req.status_code == 200 else {} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyChromecast-12.1.4/pychromecast/const.py new/PyChromecast-13.0.1/pychromecast/const.py --- old/PyChromecast-12.1.4/pychromecast/const.py 2022-06-21 17:47:03.000000000 +0200 +++ new/PyChromecast-13.0.1/pychromecast/const.py 2022-11-21 13:38:12.000000000 +0100 @@ -25,6 +25,9 @@ "nest audio": (CAST_TYPE_AUDIO, MF_GOOGLE), "nest wifi point": (CAST_TYPE_AUDIO, MF_GOOGLE), "shield android tv": (CAST_TYPE_CHROMECAST, "NVIDIA"), + "bravia 4k vh2": (CAST_TYPE_CHROMECAST, "Sony"), + "marshall stanmore ii": (CAST_TYPE_AUDIO, "Unknown manufacturer"), + "C4A": (CAST_TYPE_AUDIO, "Sony Corporation"), } SERVICE_TYPE_HOST = "host" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyChromecast-12.1.4/requirements.txt new/PyChromecast-13.0.1/requirements.txt --- old/PyChromecast-12.1.4/requirements.txt 2022-06-21 17:47:03.000000000 +0200 +++ new/PyChromecast-13.0.1/requirements.txt 2022-11-21 13:38:12.000000000 +0100 @@ -1,3 +1,3 @@ -protobuf>=3.19.1,<4 +protobuf>=3.19.1 zeroconf>=0.25.1 casttube>=0.2.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PyChromecast-12.1.4/setup.py new/PyChromecast-13.0.1/setup.py --- old/PyChromecast-12.1.4/setup.py 2022-06-21 17:47:03.000000000 +0200 +++ new/PyChromecast-13.0.1/setup.py 2022-11-21 13:38:12.000000000 +0100 @@ -5,7 +5,7 @@ setup( name="PyChromecast", - version="12.1.4", + version="13.0.1", license="MIT", url="https://github.com/balloob/pychromecast", author="Paulus Schoutsen",