commit: 4f278afcd6705e183e342fbdf062f524cd24838d Author: James Le Cuirot <chewi <AT> gentoo <DOT> org> AuthorDate: Fri Sep 6 22:25:18 2019 +0000 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org> CommitDate: Fri Sep 6 22:25:18 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f278afc
media-video/ffmpeg: Skip QA_FLAGS_IGNORED for non-separate libffmpeg When not built separately, libffmpeg has no code of its own so this QA check raises a false positive. Closes: https://bugs.gentoo.org/692566 Package-Manager: Portage-2.3.75, Repoman-2.3.17 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org> media-video/ffmpeg/ffmpeg-4.2.ebuild | 4 ++++ media-video/ffmpeg/ffmpeg-9999.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/media-video/ffmpeg/ffmpeg-4.2.ebuild b/media-video/ffmpeg/ffmpeg-4.2.ebuild index ffac01d6fe8..1cc9bd89f36 100644 --- a/media-video/ffmpeg/ffmpeg-4.2.ebuild +++ b/media-video/ffmpeg/ffmpeg-4.2.ebuild @@ -525,6 +525,10 @@ multilib_src_install() { popd >/dev/null || die else emake V=1 DESTDIR="${D}" install-libffmpeg + + # When not built separately, libffmpeg has no code of + # its own so this QA check raises a false positive. + QA_FLAGS_IGNORED+=" usr/$(get_libdir)/chromium/.*" fi fi fi diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild index 5df73abbc92..b29918ea4ec 100644 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild @@ -525,6 +525,10 @@ multilib_src_install() { popd >/dev/null || die else emake V=1 DESTDIR="${D}" install-libffmpeg + + # When not built separately, libffmpeg has no code of + # its own so this QA check raises a false positive. + QA_FLAGS_IGNORED+=" usr/$(get_libdir)/chromium/.*" fi fi fi
