Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libvpx/files/
Date: Tue, 21 Jan 2020 09:56:21
Message-Id: 1579600555.dda7ef8789a6a3406ebdd03823b892fd9e6359f3.gyakovlev@gentoo
1 commit: dda7ef8789a6a3406ebdd03823b892fd9e6359f3
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 21 09:55:55 2020 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 21 09:55:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dda7ef87
7
8 media-libs/libvpx: remove unused patch
9
10 1.8.1 includes it and 1.8.0 no longer in the tree
11
12 Package-Manager: Portage-2.3.84, Repoman-2.3.20
13 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
14
15 .../files/libvpx-1.8.0-ppc64le-disable-vsx.patch | 28 ----------------------
16 1 file changed, 28 deletions(-)
17
18 diff --git a/media-libs/libvpx/files/libvpx-1.8.0-ppc64le-disable-vsx.patch b/media-libs/libvpx/files/libvpx-1.8.0-ppc64le-disable-vsx.patch
19 deleted file mode 100644
20 index 5c6a36ca867..00000000000
21 --- a/media-libs/libvpx/files/libvpx-1.8.0-ppc64le-disable-vsx.patch
22 +++ /dev/null
23 @@ -1,28 +0,0 @@
24 -From 7bf48f92e884fc01c28a4652ea0883b28744519d Mon Sep 17 00:00:00 2001
25 -From: Johann <johannkoenig@××××××.com>
26 -Date: Mon, 10 Jun 2019 14:35:03 -0700
27 -Subject: [PATCH] ppc: disable vsx optimizations with hbd
28 -
29 -vsx optimizations do not support 32 bit tran_low_t values.
30 -
31 -BUG=webm:1563
32 -
33 -Change-Id: I9e6348078f6e4855acfd381133eb840a435b7f81
34 ----
35 -
36 -diff --git a/build/make/configure.sh b/build/make/configure.sh
37 -index e950353..4a874f1 100644
38 ---- a/build/make/configure.sh
39 -+++ b/build/make/configure.sh
40 -@@ -1239,7 +1239,10 @@
41 - ppc64le*)
42 - link_with_cc=gcc
43 - setup_gnu_toolchain
44 -- check_gcc_machine_option "vsx"
45 -+ # Only enable vsx optimizations when vp9_highbitdepth is not enabled.
46 -+ # https://bugs.chromium.org/p/webm/issues/detail?id=1538
47 -+ enabled vp9_highbitdepth || check_gcc_machine_option "vsx"
48 -+ enabled vsx || RTCD_OPTIONS="${RTCD_OPTIONS}--disable-vsx "
49 - if [ -n "${tune_cpu}" ]; then
50 - case ${tune_cpu} in
51 - power?)