- update to 1.5.0:

* plugins.nbcsports: fix embed_url_re (#2980)
  * plugins.olympicchannel: fix/rewrite (#2981)
  * plugins.foxtr: fix playervars_re (#3013)
  * plugins.huya: fix _hls_re (#3007)
  * plugins.ceskatelevize: add new api for some links (#2991)
  * plugins.beattv: remove plugin (#3053)
  * plugins.ard_live: fix / rewrite (#3052)
  * plugins.ard_mediathek: fix / update (#3049)
  * Streamlink was added to Windows Package Manager
  * plugins.tvplayer: Add missing platform key in the GET for stream_url (#2989)
  * plugins.btv: remove login and fix API URL (#3019)
  * plugins.n13tv: new plugin - replaces plugins.reshet (#3034)
  * plugins.reshet: plugin removal (#3000)
  * plugins.tvnbg: plugin removal (#3056)
  * plugins.adultswim: fix/rewrite (#2952)
  * ci: no test/documentation jobs on scheduled run (#3012)
  * cli.main: fix msecs format in logging output (#3025)
  * utils.l10n: fix pycountry language lookup (#3057)
  * plugins.nbcnews: new plugin for http://nbcnews.com/now (#2927)
  * plugins.showroom: use normal HLSStreams
  * docs: remove unimportant note / file
  * plugins.viasat: remove play.nova.bg domain
  * actions: fixed incorrect versions and use names for codecov (#2932)
  * plugins.filmon: use /tv/ url and raise PluginError for invalid channels
  * flake8: E741 ambiguous variable name
  * plugins.youtube: Fix isLive and signatureCipher (#3026)
  * plugins.facebook: use meta og:video:url and added basic title support (#3024)
  * plugins.picarto: fixed vod url detection
  * ci: fix pycountry issue temporarily with a fixed version

OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/streamlink?expand=0&rev=11
This commit is contained in:
Dirk Mueller 2020-08-21 20:20:48 +00:00 committed by Git OBS Bridge
parent 16bbb968c9
commit 40a5a675e3
5 changed files with 51 additions and 106 deletions

View File

@ -1,99 +0,0 @@
diff -Nur streamlink-1.3.0/setup.py streamlink-1.3.0-patched/setup.py
--- streamlink-1.3.0/setup.py 2019-11-22 07:18:53.000000000 +0100
+++ streamlink-1.3.0-patched/setup.py 2019-11-25 11:41:26.593924349 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
import codecs
from os import environ, path
from sys import argv, path as sys_path
diff -Nur streamlink-1.3.0/src/streamlink/packages/flashmedia/error.py streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/error.py
--- streamlink-1.3.0/src/streamlink/packages/flashmedia/error.py 2019-11-22 07:18:53.000000000 +0100
+++ streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/error.py 2019-11-25 11:56:47.532548405 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
class FLVError(Exception):
diff -Nur streamlink-1.3.0/src/streamlink/packages/flashmedia/f4v.py streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/f4v.py
--- streamlink-1.3.0/src/streamlink/packages/flashmedia/f4v.py 2019-11-22 07:18:53.000000000 +0100
+++ streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/f4v.py 2019-11-25 11:56:09.220115065 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
from .box import Box, RawPayload
from .compat import is_py2
diff -Nur streamlink-1.3.0/src/streamlink/packages/flashmedia/flv.py streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/flv.py
--- streamlink-1.3.0/src/streamlink/packages/flashmedia/flv.py 2019-11-22 07:18:53.000000000 +0100
+++ streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/flv.py 2019-11-25 11:56:16.940202380 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
from .error import FLVError
from .compat import is_py2
diff -Nur streamlink-1.3.0/src/streamlink/packages/flashmedia/__init__.py streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/__init__.py
--- streamlink-1.3.0/src/streamlink/packages/flashmedia/__init__.py 2019-11-22 07:18:53.000000000 +0100
+++ streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/__init__.py 2019-11-25 11:53:59.698642690 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
from .error import *
from .amf import *
diff -Nur streamlink-1.3.0/src/streamlink/packages/flashmedia/packet.py streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/packet.py
--- streamlink-1.3.0/src/streamlink/packages/flashmedia/packet.py 2019-11-22 07:18:53.000000000 +0100
+++ streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/packet.py 2019-11-25 11:56:24.596288976 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
import struct
diff -Nur streamlink-1.3.0/src/streamlink/packages/flashmedia/tag.py streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/tag.py
--- streamlink-1.3.0/src/streamlink/packages/flashmedia/tag.py 2019-11-22 07:18:53.000000000 +0100
+++ streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/tag.py 2019-11-25 11:56:32.888382761 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
from ctypes import BigEndianStructure, Union, c_uint8
from io import BytesIO
diff -Nur streamlink-1.3.0/src/streamlink/packages/flashmedia/util.py streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/util.py
--- streamlink-1.3.0/src/streamlink/packages/flashmedia/util.py 2019-11-22 07:18:53.000000000 +0100
+++ streamlink-1.3.0-patched/src/streamlink/packages/flashmedia/util.py 2019-11-25 11:56:40.160465019 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
from .compat import bytes, is_py2, string_types
diff -Nur streamlink-1.3.0/src/streamlink/plugins/dash.py streamlink-1.3.0-patched/src/streamlink/plugins/dash.py
--- streamlink-1.3.0/src/streamlink/plugins/dash.py 2019-11-22 07:18:53.000000000 +0100
+++ streamlink-1.3.0-patched/src/streamlink/plugins/dash.py 2019-11-25 11:56:00.236013443 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
import logging
import re
diff -Nur streamlink-1.3.0/src/streamlink/plugins/tv3cat.py streamlink-1.3.0-patched/src/streamlink/plugins/tv3cat.py
--- streamlink-1.3.0/src/streamlink/plugins/tv3cat.py 2019-11-22 07:18:53.000000000 +0100
+++ streamlink-1.3.0-patched/src/streamlink/plugins/tv3cat.py 2019-11-25 11:55:48.407879646 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
import logging
import re
diff -Nur streamlink-1.3.0/src/streamlink/plugins/tvplayer.py streamlink-1.3.0-patched/src/streamlink/plugins/tvplayer.py
--- streamlink-1.3.0/src/streamlink/plugins/tvplayer.py 2019-11-22 07:18:53.000000000 +0100
+++ streamlink-1.3.0-patched/src/streamlink/plugins/tvplayer.py 2019-11-25 11:55:38.455767075 +0100
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
import re
from streamlink.plugin import Plugin, PluginArguments, PluginArgument

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:00649658b74c76022a04564919431e4d6156d974caf56f25cd52a07fa5732315
size 694190

3
streamlink-1.5.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9db20ae31fd54fa7cf85e8cdeede6d371be91ca86c24b5314ee67251fbc70d3d
size 719731

View File

@ -1,3 +1,50 @@
-------------------------------------------------------------------
Fri Aug 21 20:18:43 UTC 2020 - Dirk Mueller <dmueller@suse.com>
- update to 1.5.0:
* plugins.nbcsports: fix embed_url_re (#2980)
* plugins.olympicchannel: fix/rewrite (#2981)
* plugins.foxtr: fix playervars_re (#3013)
* plugins.huya: fix _hls_re (#3007)
* plugins.ceskatelevize: add new api for some links (#2991)
* plugins.beattv: remove plugin (#3053)
* plugins.ard_live: fix / rewrite (#3052)
* plugins.ard_mediathek: fix / update (#3049)
* Streamlink was added to Windows Package Manager
* plugins.tvplayer: Add missing platform key in the GET for stream_url (#2989)
* plugins.btv: remove login and fix API URL (#3019)
* plugins.n13tv: new plugin - replaces plugins.reshet (#3034)
* plugins.reshet: plugin removal (#3000)
* plugins.tvnbg: plugin removal (#3056)
* plugins.adultswim: fix/rewrite (#2952)
* ci: no test/documentation jobs on scheduled run (#3012)
* cli.main: fix msecs format in logging output (#3025)
* utils.l10n: fix pycountry language lookup (#3057)
* plugins.nbcnews: new plugin for http://nbcnews.com/now (#2927)
* plugins.showroom: use normal HLSStreams
* docs: remove unimportant note / file
* plugins.viasat: remove play.nova.bg domain
* actions: fixed incorrect versions and use names for codecov (#2932)
* plugins.filmon: use /tv/ url and raise PluginError for invalid channels
* flake8: E741 ambiguous variable name
* plugins.youtube: Fix isLive and signatureCipher (#3026)
* plugins.facebook: use meta og:video:url and added basic title support (#3024)
* plugins.picarto: fixed vod url detection
* ci: fix pycountry issue temporarily with a fixed version
* plugin.api.useragents: update User-Agent
* docs/install: fix Windows package manager
* plugins.mixer: remove plugin
* ci: run scheduled tests, ignore coverage report
* plugins.cdnbg: update plugin to support new sites, and remove old sites (#2912)
* plugins.radionet: fix plugin so it works with new page format (#3018)
* fixed typo
* plugins.app17: update API (#2969)
* Plugin.nicolive:resolve API format change (#3061)
* plugins.twitch: fix call_subdomain (#2958)
* plugins.bigo: use API for video URL (#3016)
* plugins.nicolive: resolve new api format (#3039)
- remove env-script-interpreter.patch (obsolete)
-------------------------------------------------------------------
Mon Nov 25 11:19:13 UTC 2019 - Simon Puchert <simonpuchert@alice.de>

View File

@ -17,15 +17,13 @@
Name: streamlink
Version: 1.3.0
Version: 1.5.0
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-OPENSUSE env-script-interpreter.patch Fix Rpmlint errors.
Patch0: env-script-interpreter.patch
Recommends: mpv
BuildArch: noarch
BuildRequires: python-rpm-macros
@ -51,7 +49,6 @@ Streamlink is a fork of the livestreamer project.
%prep
%setup -q
%patch0 -p1
%build
%python3_build