Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/
Date: Fri, 06 Sep 2019 22:28:26
Message-Id: 1567808718.4f278afcd6705e183e342fbdf062f524cd24838d.chewi@gentoo
1 commit: 4f278afcd6705e183e342fbdf062f524cd24838d
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 6 22:25:18 2019 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 6 22:25:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f278afc
7
8 media-video/ffmpeg: Skip QA_FLAGS_IGNORED for non-separate libffmpeg
9
10 When not built separately, libffmpeg has no code of its own so this QA
11 check raises a false positive.
12
13 Closes: https://bugs.gentoo.org/692566
14 Package-Manager: Portage-2.3.75, Repoman-2.3.17
15 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
16
17 media-video/ffmpeg/ffmpeg-4.2.ebuild | 4 ++++
18 media-video/ffmpeg/ffmpeg-9999.ebuild | 4 ++++
19 2 files changed, 8 insertions(+)
20
21 diff --git a/media-video/ffmpeg/ffmpeg-4.2.ebuild b/media-video/ffmpeg/ffmpeg-4.2.ebuild
22 index ffac01d6fe8..1cc9bd89f36 100644
23 --- a/media-video/ffmpeg/ffmpeg-4.2.ebuild
24 +++ b/media-video/ffmpeg/ffmpeg-4.2.ebuild
25 @@ -525,6 +525,10 @@ multilib_src_install() {
26 popd >/dev/null || die
27 else
28 emake V=1 DESTDIR="${D}" install-libffmpeg
29 +
30 + # When not built separately, libffmpeg has no code of
31 + # its own so this QA check raises a false positive.
32 + QA_FLAGS_IGNORED+=" usr/$(get_libdir)/chromium/.*"
33 fi
34 fi
35 fi
36
37 diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild
38 index 5df73abbc92..b29918ea4ec 100644
39 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild
40 +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild
41 @@ -525,6 +525,10 @@ multilib_src_install() {
42 popd >/dev/null || die
43 else
44 emake V=1 DESTDIR="${D}" install-libffmpeg
45 +
46 + # When not built separately, libffmpeg has no code of
47 + # its own so this QA check raises a false positive.
48 + QA_FLAGS_IGNORED+=" usr/$(get_libdir)/chromium/.*"
49 fi
50 fi
51 fi