%global srcname streamlink %global _description %{expand: Streamlink is a command-line utility that pipes video streams from various services into a video player, such as VLC. The main purpose of Streamlink is to allow the user to avoid buggy and CPU heavy flash plugins but still be able to enjoy various streamed content. There is also an API available for developers who want access to the video stream data. This project was forked from Livestreamer, which is no longer maintained.} Name: python-%{srcname} Version: 6.5.1 Release: 1%{?dist} Summary: Python library for extracting streams from various websites # src/streamlink/packages/requests_file.py is Apache-2.0 License: BSD-2-Clause AND Apache-2.0 URL: https://streamlink.github.io/ Source: %{pypi_source %{srcname}} # Use pycryptodomex library instead of pycryptodome Patch: %{name}-6.2.1-pycryptodomex.patch # Fix documentation build Patch: %{name}-6.2.1-documentation.patch BuildRequires: python3-devel # For building shell completions BuildRequires: %{py3_dist shtab} # For building man pages BuildRequires: make BuildArch: noarch # https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval ExcludeArch: %{ix86} %description %{_description} %package -n python3-%{srcname} Summary: %{summary} Provides: %{srcname} = %{version}-%{release} # src/streamlink/packages/requests_file.py is a bundled copy of # https://pypi.org/project/requests-file/, but it seems to have been forked; # the contents do not correspond exactly to any version from 1.0 to 1.5.1 Provides: bundled(python3dist(requests-file)) Provides: %{name}-bash-completion = %{version}-%{release} Provides: %{name}-zsh-completion = %{version}-%{release} Obsoletes: %{name}-bash-completion < 6.5.1-1 Obsoletes: %{name}-zsh-completion < 6.5.1-1 Obsoletes: %{name}-doc < 6.5.1-1 Recommends: /usr/bin/ffmpeg %description -n python3-%{srcname} %{_description} %prep %autosetup -n %{srcname}-%{version} -p1 # The dev-requirements.txt file has an ad-hoc format with “sections”; generate # BuildRequires only from the setup and tests sections. This is easier than # maintaining a patch or a manual list of BuildRequires. awk ' /^# / { output=0 } /^# (setup|tests)$/ { output = 1 } !output { print "#", $0 } output { print $0 } ' dev-requirements.txt | tee requirements-filtered.txt # Similarly for docs-requirements: awk ' /^# / { output=0 } /^# (setup|build|themes.*)$/ { output = 1 } !output { print "#", $0 } output { print $0 } ' docs-requirements.txt | tee -a requirements-filtered.txt %generate_buildrequires %pyproject_buildrequires requirements-filtered.txt %build %pyproject_wheel # Generate man pages PYTHONPATH="${PWD}/src" %make_build -C docs man \ SPHINXOPTS='-j%{?_smp_build_ncpus}' %install %pyproject_install %pyproject_save_files -l %{srcname} %{srcname}_cli # Install man page install -Dpm 0644 docs/_build/man/%{srcname}.1 $RPM_BUILD_ROOT%{_mandir}/man1/%{srcname}.1 # Build and install shell completion files PYTHONPATH=$RPM_BUILD_ROOT%{python3_sitelib} ./script/build-shell-completions.sh install -Dpm 0644 -t $RPM_BUILD_ROOT%{bash_completions_dir} completions/bash/%{srcname} install -Dpm 0644 -t $RPM_BUILD_ROOT%{zsh_completions_dir} completions/zsh/_%{srcname} %check %pytest %files -n python3-%{srcname} -f %{pyproject_files} %doc README.md %{_bindir}/%{srcname} %{_mandir}/man1/%{srcname}.1.* %{bash_completions_dir}/%{srcname} %{zsh_completions_dir}/_%{srcname} %changelog * Fri Jan 26 2024 Benjamin A. Beasley - 6.5.1-1 - Update to 6.5.1 (close RHBZ#2254806) - Properly indicate requests-file bundling - Recombine shell completion subpackage into the main package - Don’t install a duplicate LICENSE file; assert one is present in .dist-info - Drop the -doc subpackage due to bundling/licensing issues with Sphinx-generated documentation - Drop i686 support (to unblock some of this package’s dependencies) * Fri Jan 26 2024 Fedora Release Engineering - 6.4.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Mon Jan 22 2024 Fedora Release Engineering - 6.4.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Wed Nov 29 2023 Mohamed El Morabity - 6.4.2-1 - Update to 6.4.2 * Sat Nov 25 2023 Mohamed El Morabity - 6.4.1-1 - Update to 6.4.1 * Sun Oct 29 2023 Mohamed El Morabity - 6.3.1-1 - Update to 6.3.1 * Wed Oct 25 2023 Mohamed El Morabity - 6.3.0-1 - Update to 6.3.0 * Sun Oct 15 2023 Mohamed El Morabity - 6.2.1-1 - Update to 6.2.1 * Sun Sep 24 2023 Mohamed El Morabity - 5.5.1-4 - Fix RHBZ #2220526 * Fri Jul 21 2023 Fedora Release Engineering - 5.5.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild * Sun Jul 16 2023 Python Maint - 5.5.1-2 - Rebuilt for Python 3.12 * Sun May 21 2023 Mohamed El Morabity - 5.5.1-1 - Update to 5.5.1 * Sat Apr 08 2023 Mohamed El Morabity - 5.3.1-2 - Fix RHBZ #2185401 (switch to Font Awesome 6) * Sun Mar 26 2023 Mohamed El Morabity - 5.3.1-1 - Update to 5.3.1 * Fri Jan 20 2023 Fedora Release Engineering - 5.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild * Sat Jan 07 2023 Mohamed El Morabity - 5.1.2-1 - Update to 5.1.2 * Fri Dec 02 2022 Mohamed El Morabity - 5.1.1-1 - Update to 5.1.1 * Mon Nov 21 2022 Mohamed El Morabity - 5.1.0-1 - Update to 5.1.0 - Switch license tag to SPDX - Fix RHBZ #2142098 * Mon Oct 10 2022 Mohamed El Morabity - 5.0.1-2 - Fix Recommends on ffmpeg * Tue Sep 27 2022 Mohamed El Morabity - 5.0.1-1 - Update to 5.0.1 * Tue Aug 16 2022 Mohamed El Morabity - 4.3.0-1 - Update to 4.3.0 * Tue Aug 09 2022 Mohamed El Morabity - 4.2.0-1 - Update to 4.2.0 * Fri Jul 22 2022 Fedora Release Engineering - 3.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild * Mon Jul 04 2022 Python Maint - 3.2.0-2 - Rebuilt for Python 3.11 * Tue Mar 08 2022 Mohamed El Morabity - 3.2.0-1 - Update to 3.2.0 * Tue Feb 01 2022 Mohamed El Morabity - 3.1.1-1 - Update to 3.1.1 * Fri Jan 21 2022 Fedora Release Engineering - 3.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild * Sun Nov 21 2021 Mohamed El Morabity - 3.0.1-1 - Update to 3.0.1 * Wed Nov 17 2021 Mohamed El Morabity - 3.0.0-1 - Update to 3.0.0 * Tue Sep 07 2021 Mohamed El Morabity - 2.4.0-1 - Update to 2.4.0 * Mon Jul 26 2021 Mohamed El Morabity - 2.3.0-1 - Update to 2.3.0 * Fri Jul 23 2021 Fedora Release Engineering - 2.2.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild * Sat Jun 19 2021 Mohamed El Morabity - 2.2.0-1 - Update to 2.2.0 * Fri Jun 04 2021 Python Maint - 2.1.2-2 - Rebuilt for Python 3.10 * Fri Jun 04 2021 Mohamed El Morabity - 2.1.2-1 - Update to 2.1.2 * Mon Apr 12 2021 Mohamed El Morabity - 2.1.1-1 - Update to 2.1.1 * Tue Mar 23 2021 Mohamed El Morabity - 2.1.0-1 - Update to 2.1.0 * Wed Jan 27 2021 Fedora Release Engineering - 2.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild * Tue Jan 19 2021 Mohamed El Morabity - 2.0.0-1 - Update to 2.0.0 * Sun Oct 18 2020 Mohamed El Morabity - 1.7.0-1 - Update to 1.7.0 * Sun Sep 27 2020 Mohamed El Morabity - 1.6.0-2 - Fix dependency on pycryptodomex * Thu Sep 24 2020 Mohamed El Morabity - 1.6.0-1 - Update to 1.6.0 * Wed Jul 29 2020 Fedora Release Engineering - 1.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Tue Jul 07 2020 Mohamed El Morabity - 1.5.0-1 - Update to 1.5.0 * Tue May 26 2020 Miro Hrončok - 1.4.1-2 - Rebuilt for Python 3.9 * Mon May 11 2020 Mohamed El Morabity - 1.4.1-1 - Update to 1.4.1 * Tue Jan 28 2020 Mohamed El Morabity - 1.3.1-1 - Update to 1.3.1 * Tue Nov 26 2019 Mohamed El Morabity - 1.3.0-1 - Update to 1.3.0 * Thu Oct 03 2019 Miro Hrončok - 1.2.0-3 - Rebuilt for Python 3.8.0rc1 (#1748018) * Wed Aug 21 2019 Miro Hrončok - 1.2.0-2 - Rebuilt for Python 3.8 * Tue Aug 20 2019 Mohamed El Morabity - 1.2.0-1 - Update to 1.2.0 - Use pycryptodomex library instead of crypto * Mon Aug 19 2019 Miro Hrončok - 1.1.1-3 - Rebuilt for Python 3.8 * Fri Jul 26 2019 Fedora Release Engineering - 1.1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Wed Apr 03 2019 Mohamed El Morabity - 1.1.1-1 - Update to 1.1.1 * Sun Mar 31 2019 Mohamed El Morabity - 1.1.0-1 - Update to 1.1.0 * Mon Feb 04 2019 Mohamed El Morabity - 1.0.0-1 - Update to 1.0.0 * Sat Feb 02 2019 Fedora Release Engineering - 0.14.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Fri Jan 11 2019 Igor Gnatenko - 0.14.2-5 - Enable python dependency generator * Fri Oct 12 2018 Zbigniew Jędrzejewski-Szmek - 0.14.2-4 - Python2 binary package has been removed See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal * Sat Jul 14 2018 Fedora Release Engineering - 0.14.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Mon Jul 02 2018 Miro Hrončok - 0.14.2-2 - Rebuilt for Python 3.7 * Mon Jul 02 2018 Mohamed El Morabity - 0.14.2-1 - Update to 0.14.2 * Tue Jun 19 2018 Miro Hrončok - 0.13.0-2 - Rebuilt for Python 3.7 * Thu Jun 07 2018 Mohamed El Morabity - 0.13.0-1 - Update to 0.13.0 * Mon May 07 2018 Mohamed El Morabity - 0.12.1-1 - Update to 0.12.1 * Mon May 07 2018 Mohamed El Morabity - 0.12.0-1 - Update to 0.12.0 * Thu Mar 08 2018 Mohamed El Morabity - 0.11.0-1 - Update to 0.11.0 * Fri Feb 09 2018 Fedora Release Engineering - 0.10.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Tue Jan 30 2018 Iryna Shcherbina - 0.10.0-2 - Update Python 2 dependency declarations to new packaging standards (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) * Wed Jan 24 2018 Mohamed El Morabity - 0.10.0-1 - Update to 0.10.0 * Tue Nov 14 2017 Mohamed El Morabity - 0.9.0-1 - Update to 0.9.0 * Tue Oct 10 2017 Mohamed El Morabity - 0.8.1-3 - Fix dependecy on python-websocket-client package * Tue Sep 19 2017 Mohamed El Morabity - 0.8.1-2 - Add missing dependecy on python-websocket-client package * Tue Sep 19 2017 Mohamed El Morabity - 0.8.1-1 - Update to 0.8.1 * Thu Jul 27 2017 Fedora Release Engineering - 0.7.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Fri Jun 30 2017 Mohamed El Morabity - 0.7.0-1 - Update to 0.7.0 * Thu May 11 2017 Mohamed El Morabity - 0.6.0-1 - Update to 0.6.0 * Wed Apr 05 2017 Mohamed El Morabity - 0.5.0-1 - Update to 0.5.0 * Fri Mar 10 2017 Mohamed El Morabity - 0.4.0-1 - Update to 0.4.0 * Wed Feb 22 2017 Mohamed El Morabity - 0.3.2-1 - Update to 0.3.2 * Sat Feb 11 2017 Fedora Release Engineering - 0.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Thu Jan 26 2017 Mohamed El Morabity - 0.3.0-1 - Update to 0.3.0 * Sat Jan 07 2017 Mohamed El Morabity - 0.2.0-3 - Add license to doc subpackage * Sat Jan 07 2017 Mohamed El Morabity - 0.2.0-2 - Fix license tag - Move documentation to a subpackage - Enable tests * Sun Dec 18 2016 Mohamed El Morabity - 0.2.0-1 - Update to 0.2.0 * Fri Dec 16 2016 Mohamed El Morabity - 0.1.0-1 - Initial RPM release