Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mpv/
Date: Thu, 04 May 2017 16:28:41
Message-Id: 1493915300.6dabaa91e0958415f72bad11bae8366d338989d9.soap@gentoo
1 commit: 6dabaa91e0958415f72bad11bae8366d338989d9
2 Author: Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
3 AuthorDate: Thu Apr 27 20:39:53 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu May 4 16:28:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dabaa91
7
8 media-video/mpv: remove obsolete USE for SSE4.1 in 9999
9
10 SSE4.1 bits were only used for vaapi with ffmpeg-API<3.3.
11 Support for this combo was removed in the previous commit.
12
13 Closes: https://github.com/gentoo/gentoo/pull/4510
14 Package-Manager: Portage-2.3.5, Repoman-2.3.2
15
16 media-video/mpv/mpv-9999.ebuild | 5 -----
17 1 file changed, 5 deletions(-)
18
19 diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild
20 index fb8cd67ab79..ee9678229c5 100644
21 --- a/media-video/mpv/mpv-9999.ebuild
22 +++ b/media-video/mpv/mpv-9999.ebuild
23 @@ -32,7 +32,6 @@ IUSE="+alsa aqua archive bluray cdda +cli coreaudio cplugins cuda doc drm dvb
24 luajit openal +opengl oss pulseaudio raspberry-pi rubberband samba sdl
25 selinux test tools +uchardet v4l vaapi vdpau vf-dlopen wayland +X +xv
26 zsh-completion"
27 -IUSE+=" cpu_flags_x86_sse4_1"
28
29 REQUIRED_USE="
30 || ( cli libmpv )
31 @@ -152,10 +151,6 @@ mpv_check_compiler() {
32 if use opengl && ! tc-has-tls; then
33 die "Your compiler lacks C++11 TLS support. Use GCC>=4.8 or Clang>=3.3."
34 fi
35 - if ! tc-is-gcc && use vaapi && use cpu_flags_x86_sse4_1 && \
36 - { has_version '<media-video/ffmpeg-3.3:0' || has_version '<media-video/libav-13:0'; }; then
37 - die "${PN} requires GCC for SSE4.1 intrinsics."
38 - fi
39 fi
40 }