Browse Source

package/vlc: security bump version to 3.0.14

Removed patch 0002 which was applied upstream:
https://code.videolan.org/videolan/vlc/-/commit/41caaa08cde60c4fec4bf2e5f9610e2a1b9e6a23

Renumbered remaining patches.

Release notes:
https://www.videolan.org/vlc/releases/3.0.13.html
https://www.videolan.org/vlc/releases/3.0.12-update.html

Version 3.0.13 fixes VideoLAN-SB-VLC-3013:
https://www.videolan.org/security/sb-vlc3013.html

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd Kuhls 4 years ago
parent
commit
6a07591484

+ 0 - 0
package/vlc/0003-automake-add-subdir-objects-option.patch → package/vlc/0002-automake-add-subdir-objects-option.patch


+ 0 - 41
package/vlc/0002-lua-Define-LUA_COMPAT_APIINTCASTS-for-Lua-5.3.0-comp.patch

@@ -1,41 +0,0 @@
-From 00135e21bec84a2fe5920d02fa0982ceb9f89a35 Mon Sep 17 00:00:00 2001
-From: Vinson Lee <vlee@freedesktop.org>
-Date: Thu, 5 Feb 2015 14:48:53 -0800
-Subject: [PATCH] lua: Define LUA_COMPAT_APIINTCASTS for Lua >= 5.3.0
- compatibility.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-In Lua 5.3.0, luaL_checkint was deprecated.
-
-This patch fixes this build error with Lua 5.3.0.
-
-lua/demux.c: In function ‘vlclua_demux_peek’:
-lua/demux.c:55:5: error: implicit declaration of function ‘luaL_checkint’ [-Werror=implicit-function-declaration]
-     int n = luaL_checkint( L, 1 );
-     ^
-
-Signed-off-by: Vinson Lee <vlee@freedesktop.org>
-Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-[Backport upstream commit 41caaa08cde60c4fec4bf2e5f9610e2a1b9e6a23]
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
----
- modules/lua/vlc.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/modules/lua/vlc.h b/modules/lua/vlc.h
-index 71f381d334..b46b5f67a1 100644
---- a/modules/lua/vlc.h
-+++ b/modules/lua/vlc.h
-@@ -38,6 +38,7 @@
- #include <vlc_stream.h>
- #include <vlc_demux.h>
- 
-+#define LUA_COMPAT_APIINTCASTS
- #define LUA_COMPAT_MODULE
- #include <lua.h>        /* Low level lua C API */
- #include <lauxlib.h>    /* Higher level C API */
--- 
-2.14.4
-

+ 0 - 0
package/vlc/0004-build-use-pkg-config-to-get-tremor-libs.patch → package/vlc/0003-build-use-pkg-config-to-get-tremor-libs.patch


+ 0 - 0
package/vlc/0005-Fix-build-error-using-uClibc-by-adding-sys-types.h.patch → package/vlc/0004-Fix-build-error-using-uClibc-by-adding-sys-types.h.patch


+ 0 - 0
package/vlc/0006-Don-t-assume-strerror_l-is-available.patch → package/vlc/0005-Don-t-assume-strerror_l-is-available.patch


+ 0 - 0
package/vlc/0007-posix-remove-ancient-run-time-fallback-to-real-time-.patch → package/vlc/0006-posix-remove-ancient-run-time-fallback-to-real-time-.patch


+ 0 - 0
package/vlc/0008-Add-support-for-freerdp2.patch → package/vlc/0007-Add-support-for-freerdp2.patch


+ 0 - 0
package/vlc/0009-configure.ac-also-use-AC_PATH_PROG-to-check-for-wayl.patch → package/vlc/0008-configure.ac-also-use-AC_PATH_PROG-to-check-for-wayl.patch


+ 0 - 0
package/vlc/0010-modules-video_filter-opencv_example.cpp-fix-build-wi.patch → package/vlc/0009-modules-video_filter-opencv_example.cpp-fix-build-wi.patch


+ 4 - 4
package/vlc/vlc.hash

@@ -1,7 +1,7 @@
-# From https://get.videolan.org/vlc/3.0.12/vlc-3.0.12.tar.xz.sha256
-sha256  eff458f38a92126094f44f2263c2bf2c7cdef271b48192d0fe7b1726388cf879  vlc-3.0.12.tar.xz
-# From https://get.videolan.org/vlc/3.0.12/vlc-3.0.12.tar.xz.sha1
-sha1  39ef414a07202ec6569acda4c5d91e8576d453bf  vlc-3.0.12.tar.xz
+# From https://get.videolan.org/vlc/3.0.14/vlc-3.0.14.tar.xz.sha256
+sha256  49b93e5b33deaa37060e6b24a98200cad70c407947f14eb2a8b6a0c64d8535a6  vlc-3.0.14.tar.xz
+# From https://get.videolan.org/vlc/3.0.14/vlc-3.0.14.tar.xz.sha1
+sha1  8a8613f16a9053668d7a7dcfa1e6d8be93af3e89  vlc-3.0.14.tar.xz
 # Locally computed
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
 sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING.LIB

+ 1 - 1
package/vlc/vlc.mk

@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-VLC_VERSION = 3.0.12
+VLC_VERSION = 3.0.14
 VLC_SITE = https://get.videolan.org/vlc/$(VLC_VERSION)
 VLC_SOURCE = vlc-$(VLC_VERSION).tar.xz
 VLC_LICENSE = GPL-2.0+, LGPL-2.1+