version update, build tweaks 2020-07
authorGood Guy <good1.2guy@gmail.com>
Sat, 1 Aug 2020 17:24:30 +0000 (11:24 -0600)
committerGood Guy <good1.2guy@gmail.com>
Sat, 1 Aug 2020 17:24:30 +0000 (11:24 -0600)
cinelerra-5.1/blds/PKGBUILD
cinelerra-5.1/blds/cinelerra.spec
cinelerra-5.1/blds/debian/changelog
cinelerra-5.1/blds/debian/control
cinelerra-5.1/thirdparty/Makefile
cinelerra-5.1/thirdparty/src/libvpx-1.8.2.patch1 [new file with mode: 0644]

index 74edc8fbf4ea41f01fd6806596e35d6deaae8425..d53d39237d9c689d735bf697a26a79f9c2430bd7 100644 (file)
@@ -1,7 +1,7 @@
 # Maintainer: goodguy <lists.cinelerra-gg.org>
 pkgname=cin
 pkgver=5.1
-pkgrel=20200630
+pkgrel=20200731
 pkgdesc="Cinelerra git://git.cinelerra-gg.org/goodguy/cinelerra.git ($pkgrel)"
 arch=('x86_64')
 url="https://www.cinelerra-gg.org"
index 12f472e1725213bdf0483a718cba0844fa6dd650..98df5a419a5bb8bb8b6d211c12a59ea9beb46c74 100644 (file)
@@ -1,4 +1,4 @@
-%define ver 20200630
+%define ver 20200731
 %define cin cinelerra
 Summary: Multimedia Editing and construction
 
index 9e3c47c055c935f5c2900bdaa4cea3f84bd6e726..f73636babf86a49f12a775356b20f950023d7ecf 100644 (file)
@@ -1,4 +1,4 @@
-cin (1:5.1.20200630) unstable; urgency=low
+cin (1:5.1.20200731) unstable; urgency=low
 
   [ guy goode ]
 
index 9067be592d61c424af56c45610bc1f52c14aa22d..629d550f738283602b72d35ecb97dba4c15e7b4f 100644 (file)
@@ -1,7 +1,7 @@
 Source: cin
 Section: video
 Priority: optional
-Standards-Version: 5.1.20200630
+Standards-Version: 5.1.20200731
 Maintainer: mailing list <cin@lists.cinelerra-gg.org>
 Homepage: https://www.cinelerra-gg.org/
 Build-Depends:
index 17603e1a7f29374b7afe4c75e98d711d13bdfe60..27f13c655101b4c21261cf60ce66a2fd4cb8b0f8 100644 (file)
@@ -252,7 +252,7 @@ twolame.cfg_params?=--enable-shared=no
 x264.cfg_params?= --enable-static --enable-pic
 x265.cfg_vars?=$(call cmake_config,source)
 x265.cfg_params?= -DENABLE_SHARED=no
-libvpx.cfg_params?= --enable-pic
+libvpx.cfg_params?= --enable-pic --disable-avx512
 
 DS:=$$$$$$$$
 pkg_cfg=$(call bld_path,$(1),usr/local/lib/pkgconfig):
diff --git a/cinelerra-5.1/thirdparty/src/libvpx-1.8.2.patch1 b/cinelerra-5.1/thirdparty/src/libvpx-1.8.2.patch1
new file mode 100644 (file)
index 0000000..3700951
--- /dev/null
@@ -0,0 +1,11 @@
+--- a/vpx_ports/mem.h  2019-12-09 16:09:20.000000000 -0700
++++ b/vpx_ports/mem.h  2020-07-31 09:20:22.303406738 -0600
+@@ -15,7 +15,7 @@
+ #include "vpx/vpx_integer.h"
+ #if (defined(__GNUC__) && __GNUC__) || defined(__SUNPRO_C)
+-#define DECLARE_ALIGNED(n, typ, val) typ val __attribute__((aligned(n)))
++#define DECLARE_ALIGNED(n, typ, val) typ val __attribute__((aligned(64)))
+ #elif defined(_MSC_VER)
+ #define DECLARE_ALIGNED(n, typ, val) __declspec(align(n)) typ val
+ #else