From 5635b63b88bc391fb16bc71371fcddcab45d1fad Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Wed, 20 Mar 2024 02:08:29 +0300 Subject: [PATCH] import mpv-0.35.1-4.el8 --- .gitignore | 1 + .mpv.metadata | 1 + ...8d42ab203c961e50ce198ca4eb232de3819a.patch | 47 ++ SOURCES/mpv-0.35.1-yt-dlp-hook-fix.patch | 64 ++ SPECS/mpv.spec | 688 ++++++++++++++++++ 5 files changed, 801 insertions(+) create mode 100644 .gitignore create mode 100644 .mpv.metadata create mode 100644 SOURCES/3a2f8d42ab203c961e50ce198ca4eb232de3819a.patch create mode 100644 SOURCES/mpv-0.35.1-yt-dlp-hook-fix.patch create mode 100644 SPECS/mpv.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..40cc5e5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/mpv-0.35.1.tar.gz diff --git a/.mpv.metadata b/.mpv.metadata new file mode 100644 index 0000000..0ccddb0 --- /dev/null +++ b/.mpv.metadata @@ -0,0 +1 @@ +b8561e11e776b423055715bfe184d117cdf96732 SOURCES/mpv-0.35.1.tar.gz diff --git a/SOURCES/3a2f8d42ab203c961e50ce198ca4eb232de3819a.patch b/SOURCES/3a2f8d42ab203c961e50ce198ca4eb232de3819a.patch new file mode 100644 index 0000000..251c1a4 --- /dev/null +++ b/SOURCES/3a2f8d42ab203c961e50ce198ca4eb232de3819a.patch @@ -0,0 +1,47 @@ +From 3a2f8d42ab203c961e50ce198ca4eb232de3819a Mon Sep 17 00:00:00 2001 +From: llyyr +Date: Tue, 14 Mar 2023 00:25:04 +0530 +Subject: [PATCH] vo_gpu_next: compatibility with libplacebo v6.265 + +libplacebo v6.265.0 removed v4 deprecations. We already require +PL_API_VER >= 202, so we don't need to wrap +pl_tex_transfer_params.row_pitch around a conditional, which exists +since PL_API_VER >= 168. However, pl_source_frame.duration does not exist until +PL_API_VER >= 219, so we should use a conditional directive. +--- + video/out/vo_gpu_next.c | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) + +diff --git a/video/out/vo_gpu_next.c b/video/out/vo_gpu_next.c +index 7ed01d52165..569ea373c8a 100644 +--- a/video/out/vo_gpu_next.c ++++ b/video/out/vo_gpu_next.c +@@ -265,7 +265,7 @@ static void update_overlays(struct vo *vo, struct mp_osd_res res, double pts, + ok = pl_tex_upload(p->gpu, &(struct pl_tex_transfer_params) { + .tex = entry->tex, + .rc = { .x1 = item->packed_w, .y1 = item->packed_h, }, +- .stride_w = item->packed->stride[0] / tex_fmt->texel_size, ++ .row_pitch = item->packed->stride[0], + .ptr = item->packed->planes[0], + }); + if (!ok) { +@@ -882,6 +882,9 @@ static void draw_frame(struct vo *vo, struct vo_frame *frame) + + pl_queue_push(p->queue, &(struct pl_source_frame) { + .pts = mpi->pts, ++#if PL_API_VER >= 219 ++ .duration = frame->ideal_frame_duration, ++#endif + .frame_data = mpi, + .map = map_frame, + .unmap = unmap_frame, +@@ -939,7 +942,9 @@ static void draw_frame(struct vo *vo, struct vo_frame *frame) + .pts = frame->current->pts + vsync_offset, + .radius = pl_frame_mix_radius(&p->params), + .vsync_duration = frame->vsync_interval, ++#if PL_API_VER < 219 + .frame_duration = frame->ideal_frame_duration, ++#endif + .interpolation_threshold = opts->interpolation_threshold, + }; + diff --git a/SOURCES/mpv-0.35.1-yt-dlp-hook-fix.patch b/SOURCES/mpv-0.35.1-yt-dlp-hook-fix.patch new file mode 100644 index 0000000..81792de --- /dev/null +++ b/SOURCES/mpv-0.35.1-yt-dlp-hook-fix.patch @@ -0,0 +1,64 @@ +From 985655ebfd77ceddc44d76f8cc6dc446002f34ee Mon Sep 17 00:00:00 2001 +From: Christoph Heinrich +Date: Fri, 3 Mar 2023 00:45:45 +0100 +Subject: [PATCH 1/2] ytdl_hook: init fragment requires other fragments + +With dash the first fragment was always considered an init fragment if +there wasn't a duration. However that only makes sense when there are +also other fragments, so check if there are other fragments in addition +to the lack of a duration. +--- + player/lua/ytdl_hook.lua | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/player/lua/ytdl_hook.lua b/player/lua/ytdl_hook.lua +index 27e5f4544b2..9e50b3a80b8 100644 +--- a/player/lua/ytdl_hook.lua ++++ b/player/lua/ytdl_hook.lua +@@ -297,7 +297,7 @@ local function edl_track_joined(fragments, protocol, is_live, base) + local args = "" + + -- assume MP4 DASH initialization segment +- if not fragments[1].duration then ++ if not fragments[1].duration and #fragments > 1 then + msg.debug("Using init segment") + args = args .. ",init=" .. edl_escape(join_url(base, fragments[1])) + offset = 2 + +From a5961ad096b1361a12f836c8b170fc748f46962a Mon Sep 17 00:00:00 2001 +From: Christoph Heinrich +Date: Fri, 3 Mar 2023 00:50:58 +0100 +Subject: [PATCH 2/2] ytdl_hook: only log error when no fallback url available + +An error indicates that something doesn't work, but as long as a +safe url is available, playback is still expected to work. + +Thus reduce logging level of MP4 DASH without fragments message and +add a new error message for when there is no safe url available either. + +Also adds a missing space. +--- + player/lua/ytdl_hook.lua | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/player/lua/ytdl_hook.lua b/player/lua/ytdl_hook.lua +index 9e50b3a80b8..77f7446ed22 100644 +--- a/player/lua/ytdl_hook.lua ++++ b/player/lua/ytdl_hook.lua +@@ -309,7 +309,7 @@ local function edl_track_joined(fragments, protocol, is_live, base) + -- if not available in all, give up. + for i = offset, #fragments do + if not fragments[i].duration then +- msg.error("EDL doesn't support fragments" .. ++ msg.verbose("EDL doesn't support fragments " .. + "without duration with MP4 DASH") + return nil + end +@@ -423,6 +423,7 @@ local function formats_to_edl(json, formats, use_all_formats) + track.protocol, json.is_live, + track.fragment_base_url) + if not edl_track and not url_is_safe(track.url) then ++ msg.error("No safe URL or supported fragmented stream available") + return nil + end + diff --git a/SPECS/mpv.spec b/SPECS/mpv.spec new file mode 100644 index 0000000..c60a809 --- /dev/null +++ b/SPECS/mpv.spec @@ -0,0 +1,688 @@ +Name: mpv +Version: 0.35.1 +Release: 4%{?dist} + +License: GPL-2.0-or-later AND LGPL-2.1-or-later +Summary: Movie player playing most video formats and DVDs +URL: https://%{name}.io/ +Source0: https://github.com/%{name}-player/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz + +# https://github.com/mpv-player/mpv/pull/11398 +Patch100: %{name}-0.35.1-yt-dlp-hook-fix.patch +# Upstream patch for libplacebo v6.265 +Patch101: https://github.com/mpv-player/mpv/commit/3a2f8d42ab203c961e50ce198ca4eb232de3819a.patch + + +BuildRequires: desktop-file-utils +BuildRequires: gcc +BuildRequires: libappstream-glib +BuildRequires: python3-docutils +BuildRequires: waf-python3 + +BuildRequires: perl(Encode) +BuildRequires: perl(Math::BigInt) +BuildRequires: perl(Math::BigRat) +BuildRequires: pkgconfig(alsa) +BuildRequires: pkgconfig(caca) +BuildRequires: pkgconfig(dvdnav) +BuildRequires: pkgconfig(egl) +BuildRequires: pkgconfig(enca) +BuildRequires: pkgconfig(ffnvcodec) +BuildRequires: pkgconfig(gbm) +BuildRequires: pkgconfig(gl) +BuildRequires: pkgconfig(jack) +BuildRequires: pkgconfig(lcms2) +BuildRequires: pkgconfig(libarchive) >= 3.4.0 +BuildRequires: pkgconfig(libass) +BuildRequires: pkgconfig(libavcodec) >= 58.16.100 +BuildRequires: pkgconfig(libavdevice) >= 57.0.0 +BuildRequires: pkgconfig(libavfilter) >= 7.14.100 +BuildRequires: pkgconfig(libavformat) >= 58.9.100 +BuildRequires: pkgconfig(libavutil) >= 56.12.100 +BuildRequires: pkgconfig(libbluray) +BuildRequires: pkgconfig(libcdio) +BuildRequires: pkgconfig(libcdio_paranoia) +BuildRequires: pkgconfig(libdrm) +BuildRequires: pkgconfig(libguess) +BuildRequires: pkgconfig(libjpeg) +BuildRequires: pkgconfig(libpipewire-0.3) >= 0.3.19 +BuildRequires: pkgconfig(libplacebo) +BuildRequires: pkgconfig(libpulse) +BuildRequires: pkgconfig(libswresample) >= 3.0.100 +BuildRequires: pkgconfig(libswscale) >= 5.0.101 +BuildRequires: pkgconfig(libva) +BuildRequires: pkgconfig(lua-5.1) +BuildRequires: pkgconfig(mujs) +BuildRequires: pkgconfig(rubberband) +BuildRequires: pkgconfig(sdl2) +BuildRequires: pkgconfig(shaderc) +BuildRequires: pkgconfig(uchardet) >= 0.0.5 +BuildRequires: pkgconfig(vapoursynth) +BuildRequires: pkgconfig(vdpau) +BuildRequires: pkgconfig(vulkan) +BuildRequires: pkgconfig(wayland-client) +BuildRequires: pkgconfig(wayland-cursor) +BuildRequires: pkgconfig(wayland-egl) +BuildRequires: pkgconfig(wayland-protocols) +BuildRequires: pkgconfig(wayland-scanner) +BuildRequires: pkgconfig(x11) +BuildRequires: pkgconfig(xdamage) +BuildRequires: pkgconfig(xext) +BuildRequires: pkgconfig(xinerama) +BuildRequires: pkgconfig(xkbcommon) +BuildRequires: pkgconfig(xpresent) +BuildRequires: pkgconfig(xrandr) +BuildRequires: pkgconfig(xscrnsaver) +BuildRequires: pkgconfig(xv) +BuildRequires: pkgconfig(zimg) >= 2.9 +BuildRequires: pkgconfig(zlib) + +Requires: hicolor-icon-theme +Provides: mplayer-backend +Recommends: (yt-dlp or youtube-dl) +Suggests: yt-dlp + +%description +Mpv is a movie player based on MPlayer and mplayer2. It supports a wide variety +of video file formats, audio and video codecs, and subtitle types. Special +input URL types are available to read input from a variety of sources other +than disk files. Depending on platform, a variety of different video and audio +output methods are supported. + +Mpv has an OpenGL, Vulkan, and D3D11 based video output that is capable of many +features loved by videophiles, such as video scaling with popular high quality +algorithms, color management, frame timing, interpolation, HDR, and more. + +While mpv strives for minimalism and provides no real GUI, it has a small +controller on top of the video for basic control. + +Mpv can leverage most hardware decoding APIs on all platforms. Hardware +decoding can be enabled at runtime on demand. + +Powerful scripting capabilities can make the player do almost anything. There +is a large selection of user scripts on the wiki. + +A straightforward C API was designed from the ground up to make mpv usable as +a library and facilitate easy integration into other applications. + +%package libs +Summary: Dynamic library for Mpv frontends + +%description libs +This package contains the dynamic library libmpv, which provides access to Mpv. + +%package devel +Summary: Development package for libmpv +Provides: %{name}-libs-devel = %{?epoch:%{epoch}:}%{version}-%{release} +Obsoletes: %{name}-libs-devel < %{?epoch:%{epoch}:}%{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} + +%description devel +This package contains development header files and libraries for Mpv. + +%prep +%autosetup -p1 +sed -e "s|/usr/local/etc|%{_sysconfdir}/%{name}|" -i etc/%{name}.conf +sed -e "s|c_preproc.standard_includes.append('/usr/local/include')|c_preproc.standard_includes.append('$(pkgconf --variable=includedir libavcodec)')|" -i wscript + +%build +%set_build_flags +waf configure \ + --prefix=%{_prefix} \ + --bindir=%{_bindir} \ + --libdir=%{_libdir} \ + --mandir=%{_mandir} \ + --docdir=%{_docdir}/%{name} \ + --confdir=%{_sysconfdir}/%{name} \ + --disable-build-date \ + --enable-libmpv-shared \ + --enable-sdl2 \ + --enable-libarchive \ + --enable-dvdnav \ + --enable-cdda \ + --enable-html-build \ + --enable-dvbin \ + --enable-gl-x11 \ + --enable-wayland +waf -v build %{?_smp_mflags} + +%install +waf install --destdir=%{buildroot} + +%check +appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/%{name}.metainfo.xml +desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop + +%files +%docdir %{_docdir}/%{name}/ +%license LICENSE.GPL LICENSE.LGPL Copyright +%{_docdir}/%{name}/ +%{_bindir}/%{name} +%{_datadir}/applications/%{name}.desktop +%dir %{_datadir}/bash-completion/ +%dir %{_datadir}/bash-completion/completions/ +%{_datadir}/bash-completion/completions/%{name} +%{_datadir}/icons/hicolor/*/apps/%{name}*.* +%dir %{_datadir}/zsh/ +%dir %{_datadir}/zsh/site-functions/ +%{_datadir}/zsh/site-functions/_%{name} +%{_mandir}/man1/%{name}.* +%{_metainfodir}/%{name}.metainfo.xml +%dir %{_sysconfdir}/%{name}/ +%config(noreplace) %{_sysconfdir}/%{name}/encoding-profiles.conf + +%files libs +%license LICENSE.GPL LICENSE.LGPL Copyright +%{_libdir}/lib%{name}.so.2* + +%files devel +%{_includedir}/%{name}/ +%{_libdir}/lib%{name}.so +%{_libdir}/pkgconfig/%{name}.pc + +%changelog +* Wed Mar 20 2024 MSVSphere Packaging Team - 0.35.1-4 +- Rebuilt for MSVSphere 8.9 + +* Wed Mar 22 2023 Nicolas Chauvet - 0.35.1-4 +- rebuilt + +* Sun Mar 12 2023 Neal Gompa - 0.35.1-3 +- Rebuild for ffmpeg 6.0 + +* Tue Mar 07 2023 Maxwell G - 0.35.1-2 +- Backport upstream patch to fix yt-dlp hook + +* Mon Jan 30 2023 Vitaly Zaitsev - 0.35.1-1 +- Updated to version 0.35.1. + +* Thu Jan 19 2023 Fedora Release Engineering - 0.35.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Fri Dec 23 2022 Nicolas Chauvet - 0.35.0-2 +- Rebuilt for libplacebo + +* Sat Nov 12 2022 Vitaly Zaitsev - 0.35.0-1 +- Updated to version 0.35.0. +- Enabled Wayland backend. +- Enabled native PipeWire output support. + +* Mon Sep 05 2022 Vitaly Zaitsev - 0.34.1-11 +- Moved to Fedora. +- Added XDG metainfo manifest. + +* Sun Sep 04 2022 Leigh Scott - 0.34.1-10 +- Add requires ffmpeg-libs + +* Sun Aug 07 2022 RPM Fusion Release Engineering - 0.34.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild and ffmpeg + 5.1 + +* Fri Jul 22 2022 Leigh Scott - 0.34.1-8 +- Rebuild for new ffmpeg + +* Sat Jul 09 2022 Vitaly Zaitsev - 0.34.1-7 +- Rebuilt due to libplacebo update. + +* Fri Jun 17 2022 Nicolas Chauvet - 0.34.1-6 +- rebuilt + +* Tue Apr 19 2022 Vitaly Zaitsev - 0.34.1-5 +- Make sure we're using the full ffmpeg-libs version. +- Removed no longer required patch. + +* Fri Mar 04 2022 Leigh Scott - 0.34.1-4 +- Rebuild for new vapoursynth + +* Fri Feb 04 2022 Leigh Scott - 0.34.1-3 +- Rebuild for new libvpx + +* Mon Jan 10 2022 Vitaly Zaitsev - 0.34.1-2 +- Removed boolean dependencies. + +* Mon Jan 03 2022 Vitaly Zaitsev - 0.34.1-1 +- Updated to version 0.34.1. + +* Fri Dec 24 2021 Leigh Scott - 0.34.0-3 +- Boolean dependencies are only fedora + +* Tue Nov 09 2021 Leigh Scott - 0.34.0-2 +- Rebuilt for new ffmpeg snapshot + +* Mon Nov 01 2021 Vitaly Zaitsev - 0.34.0-1 +- Updated to version 0.34.0. + +* Mon Sep 20 2021 Leigh Scott - 0.33.1-4 +- rebuilt + +* Thu Aug 19 2021 Nicolas Chauvet - 0.33.1-3 +- rebuilt + +* Tue Aug 03 2021 RPM Fusion Release Engineering - 0.33.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Mon Apr 05 2021 Leigh Scott - 0.33.1-1 +- Update to 0.33.1 + +* Fri Apr 02 2021 Leigh Scott - 0.33.0-6 +- rebuilt + +* Wed Mar 24 2021 Leigh Scott - 0.33.0-5 +- rebuilt + +* Thu Feb 11 2021 Nicolas Chauvet - 0.33.0-4 +- Rebuilt + +* Wed Feb 03 2021 RPM Fusion Release Engineering - 0.33.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Thu Dec 31 2020 Leigh Scott - 0.33.0-2 +- Rebuilt for new ffmpeg snapshot + +* Sun Nov 22 2020 Leigh Scott - 0.33.0-1 +- Update to 0.33.0 + +* Wed Oct 21 2020 Leigh Scott - 0.32.0-10 +- Rebuild for new libdvdread + +* Tue Aug 18 2020 RPM Fusion Release Engineering - 0.32.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sat Jul 04 2020 Leigh Scott - 0.32.0-8 +- Fix lua mistake + +* Tue Jun 30 2020 Leigh Scott - 0.32.0-7 +- Rebuilt for new libplacebo + +* Wed Jun 24 2020 Leigh Scott - 0.32.0-6 +- Enable vapoursynth (rfbz#5681) + +* Fri Apr 10 2020 Leigh Scott - 0.32.0-5 +- Rebuild for new libcdio version + +* Sat Feb 22 2020 RPM Fusion Release Engineering - 0.32.0-4 +- Rebuild for ffmpeg-4.3 git + +* Sat Feb 08 2020 Leigh Scott - 0.32.0-3 +- Rebuild for new libplacebo version + +* Sun Jan 26 2020 Leigh Scott - 0.32.0-2 +- Drop libarchive support for f30 and el8, supporting 0.31.0 for the + next decade isn't an option + +* Sun Jan 26 2020 Leigh Scott - 0.32.0-1 +- Update to 0.32.0 + +* Sat Dec 28 2019 Leigh Scott - 0.31.0-1 +- Update to 0.31.0 + +* Thu Dec 19 2019 Leigh Scott - 0.30.0-3 +- Rebuild for new libplacebo version + +* Mon Nov 18 2019 Leigh Scott - 0.30.0-2 +- rebuild for libdvdread ABI bump + +* Fri Oct 25 2019 Leigh Scott - 0.30.0-1 +- Update to 0.30.0 + +* Fri Oct 25 2019 Leigh Scott - 0.29.1-19.20191025.gite67386e +- Update to 20191025 snapshot + +* Sun Oct 13 2019 Leigh Scott - 0.29.1-18.20191011.gita85fa2d +- Enable html doc as it's easier to read than the man page + +* Sat Oct 12 2019 Leigh Scott - 0.29.1-17.20191011.gita85fa2d +- Update to 20191011 snapshot + +* Thu Oct 03 2019 Leigh Scott - 0.29.1-16.20191003.gitdefc8f3 +- Update to 20191003 snapshot + +* Mon Sep 23 2019 Leigh Scott - 0.29.1-15.20190922.gitb6def65 +- Rebuild with newer zimg + +* Sun Sep 22 2019 Leigh Scott - 0.29.1-14.20190922.gitb6def65 +- Remove BuildRequires dvdread and libv4l2 +- Add BuildRequires zimg and caca + +* Sun Sep 22 2019 Leigh Scott - 0.29.1-13.20190922.gitb6def65 +- Update to 20190922 snapshot +- Switch to waf-python3 + +* Tue Sep 10 2019 Leigh Scott - 0.29.1-12.20190814.gitcd7bcb9 +- Adjust epel8 build requires + +* Tue Aug 27 2019 Leigh Scott - 0.29.1-11.20190814.gitcd7bcb9 +- Rebuild for switch to lua + +* Tue Aug 20 2019 Leigh Scott - 0.29.1-10.20190814.gitcd7bcb9 +- Update to 20190814 snapshot + +* Tue Aug 06 2019 Leigh Scott - 0.29.1-9.20190616.gitc9e7473 +- Rebuild for new ffmpeg version + +* Tue Jul 02 2019 Nicolas Chauvet - 0.29.1-8.20190616.gitc9e7473 +- Update to 20190616 snapshot +- Add libplacebo +- Fix support for FFmpeg DRM PRIME + +* Sun Jun 23 2019 Leigh Scott - 0.29.1-6 +- Rebuild against sdk9 nv-codec-headers +- Spec file clean up + +* Mon Mar 04 2019 RPM Fusion Release Engineering - 0.29.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Tue Jan 29 2019 Leigh Scott - 0.29.1-4 +- Enable JavaScript support (rfbz#5151) + +* Tue Dec 18 2018 Nicolas Chauvet - 0.29.1-3 +- Enable rpi support + +* Tue Nov 06 2018 Leigh Scott - 0.29.1-2 +- Rebuild for new ffmpeg + +* Sat Oct 13 2018 Leigh Scott - 0.29.1-1 +- Update to 0.29.1 +- Drop old Obsoletes and Provides +- Use modern marcos + +* Tue Oct 02 2018 Leigh Scott - 0.29.0-3 +- Add BuildRequires: libshaderc-devel + +* Thu Aug 23 2018 Leigh Scott - 0.29.0-2 +- Add BuildRequires: gcc + +* Wed Jul 25 2018 Leigh Scott - 0.29.0-1 +- Update to 0.29.0 + +* Wed Jun 27 2018 Leigh Scott - 0.28.2-6 +- Revert last commit + +* Sat Jun 16 2018 Leigh Scott - 0.28.2-5 +- Rebuild for new libass version +- vulkan is x86 only + +* Fri Apr 20 2018 Leigh Scott - 0.28.2-4 +- Rebuild for ffmpeg-4.0 release + +* Thu Mar 08 2018 RPM Fusion Release Engineering - 0.28.2-3 +- Rebuilt for new ffmpeg snapshot + +* Thu Mar 01 2018 RPM Fusion Release Engineering - 0.28.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sat Feb 17 2018 Leigh Scott - 0.28.2-1 +- Update to 0.28.2 + +* Sun Feb 11 2018 Leigh Scott - 0.28.1-1 +- Update to 0.28.1 + +* Thu Feb 08 2018 Leigh Scott - 0.28.0-3 +- Fix missing build requires + +* Sat Jan 27 2018 Leigh Scott - 0.28.0-2 +- Rebuild for libcdio + +* Wed Jan 17 2018 Leigh Scott - 0.28.0-1 +- Update to 0.28.0 +- Enable VA-API +- Enable vulkan support + +* Tue Jan 16 2018 Nicolas Chauvet - 0.27.0-4 +- Disable VA-API until 0.28.0 lands + +* Mon Jan 15 2018 Nicolas Chauvet - 0.27.0-3 +- Rebuilt for VA-API 1.0.0 + +* Mon Oct 16 2017 Leigh Scott - 0.27.0-2 +- Rebuild for ffmpeg update + +* Fri Sep 15 2017 Leigh Scott - 0.27.0-1 +- Update to 0.27.0 +- Enable libarchive support (play .zip, .iso and other formats) + +* Fri Aug 11 2017 Leigh Scott - 0.26.0-3 +- Enable Samba support (rfbz#4624) +- Enable TV and DVB support + +* Wed Aug 09 2017 Miro Hrončok - 0.26.0-2 +- Enable DVD and CDDA support (rfbz#4622) + +* Thu Jul 20 2017 Leigh Scott - 0.26.0-1 +- Update to 0.26.0 + +* Wed May 17 2017 Leigh Scott - 0.25.0-2 +- Rebuild for ffmpeg update + +* Mon May 08 2017 Miro Hrončok - 0.25.0-1 +- Update to 0.25.0 + +* Sat Apr 29 2017 Leigh Scott - 0.24.0-2 +- Rebuild for ffmpeg update + +* Sun Apr 02 2017 Miro Hrončok - 0.24.0-1 +- Update to 0.24.0 + +* Thu Mar 23 2017 Leigh Scott - 0.23.0-4 +- Try to fix ppc build + +* Mon Mar 20 2017 RPM Fusion Release Engineering - 0.23.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Jan 10 2017 Miro Hrončok - 0.23.0-2 +- Fix AVAudioResampleContext: Unable to set resampling compensation (rfbz#4408) + +* Sat Dec 31 2016 Miro Hrončok - 0.23.0-1 +- Update to 0.23.0 + +* Sat Dec 03 2016 leigh scott - 0.22.0-2 +- Add patch to relax ffmpeg version check + +* Sat Nov 26 2016 leigh scott - 0.22.0-1 +- update to 0.22.0 + +* Thu Nov 17 2016 Adrian Reber - 0.21.0-3 +- Rebuilt for libcdio-0.94 + +* Sat Nov 05 2016 Leigh Scott - 0.21.0-2 +- Rebuilt for new ffmpeg +- Add provides mplayer-backend (rfbz#4284) + +* Thu Oct 20 2016 Evgeny Lensky - 0.21.0-1 +- update to 0.21.0 + +* Tue Aug 16 2016 Leigh Scott - 0.19.0-3 +- Update to 0.19.0 +- Add LDFLAGS so build is hardened +- Fix CFLAGS +- Make build verbose +- Remove Requires pkgconfig from devel sub-package +- Fix source tag + +* Sat Jul 30 2016 Julian Sikorski - 0.18.1-2 +- Rebuilt for ffmpeg-3.1.1 + +* Tue Jul 26 2016 Miro Hrončok - 0.18.1-1 +- Update to 0.18.1 +- Remove patch for Fedora < 22 + +* Sun Jul 03 2016 Sérgio Basto - 0.18.0-3 +- BRs in alphabetical order, rename of sub-packages libs and other improvements + +* Thu Jun 30 2016 Sérgio Basto - 0.18.0-2 +- Add BR perl(Encode) to build on F24 (merge from Adrian Reber PR) + +* Tue Jun 28 2016 Sérgio Basto - 0.18.0-1 +- Update to 0.18.0 + +* Mon Apr 11 2016 Evgeny Lensky - 0.17.0-1 +- update to 0.17.0 + +* Mon Feb 29 2016 Evgeny Lensky - 0.16.0-1 +- update to 0.16.0 +- edit mpv-config.patch + +* Sun Feb 14 2016 Sérgio Basto - 0.15.0-2 +- Drop BR lirc, because support for LIRC has been removed in mpv 0.9.0. +- Add license tag. +- libmpv-devel does not need have same doc and license files. + +* Thu Jan 21 2016 Evgeny Lensky - 0.15.0-1 +- update to 0.15.0 + +* Sat Dec 12 2015 Evgeny Lensky - 0.14.0-1 +- update to 0.14.0 + +* Thu Nov 26 2015 Miro Hrončok - 0.13.0-2 +- Add mesa-libEGL-devel to BRs + +* Thu Nov 26 2015 Miro Hrončok - 0.13.0-1 +- Updated to 0.13.0 + +* Thu Jun 11 2015 Miro Hrončok - 0.9.2-2 +- Removed --disable-debug flag + +* Wed Jun 10 2015 Miro Hrončok - 0.9.2-1 +- Updated to 0.9.2 +- Also build the library + +* Sat May 16 2015 Miro Hrončok - 0.9.1-1 +- Update to 0.9.1 +- BR compat-lua-devel because mpv does not work with lua 5.3 +- Add BR lcms2-devel (#3643) +- Removed --enable-joystick and --enable-lirc (no longer used) + +* Tue Apr 28 2015 Miro Hrončok - 0.8.3-3 +- Conditionalize old waf patch + +* Tue Apr 28 2015 Miro Hrončok - 0.8.3-2 +- Rebuilt + +* Mon Apr 13 2015 Miro Hrončok - 0.8.3-1 +- Updated + +* Wed Jan 28 2015 Miro Hrončok - 0.7.3-1 +- Updated + +* Mon Dec 22 2014 Miro Hrončok - 0.7.1-3 +- Slightly change the waf patch + +* Mon Dec 22 2014 Miro Hrončok - 0.7.1-2 +- Add patch to allow waf 1.7 + +* Sat Dec 13 2014 Miro Hrončok - 0.7.1-1 +- New version 0.7.1 +- Rebuilt new lirc (#3450) + +* Tue Nov 04 2014 Nicolas Chauvet - 0.6.0-3 +- Rebuilt for vaapi 0.36 + +* Mon Oct 20 2014 Sérgio Basto - 0.6.0-2 +- Rebuilt for FFmpeg 2.4.3 + +* Sun Oct 12 2014 Miro Hrončok - 0.6.0-1 +- New version 0.6.0 + +* Fri Sep 26 2014 Nicolas Chauvet - 0.5.1-2 +- Rebuilt for FFmpeg 2.4.x + +* Wed Sep 03 2014 Miro Hrončok - 0.5.1-1 +- New version 0.5.1 +- Add BR ncurses-devel (#3233) + +* Thu Aug 07 2014 Sérgio Basto - 0.4.0-2 +- Rebuilt for ffmpeg-2.3 + +* Tue Jul 08 2014 Miro Hrončok - 0.4.0-1 +- New version 0.4.0 + +* Tue Jun 24 2014 Miro Hrončok - 0.3.11-1 +- New version 0.3.11 + +* Tue Mar 25 2014 Miro Hrončok - 0.3.6-2 +- Rebuilt for new libcdio and libass + +* Thu Mar 20 2014 Miro Hrončok - 0.3.6-1 +- New version 0.3.6 + +* Fri Feb 28 2014 Miro Hrončok - 0.3.5-2 +- Rebuilt for mistake + +* Fri Feb 28 2014 Miro Hrončok - 0.3.5-1 +- New version 0.3.5 + +* Sat Jan 25 2014 Miro Hrončok - 0.3.3-1 +- New version 0.3.3 + +* Wed Jan 01 2014 Miro Hrončok - 0.3.0-2 +- Use upstream .desktop file + +* Wed Jan 01 2014 Miro Hrončok - 0.3.0-1 +- New version 0.3.0 +- Switch to waf +- Add some tricks from openSUSE +- Removed already included patch + +* Sun Dec 22 2013 Miro Hrončok - 0.2.4-8 +- Added patch for https://fedoraproject.org/wiki/Changes/FormatSecurity + +* Sun Dec 22 2013 Miro Hrončok - 0.2.4-7 +- Support wayland + +* Sun Dec 22 2013 Miro Hrončok - 0.2.4-6 +- Rebuilt + +* Sun Dec 22 2013 Miro Hrončok - 0.2.4-5 +- Fixed wrong license tag (see upstream a5507312) + +* Sun Dec 15 2013 Miro Hrončok - 0.2.4-4 +- Added libva (#3065) + +* Sun Dec 15 2013 Miro Hrončok - 0.2.4-3 +- Added lua and libquvi (#3025) + +* Sun Dec 15 2013 Miro Hrončok - 0.2.4-2 +- Rebuilt for mistakes + +* Sun Dec 15 2013 Miro Hrončok - 0.2.4-1 +- New version 0.2.4 + +* Mon Nov 11 2013 Miro Hrončok - 0.2.3-4 +- There's no longer AUTHORS file in %%doc +- Install icons + +* Mon Nov 11 2013 Miro Hrončok - 0.2.3-3 +- Rebased config patch + +* Mon Nov 11 2013 Miro Hrončok - 0.2.3-2 +- Proper sources for all branches + +* Mon Nov 11 2013 Miro Hrončok - 0.2.3-1 +- New upstream version + +* Sat Oct 12 2013 Miro Hrončok - 0.1.7-4 +- Fixing cvs errors + +* Sat Oct 12 2013 Miro Hrončok - 0.1.7-3 +- Add desktop file + +* Sat Oct 12 2013 Miro Hrončok - 0.1.7-2 +- Do not use xv as default vo + +* Sat Oct 12 2013 Miro Hrončok - 0.1.7-1 +- New upstream release + +* Mon Sep 30 2013 Nicolas Chauvet - 0.1.2-4 +- Rebuilt + +* Mon Sep 09 2013 Miro Hrončok - 0.1.2-3 +- Added BR ffmpeg-libs + +* Tue Aug 27 2013 Miro Hrončok - 0.1.2-2 +- Reduced BRs a lot (removed support for various stuff) +- Make smbclient realized +- Changed the description to the text from manual page + +* Mon Aug 19 2013 Miro Hrončok - 0.1.2-1 +- Initial spec +- Inspired a lot in mplayer.spec