From 3b8d52fb2e216f0b9d43354a625ebf43f51c885e Mon Sep 17 00:00:00 2001 From: maxice8 Date: Sat, 17 Feb 2018 23:47:55 -0200 Subject: [PATCH] libvpx: update to 1.7.0. --- common/shlibs | 2 +- srcpkgs/libvpx/patches/01-arm-fixes.patch | 78 ----------------------- srcpkgs/libvpx/template | 10 +-- srcpkgs/libvpx/update | 1 - 4 files changed, 6 insertions(+), 85 deletions(-) delete mode 100644 srcpkgs/libvpx/patches/01-arm-fixes.patch delete mode 100644 srcpkgs/libvpx/update diff --git a/common/shlibs b/common/shlibs index 9b669081fa0..bef95b25584 100644 --- a/common/shlibs +++ b/common/shlibs @@ -766,7 +766,7 @@ libclutter-gtk-1.0.so.0 clutter-gtk-1.1.2_1 libchamplain-0.12.so.0 libchamplain-0.12.5_2 libchamplain-gtk-0.12.so.0 libchamplain-0.12.5_2 libgeoclue.so.0 geoclue-0.12.0_1 -libvpx.so.4 libvpx-1.6.0_1 +libvpx.so.5 libvpx-1.7.0_1 libXevie.so.1 libXevie-1.0.2_1 libatspi.so.0 at-spi2-core-1.91.91_1 libatk-bridge-2.0.so.0 at-spi2-atk-2.6.0_1 diff --git a/srcpkgs/libvpx/patches/01-arm-fixes.patch b/srcpkgs/libvpx/patches/01-arm-fixes.patch deleted file mode 100644 index 3e212abbf86..00000000000 --- a/srcpkgs/libvpx/patches/01-arm-fixes.patch +++ /dev/null @@ -1,78 +0,0 @@ -From ac94b8f1653ee9a459aa26a65243d11b8c308064 Mon Sep 17 00:00:00 2001 -From: Kevin Mihelich -Date: Sun, 15 Jan 2017 12:11:57 -0700 -Subject: [PATCH] ARM fixes - ---- - build/make/configure.sh | 21 +++++++++++---------- - configure | 2 ++ - 2 files changed, 13 insertions(+), 10 deletions(-) - -diff --git a/build/make/configure.sh b/build/make/configure.sh -index 007e02000..c7e9076b3 100644 ---- build/make/configure.sh -+++ build/make/configure.sh -@@ -680,6 +680,14 @@ process_common_toolchain() { - aarch64*) - tgt_isa=arm64 - ;; -+ armv5te*) -+ tgt_isa=armv5te -+ float_abi=soft -+ ;; -+ armv6*-gnueabihf) -+ tgt_isa=armv6 -+ float_abi=hard -+ ;; - armv7*-hardfloat* | armv7*-gnueabihf | arm-*-gnueabihf) - tgt_isa=armv7 - float_abi=hard -@@ -873,7 +881,8 @@ process_common_toolchain() { - soft_enable neon - ;; - armv7|armv7s) - soft_enable neon -+ float_abi=hard - # Only enable neon_asm when neon is also enabled. - enabled neon && soft_enable neon_asm - # If someone tries to force it through, die. -@@ -894,13 +902,6 @@ process_common_toolchain() { - check_add_asflags --defsym ARCHITECTURE=${arch_int} - tune_cflags="-mtune=" - if [ ${tgt_isa} = "armv7" ] || [ ${tgt_isa} = "armv7s" ]; then -- if [ -z "${float_abi}" ]; then -- check_cpp <