Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package streamlink for openSUSE:Factory checked in at 2021-05-23 23:30:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/streamlink (Old) and /work/SRC/openSUSE:Factory/.streamlink.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "streamlink" Sun May 23 23:30:44 2021 rev:4 rq:894934 version:2.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/streamlink/streamlink.changes 2021-02-25 18:29:53.442276093 +0100 +++ /work/SRC/openSUSE:Factory/.streamlink.new.2988/streamlink.changes 2021-05-23 23:30:54.352662313 +0200 @@ -1,0 +2,21 @@ +Wed May 19 22:13:33 UTC 2021 - Tejas Guruswamy <tejas.gurusw...@opensuse.org> + +- Update to 2.1.1 + * Added: --interface, -4 / --ipv4 and -6 / --ipv6 (#3483) + * Added: --niconico-purge-credentials (#3434) + * Added: --twitcasting-password (#3505) + * Added: Linux AppImages (#3611) + * Added: pre-built man page to bdist wheels and sdist tarballs (#3459, #3510) + * Added: plugin for ahaber.com.tr and atv.com.tr (#3484), nimo.tv (#3508) + * Fixed: --player-http / --player-continuous-http HTTP server being bound to all interfaces (#3450) + * Fixed: handling of languages without alpha_2 code when using pycountry (#3518) + * Fixed: memory leak when calling streamlink.streams() (#3486) + * Fixed: race condition in HLS related tests (#3454) + * Fixed: --player-fifo issues on Windows with VLC or MPV (#3619) + * Fixed: various plugins issues (see detailed changelog down below) + * Removed: Windows portable (RosadinTV) (#3535) + * Removed: plugin for micous.com (#3457), ntvspor.net (#3485), btsports (#3636) + * Dependencies: set websocket-client to >=0.58.0 (#3634) +- Fix tests at build time (streamlink-fix_removed_plugin_test.patch, #3653) + +------------------------------------------------------------------- Old: ---- streamlink-2.0.0.tar.gz New: ---- streamlink-2.1.1.tar.gz streamlink-fix_removed_plugin_test.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ streamlink.spec ++++++ --- /var/tmp/diff_new_pack.TrJWpC/_old 2021-05-23 23:30:54.832660322 +0200 +++ /var/tmp/diff_new_pack.TrJWpC/_new 2021-05-23 23:30:54.836660305 +0200 @@ -16,26 +16,43 @@ # +%define pythons python3 Name: streamlink -Version: 2.0.0 +Version: 2.1.1 Release: 0 Summary: Program to pipe streams from services into a video player License: BSD-2-Clause Group: Development/Languages/Python URL: https://streamlink.github.io/ Source: https://github.com/%{name}/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz + +# PATCH-FIX-UPSTREAM streamlink-fix_removed_plugin_test.patch https://github.com/streamlink/streamlink/pull/3653 +Patch0: streamlink-fix_removed_plugin_test.patch + BuildRequires: fdupes BuildRequires: python-rpm-macros BuildRequires: python3-Sphinx BuildRequires: python3-devel >= 3.4 BuildRequires: python3-requests >= 1.0 BuildRequires: python3-setuptools + +# TEST REQUIREMENTS +BuildRequires: python3-pytest +BuildRequires: python3-PySocks +BuildRequires: python3-freezegun +BuildRequires: python3-isodate +BuildRequires: python3-pycountry +BuildRequires: python3-pycryptodome +BuildRequires: python3-requests-mock +BuildRequires: python3-websocket-client + Requires: python3-PySocks Requires: python3-isodate Requires: python3-pycountry Requires: python3-pycryptodome Requires: python3-requests >= 1.0 Requires: python3-websocket-client + Recommends: vlc Suggests: ffmpeg Suggests: rtmpdump @@ -51,6 +68,7 @@ %prep %setup -q +%patch0 -p1 %build %python3_build @@ -70,6 +88,9 @@ done %fdupes -s %{buildroot} +%check +%pytest + %files %license LICENSE %doc AUTHORS CHANGELOG.md MANIFEST.in README.md ++++++ streamlink-2.0.0.tar.gz -> streamlink-2.1.1.tar.gz ++++++ ++++ 12030 lines of diff (skipped) ++++++ streamlink-fix_removed_plugin_test.patch ++++++ >From 05c3daad638073efb520ca3c27201cb41c341bc3 Mon Sep 17 00:00:00 2001 From: Alexis Murzeau <amub...@gmail.com> Date: Fri, 26 Mar 2021 22:58:52 +0100 Subject: [PATCH] build: include .removed file in build This file is required by tests when executing them with the build dir. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index ac1bc9294a..9db3a46a50 100644 --- a/setup.py +++ b/setup.py @@ -98,6 +98,7 @@ def is_wheel_for_windows(): license="Simplified BSD", packages=find_packages("src"), package_dir={"": "src"}, + package_data={"streamlink.plugins": [".removed"]}, entry_points=entry_points, data_files=data_files, install_requires=deps,