From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B264C138334 for ; Wed, 27 Feb 2019 22:20:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C79A4E0894; Wed, 27 Feb 2019 22:20:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A1B7EE0894 for ; Wed, 27 Feb 2019 22:20:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E673335D0D for ; Wed, 27 Feb 2019 22:20:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA1224D5 for ; Wed, 27 Feb 2019 22:20:48 +0000 (UTC) From: "Thomas Raschbacher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Raschbacher" Message-ID: <1551306005.2ecc010a8cf7a9e8a22e8ca24e927102bb2c433b.lordvan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/vlc/, media-video/vlc/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/vlc/files/vlc-3.0.6-libav.patch media-video/vlc/vlc-3.0.6-r1.ebuild X-VCS-Directories: media-video/vlc/files/ media-video/vlc/ X-VCS-Committer: lordvan X-VCS-Committer-Name: Thomas Raschbacher X-VCS-Revision: 2ecc010a8cf7a9e8a22e8ca24e927102bb2c433b X-VCS-Branch: master Date: Wed, 27 Feb 2019 22:20:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7fedf7db-14fe-431e-9c36-5a30d0c4c332 X-Archives-Hash: 681cb8d83b575b56a421c1a22e5a3edb commit: 2ecc010a8cf7a9e8a22e8ca24e927102bb2c433b Author: Thomas Raschbacher gentoo org> AuthorDate: Wed Feb 27 22:20:05 2019 +0000 Commit: Thomas Raschbacher gentoo org> CommitDate: Wed Feb 27 22:20:05 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ecc010a media-video/vlc: fix libav compile bug Closes: https://bugs.gentoo.org/show_bug.cgi?id=676032 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Thomas Raschbacher gentoo.org> media-video/vlc/files/vlc-3.0.6-libav.patch | 12 ++++++++++++ media-video/vlc/vlc-3.0.6-r1.ebuild | 1 + 2 files changed, 13 insertions(+) diff --git a/media-video/vlc/files/vlc-3.0.6-libav.patch b/media-video/vlc/files/vlc-3.0.6-libav.patch new file mode 100644 index 00000000000..08e13f15fb6 --- /dev/null +++ b/media-video/vlc/files/vlc-3.0.6-libav.patch @@ -0,0 +1,12 @@ +--- a/modules/codec/avcodec/fourcc.c 2019-02-27 22:57:55.878463261 +0100 ++++ a/modules/codec/avcodec/fourcc.c_orig 2018-10-28 12:11:19.000000000 +0100 +@@ -182,7 +182,9 @@ + /* AV_CODEC_ID_V210X */ + { VLC_CODEC_TMV, AV_CODEC_ID_TMV }, + { VLC_CODEC_V210, AV_CODEC_ID_V210 }, ++#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 54, 50, 100 ) && LIBAVCODEC_VERSION_MICRO >= 100 + { VLC_CODEC_VUYA, AV_CODEC_ID_AYUV }, ++#endif + /* AV_CODEC_ID_DPX */ + { VLC_CODEC_MAD, AV_CODEC_ID_MAD }, + { VLC_CODEC_FRWU, AV_CODEC_ID_FRWU }, diff --git a/media-video/vlc/vlc-3.0.6-r1.ebuild b/media-video/vlc/vlc-3.0.6-r1.ebuild index b803e74a18e..519aa96447b 100644 --- a/media-video/vlc/vlc-3.0.6-r1.ebuild +++ b/media-video/vlc/vlc-3.0.6-r1.ebuild @@ -234,6 +234,7 @@ PATCHES=( "${FILESDIR}"/${PN}-2.2.8-freerdp-2.patch # bug 590164 "${FILESDIR}"/${P}-libvpx-1.8.0.patch # bug 677606 "${FILESDIR}"/${P}-fdk-aac-2.0.0.patch # bug 672290 + "${FILESDIR}"/${P}-libav.patch ) DOCS=( AUTHORS THANKS NEWS README doc/fortunes.txt )