Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/
Date: Fri, 30 Apr 2021 18:07:16
Message-Id: 1619806028.b347f3e83ffc3405cdac5524c07acb20bee906f9.whissi@gentoo
1 commit: b347f3e83ffc3405cdac5524c07acb20bee906f9
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 30 18:00:12 2021 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 30 18:07:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b347f3e8
7
8 media-video/ffmpeg: drop avresample
9
10 Link 1: https://github.com/FFmpeg/FFmpeg/commit/420cedd49745b284c35d97b936b71ff79b43bdf7
11
12 Package-Manager: Portage-3.0.18, Repoman-3.0.3
13 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
14
15 media-video/ffmpeg/ffmpeg-9999.ebuild | 3 +--
16 1 file changed, 1 insertion(+), 2 deletions(-)
17
18 diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild
19 index 7ab4dcdeb81..7cc85ee5f21 100644
20 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild
21 +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild
22 @@ -429,7 +429,6 @@ multilib_src_configure() {
23 # Mandatory configuration
24 myconf=(
25 --enable-avfilter
26 - --enable-avresample
27 --disable-stripping
28 # This is only for hardcoded cflags; those are used in configure checks that may
29 # interfere with proper detections, bug #671746 and bug #645778
30 @@ -553,6 +552,6 @@ multilib_src_install_all() {
31 }
32
33 multilib_src_test() {
34 - LD_LIBRARY_PATH="${BUILD_DIR}/libpostproc:${BUILD_DIR}/libswscale:${BUILD_DIR}/libswresample:${BUILD_DIR}/libavcodec:${BUILD_DIR}/libavdevice:${BUILD_DIR}/libavfilter:${BUILD_DIR}/libavformat:${BUILD_DIR}/libavutil:${BUILD_DIR}/libavresample" \
35 + LD_LIBRARY_PATH="${BUILD_DIR}/libpostproc:${BUILD_DIR}/libswscale:${BUILD_DIR}/libswresample:${BUILD_DIR}/libavcodec:${BUILD_DIR}/libavdevice:${BUILD_DIR}/libavfilter:${BUILD_DIR}/libavformat:${BUILD_DIR}/libavutil" \
36 emake V=1 fate
37 }