[vlc] Add libplacebo-5.patch
by Nicolas Chauvet
commit f92d042ebbf5c35729312a10b84db082c262d0b0
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sun Dec 25 17:34:11 2022 +0100
Add libplacebo-5.patch
vlc-libplacebo-5.patch | 131 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 131 insertions(+)
---
diff --git a/vlc-libplacebo-5.patch b/vlc-libplacebo-5.patch
new file mode 100644
index 0000000..8da84e5
--- /dev/null
+++ b/vlc-libplacebo-5.patch
@@ -0,0 +1,131 @@
+From efbb1fdbc4420365b3ffd22e55dd27ad520037c7 Mon Sep 17 00:00:00 2001
+From: Niklas Haas <git(a)haasn.dev>
+Date: Sat, 16 Jul 2022 14:41:13 +0200
+Subject: [PATCH] opengl: port to libplacebo v4 API
+
+These v3.x APIs will be removed in v5.x. Fortunately, the new APIs are a
+near drop-in replacement, so the change was minimal. Only the error
+handling was cleaned up slightly.
+---
+ modules/video_output/opengl/converter.h | 18 ++++++++++--------
+ modules/video_output/opengl/fragment_shaders.c | 4 ++--
+ modules/video_output/opengl/vout_helper.c | 14 +++++++-------
+ 3 files changed, 19 insertions(+), 17 deletions(-)
+
+diff --git a/modules/video_output/opengl/converter.h b/modules/video_output/opengl/converter.h
+index 7000e1f38e..cb8e593a9a 100644
+--- a/modules/video_output/opengl/converter.h
++++ b/modules/video_output/opengl/converter.h
+@@ -52,6 +52,11 @@
+ # endif
+ #endif
+
++#ifdef HAVE_LIBPLACEBO
++# include <libplacebo/log.h>
++# include <libplacebo/shaders.h>
++#endif
++
+ #define VLCGL_PICTURE_MAX 128
+
+ #ifndef GL_TEXTURE_RECTANGLE
+@@ -253,10 +258,6 @@ static inline bool HasExtension(const char *apis, const char *api)
+ return false;
+ }
+
+-struct pl_context;
+-struct pl_shader;
+-struct pl_shader_res;
+-
+ /*
+ * Structure that is filled by "glhw converter" module probe function
+ * The implementation should initialize every members of the struct that are
+@@ -272,8 +273,12 @@ struct opengl_tex_converter_t
+ /* Pointer to object gl, set by the caller */
+ vlc_gl_t *gl;
+
++#ifdef HAVE_LIBPLACEBO
+ /* libplacebo context, created by the caller (optional) */
+- struct pl_context *pl_ctx;
++ pl_log pl_log;
++ pl_shader pl_sh;
++ const struct pl_shader_res *pl_sh_res;
++#endif
+
+ /* Function pointers to OpenGL functions, set by the caller */
+ const opengl_vtable_t *vt;
+@@ -337,9 +342,6 @@ struct opengl_tex_converter_t
+ bool yuv_color;
+ GLfloat yuv_coefficients[16];
+
+- struct pl_shader *pl_sh;
+- const struct pl_shader_res *pl_sh_res;
+-
+ /* Private context */
+ void *priv;
+
+diff --git a/modules/video_output/opengl/fragment_shaders.c b/modules/video_output/opengl/fragment_shaders.c
+index 2246e33afd..16380335cc 100644
+--- a/modules/video_output/opengl/fragment_shaders.c
++++ b/modules/video_output/opengl/fragment_shaders.c
+@@ -611,7 +611,7 @@ opengl_fragment_shader_init_impl(opengl_tex_converter_t *tc, GLenum tex_target,
+
+ #ifdef HAVE_LIBPLACEBO
+ if (tc->pl_sh) {
+- struct pl_shader *sh = tc->pl_sh;
++ pl_shader sh = tc->pl_sh;
+ struct pl_color_map_params color_params = pl_color_map_default_params;
+ color_params.intent = var_InheritInteger(tc->gl, "rendering-intent");
+ color_params.tone_mapping_algo = var_InheritInteger(tc->gl, "tone-mapping");
+@@ -634,7 +634,7 @@ opengl_fragment_shader_init_impl(opengl_tex_converter_t *tc, GLenum tex_target,
+ pl_color_space_from_video_format(&tc->fmt),
+ dst_space, NULL, false);
+
+- struct pl_shader_obj *dither_state = NULL;
++ pl_shader_obj dither_state = NULL;
+ int method = var_InheritInteger(tc->gl, "dither-algo");
+ if (method >= 0) {
+
+diff --git a/modules/video_output/opengl/vout_helper.c b/modules/video_output/opengl/vout_helper.c
+index 13d65e04c8..e971f5170b 100644
+--- a/modules/video_output/opengl/vout_helper.c
++++ b/modules/video_output/opengl/vout_helper.c
+@@ -570,8 +570,8 @@ opengl_deinit_program(vout_display_opengl_t *vgl, struct prgm *prgm)
+
+ #ifdef HAVE_LIBPLACEBO
+ FREENULL(tc->uloc.pl_vars);
+- if (tc->pl_ctx)
+- pl_context_destroy(&tc->pl_ctx);
++ pl_shader_free(&tc->pl_sh);
++ pl_log_destroy(&tc->pl_log);
+ #endif
+
+ vlc_object_release(tc);
+@@ -622,21 +622,21 @@ opengl_init_program(vout_display_opengl_t *vgl, struct prgm *prgm,
+ // create the main libplacebo context
+ if (!subpics)
+ {
+- tc->pl_ctx = pl_context_create(PL_API_VER, &(struct pl_context_params) {
++ tc->pl_log = pl_log_create(PL_API_VER, &(struct pl_log_params) {
+ .log_cb = log_cb,
+ .log_priv = tc,
+ .log_level = PL_LOG_INFO,
+ });
+- if (tc->pl_ctx) {
++ if (tc->pl_log) {
+ # if PL_API_VER >= 20
+- tc->pl_sh = pl_shader_alloc(tc->pl_ctx, &(struct pl_shader_params) {
++ tc->pl_sh = pl_shader_alloc(tc->pl_log, &(struct pl_shader_params) {
+ .glsl.version = tc->glsl_version,
+ .glsl.gles = tc->is_gles,
+ });
+ # elif PL_API_VER >= 6
+- tc->pl_sh = pl_shader_alloc(tc->pl_ctx, NULL, 0);
++ tc->pl_sh = pl_shader_alloc(tc->pl_log, NULL, 0);
+ # else
+- tc->pl_sh = pl_shader_alloc(tc->pl_ctx, NULL, 0, 0);
++ tc->pl_sh = pl_shader_alloc(tc->pl_log, NULL, 0, 0);
+ # endif
+ }
+ }
+--
+2.38.1
1 year, 11 months
[vlc] Revert "Disable placebo on f38"
by Nicolas Chauvet
commit 9bcd7d402900183ddc5a1f64b244135ddb44be53
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sun Dec 25 17:33:53 2022 +0100
Revert "Disable placebo on f38"
This reverts commit 3eba6e6a71878536123f397d0b02f09e8a2d4263.
vlc.spec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/vlc.spec b/vlc.spec
index 844190a..f2c0219 100644
--- a/vlc.spec
+++ b/vlc.spec
@@ -150,7 +150,7 @@ BuildRequires: libtiff-devel
BuildRequires: pkgconfig(libidn)
BuildRequires: pkgconfig(libjpeg)
# Not Yet in EL8
-%if 0%{?fedora} && 0%{?fedora} < 38
+%if 0%{?fedora}
BuildRequires: pkgconfig(libplacebo)
%endif
BuildRequires: pkgconfig(libudev)
1 year, 11 months
[kodi/f37] Kodi 19.5 Final
by Leigh Scott
Summary of changes:
e6f405c... Kodi 19.5 Final (*)
(*) This commit already existed in another branch; no separate mail sent
1 year, 11 months
[kodi] Kodi 19.5 Final
by Leigh Scott
commit e6f405c8ad4b127de339612ad59936dfbb3f1125
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Sun Dec 25 00:02:44 2022 +0000
Kodi 19.5 Final
kodi-19-fmt-9.patch | 74 -----------------------------------
kodi-19.4-fix-mesa-22.3.0-build.patch | 12 ++++++
kodi-generate-tarball-xz.sh | 2 +-
kodi.spec | 60 +++++++++-------------------
sources | 2 +-
5 files changed, 33 insertions(+), 117 deletions(-)
---
diff --git a/kodi-19.4-fix-mesa-22.3.0-build.patch b/kodi-19.4-fix-mesa-22.3.0-build.patch
new file mode 100644
index 0000000..e9ff90d
--- /dev/null
+++ b/kodi-19.4-fix-mesa-22.3.0-build.patch
@@ -0,0 +1,12 @@
+--- xbmc/xbmc/windowing/X11/GLContextEGL.h
++++ xbmc/xbmc/windowing/X11/GLContextEGL.h
+@@ -13,7 +13,7 @@
+ #include "threads/CriticalSection.h"
+
+ #include <EGL/eglext.h>
+-#include <EGL/eglextchromium.h>
++#include <EGL/eglext_angle.h>
+ #include <X11/Xutil.h>
+
+ class CGLContextEGL : public CGLContext
+
diff --git a/kodi-generate-tarball-xz.sh b/kodi-generate-tarball-xz.sh
index f30f4f3..13abcbb 100755
--- a/kodi-generate-tarball-xz.sh
+++ b/kodi-generate-tarball-xz.sh
@@ -1,7 +1,7 @@
#!/bin/sh
MAJORVERSION=19
-MINORVERSION=4
+MINORVERSION=5
#GITCOMMIT=b6daed5dc4f8ab6d0b50cc8bcb80bfb9e6a3e583
#GITSHORT=b6daed5
CODENAME=Matrix
diff --git a/kodi.spec b/kodi.spec
index 0f55163..b3de42c 100644
--- a/kodi.spec
+++ b/kodi.spec
@@ -1,5 +1,3 @@
-# Use old cmake macro
-%global __cmake_in_source_build 1
#global PRERELEASE RC1
%global DIRVERSION %{version}
#global GITCOMMIT db40b2a
@@ -27,11 +25,7 @@
%if 0%{?fedora}
# (libbluray in EPEL 6 is too old.)
%global _with_libbluray 1
-%if 0%{?fedora} < 31
-%global _with_cwiid 1
-%else
%global _with_cwiid 0
-%endif
%global _with_libssh 1
%global _with_libcec 1
%global _with_external_ffmpeg 1
@@ -44,15 +38,15 @@
%endif
Name: kodi
-Version: 19.4
-Release: 4%{?dist}
+Version: 19.5
+Release: 1%{?dist}
Summary: Media center
License: GPLv2+ and GPLv3+ and LGPLv2+ and BSD and MIT
# Main binary and all supporting files are GPLv2+/GPLv3+
# Some supporting libraries use the LGPL / BSD / MIT license
Group: Applications/Multimedia
-URL: http://www.kodi.tv/
+URL: https://www.kodi.tv/
Source0: %{name}-%{DIRVERSION}-patched.tar.xz
# kodi contains code that we cannot ship, as well as redundant private
# copies of upstream libraries that we already distribute. Therefore
@@ -94,10 +88,11 @@ Patch5: kodi-19-ffmpeg-4-4.patch
# FFmpeg 4.4 fix for AC3 transcoding (RFBZ#6000)
Patch6: kodi-19-ffmpeg-4-4-ac3.patch
-# https://github.com/xbmc/xbmc/pull/21674
-Patch7: kodi-19-fmt-9.patch
+# Fix build with mesa-22.3
+# https://gitweb.gentoo.org/repo/gentoo.git/plain/media-tv/kodi/files/kodi-...
+Patch7: kodi-19.4-fix-mesa-22.3.0-build.patch
-%ifarch x86_64 i686
+%ifarch x86_64
%global _with_crystalhd 1
%endif
@@ -111,7 +106,7 @@ BuildRequires: avahi-devel
BuildRequires: bluez-libs-devel
BuildRequires: boost-devel
BuildRequires: bzip2-devel
-BuildRequires: cmake3
+BuildRequires: cmake
BuildRequires: crossguid-devel
%if 0%{?_with_cwiid}
BuildRequires: cwiid-devel
@@ -124,12 +119,8 @@ BuildRequires: expat-devel
BuildRequires: faad2-devel
BuildRequires: firewalld-filesystem
%if 0%{?_with_external_ffmpeg}
-%if 0%{?fedora} && 0%{?fedora} > 35
BuildRequires: compat-ffmpeg4-devel
%else
-BuildRequires: ffmpeg-devel
-%endif
-%else
BuildRequires: trousers-devel
%endif
BuildRequires: flac-devel
@@ -142,11 +133,7 @@ BuildRequires: fontpackages-devel
BuildRequires: freetype-devel
BuildRequires: fribidi-devel
BuildRequires: fstrcmp-devel
-%if 0%{?el6}
-BuildRequires: gettext-devel
-%else
BuildRequires: gettext-autopoint
-%endif
BuildRequires: gcc
BuildRequires: gcc-c++
BuildRequires: giflib-devel
@@ -169,11 +156,7 @@ BuildRequires: libbluray-devel
BuildRequires: libcap-devel
BuildRequires: libcdio-devel
%if 0%{?_with_libcec}
-%if 0%{?fedora} > 24
BuildRequires: libcec-devel >= 4.0.0
-%else
-BuildRequires: libcec-devel < 4.0.0
-%endif
%endif
%if 0%{?_with_crystalhd}
BuildRequires: libcrystalhd-devel
@@ -184,11 +167,7 @@ BuildRequires: libdca-devel
BuildRequires: libdrm-devel
BuildRequires: libidn2-devel
BuildRequires: libinput-devel
-%if 0%{?el6}
-BuildRequires: libjpeg-devel
-%else
BuildRequires: libjpeg-turbo-devel
-%endif
BuildRequires: libmad-devel
BuildRequires: libmicrohttpd-devel
BuildRequires: libmms-devel
@@ -258,11 +237,7 @@ Requires: dejavu-sans-fonts
Requires: libbluray%{?_isa}
%endif
%if 0%{?_with_libcec}
-%if 0%{?fedora} > 24
Requires: libcec%{?_isa} >= 4.0.0
-%else
-Requires: libcec%{?_isa} < 4.0.0
-%endif
%endif
%if 0%{?_with_crystalhd}
Requires: libcrystalhd%{?_isa}
@@ -343,7 +318,9 @@ This package contains FirewallD files for Kodi.
%patch4 -p1 -b.brp-mangle-shebangs
%patch5 -p1 -b.ffmpeg-4-4
%patch6 -p1 -b.ffmpeg-4-4-ac3
-%patch7 -p1 -b.fmt-9
+%if 0%{?fedora} && 0%{?fedora} >= 37
+%patch7 -p1 -b.mesa-22.3.0-build
+%endif
# Fix up Python shebangs
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" \
@@ -356,10 +333,8 @@ pathfix.py -pni "%{__python3} %{py3_shbang_opts}" \
tools/EventClients/lib/python/xbmcclient.py
%build
-%if 0%{?fedora} && 0%{?fedora} > 35
export PKG_CONFIG_PATH="%{_libdir}/compat-ffmpeg4/pkgconfig"
-%endif
-%cmake3 \
+%cmake \
%if %{with dvdcss}
-DLIBDVDCSS_URL=%{SOURCE4} \
%else
@@ -381,13 +356,13 @@ export PKG_CONFIG_PATH="%{_libdir}/compat-ffmpeg4/pkgconfig"
-DLIBDVDREAD_URL=%{SOURCE3} \
-DPYTHON_EXECUTABLE=%{__python3} \
-DCORE_PLATFORM_NAME="%{kodi_backends}" \
- -DAPP_RENDER_SYSTEM=gl \
- .
-%ninja_build
+ -DAPP_RENDER_SYSTEM=gl
+
+%cmake_build
%install
-%ninja_install
+%cmake_install
# remove the doc files from unversioned /usr/share/doc/xbmc, they should be in versioned docdir
rm -r $RPM_BUILD_ROOT/%{_datadir}/doc/
@@ -474,6 +449,9 @@ rm -f ${RPM_BUILD_ROOT}%{_mandir}/man1/kodi-wiiremote.1
%changelog
+* Sat Dec 24 2022 Leigh Scott <leigh123linux(a)gmail.com> - 19.5-1
+- Kodi 19.5 Final
+
* Sun Aug 07 2022 Leigh Scott <leigh123linux(a)gmail.com> - 19.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild and ffmpeg
5.1
diff --git a/sources b/sources
index 9f09d7d..36a41b7 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
-SHA512 (kodi-19.4-patched.tar.xz) = 7e97dffdf363696c6f0a327a77e8a758d66ce09ee38c976157a393a14a4c1a96add76b8a5dcf56c16487b420e6c3b5fad5b1f78811052d79ce510cecfda6127a
+SHA512 (kodi-19.5-patched.tar.xz) = 8529a81e61ad00394c142b51ca664c6c547e54c0c47497a1be661c20eda6d4b7025d0036e3d0ad4b0654ed16a9248f455dc9e1c94f9d5e174f2bd9f9cf271b40
SHA512 (kodi-libdvdnav-6.0.0-Leia-Alpha-3.tar.gz) = 11c93eaacd156f8fd7dec7c43d366438b201f31ad55b2870463a9e286912b6ada08882319a021fb7992190f87b909a49f2b83e0321cc17aedc29f7fe5898fa72
SHA512 (kodi-libdvdread-6.0.0-Leia-Alpha-3.tar.gz) = b3419ba0a1a2dd70f1bb6236afdfe1c6e88c9ad4264198b289e3bba9375e077cecf7f89848c7b09debaa445327f3507101f3d157e692f7a7163b2bb52643e1e7
1 year, 11 months
[vdr-markad] Update to 3.0.29
by Martin Gansser
commit b22d98a7cbdd0f19b63336cb70898583dd1676b5
Author: Martin Gansser <mgansser(a)online.de>
Date: Sat Dec 24 11:32:59 2022 +0100
Update to 3.0.29
.gitignore | 1 +
sources | 2 +-
vdr-markad.spec | 9 ++++++---
3 files changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 3c1f575..f333118 100644
--- a/.gitignore
+++ b/.gitignore
@@ -54,3 +54,4 @@ vdr-plugin-markad-74e2a8c5382fa8bfacd12274899112724a1e0d51.tar.bz2
/vdr-markad-3.0.26.tar.gz
/vdr-markad-3.0.27.tar.gz
/vdr-markad-3.0.28.tar.gz
+/vdr-markad-3.0.29.tar.gz
diff --git a/sources b/sources
index 052b30a..5deb925 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (vdr-markad-3.0.28.tar.gz) = 3712abfef23633f5af62b4a0f0247ddbc4f5107b4b938c3928c86d486d599db43cac8e7f81ac62ef1147b3e6892950f73665835bbcb12f5c46b801062c8b339e
+SHA512 (vdr-markad-3.0.29.tar.gz) = 0d57434562edee876b1e9e17ee3273ae31d64ef7dba7e923e0e930df80844a5fcc102985edb73d91063d0c0ff0baa0b013fa8ca41730ed000a994054695113c5
diff --git a/vdr-markad.spec b/vdr-markad.spec
index 2b4eefc..7c3baf3 100644
--- a/vdr-markad.spec
+++ b/vdr-markad.spec
@@ -5,12 +5,12 @@
%endif
Name: vdr-markad
-Version: 3.0.28
-Release: 2%{?dist}
+Version: 3.0.29
+Release: 1%{?dist}
Summary: Advanced commercial detection for VDR
License: GPLv2+
URL: https://github.com/kfb77/vdr-plugin-markad
-Source0: https://github.com/kfb77/vdr-plugin-markad/archive/v%{version}.tar.gz#/%{...
+Source0: https://github.com/kfb77/vdr-plugin-markad/archive/refs/tags/V%{version}....
Source1: %{name}.conf
BuildRequires: make
BuildRequires: gcc-c++
@@ -71,6 +71,9 @@ fi
%doc html
%changelog
+* Sat Dec 24 2022 Martin Gansser <martinkg(a)fedoraproject.org> - 3.0.29-1
+- Update to 3.0.29
+
* Sun Dec 18 2022 Martin Gansser <martinkg(a)fedoraproject.org> - 3.0.28-2
- Rebuilt for new VDR API version
1 year, 11 months
[vlc] Disable placebo on f38
by Nicolas Chauvet
commit 3eba6e6a71878536123f397d0b02f09e8a2d4263
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Fri Dec 23 21:53:38 2022 +0100
Disable placebo on f38
vlc.spec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/vlc.spec b/vlc.spec
index f2c0219..844190a 100644
--- a/vlc.spec
+++ b/vlc.spec
@@ -150,7 +150,7 @@ BuildRequires: libtiff-devel
BuildRequires: pkgconfig(libidn)
BuildRequires: pkgconfig(libjpeg)
# Not Yet in EL8
-%if 0%{?fedora}
+%if 0%{?fedora} && 0%{?fedora} < 38
BuildRequires: pkgconfig(libplacebo)
%endif
BuildRequires: pkgconfig(libudev)
1 year, 11 months
[ffmpeg] Revert "bootstrap"
by Nicolas Chauvet
commit e743481e5abbf3cc1c509142d0bf28918659b4bb
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Fri Dec 23 21:16:57 2022 +0100
Revert "bootstrap"
This reverts commit 0451bc06c4c6c06b9d1c86c26e8cedc1053f0476.
ffmpeg.spec | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index 1a875f3..1e55259 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -25,7 +25,7 @@
%global _without_lensfun 1
%ifnarch i686
%global _with_bs2b 1
-#global _with_chromaprint 1
+%global _with_chromaprint 1
%global _with_ilbc 1
%global _with_rav1e 1
%global _with_rubberband 1
@@ -108,7 +108,7 @@ ExclusiveArch: armv7hnl
Summary: Digital VCR and streaming server
Name: ffmpeg%{?flavor}
Version: 5.1.2
-Release: 7%{?date:.%{?date}%{?date:git}%{?rel}}%{?dist}
+Release: 8%{?date:.%{?date}%{?date:git}%{?rel}}%{?dist}
License: %{ffmpeg_license}
URL: http://ffmpeg.org/
%if 0%{?date}
@@ -515,8 +515,8 @@ strip %{buildroot}%{_libdir}/%{name}/libavcodec.so.*
%changelog
-* Fri Dec 23 2022 Nicolas Chauvet <kwizart(a)gmail.com> - 5.1.2-7
-- rebuilt
+* Fri Dec 23 2022 Nicolas Chauvet <kwizart(a)gmail.com> - 5.1.2-8
+- rebuild
* Mon Nov 21 2022 Nicolas Chauvet <kwizart(a)gmail.com> - 5.1.2-6
- Enable libjxl
1 year, 11 months
[vlc] Update to current snapshot
by Nicolas Chauvet
commit 4b4eace026319a3cb89a3d2a5e4ce3b2665ba572
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Fri Dec 23 18:33:10 2022 +0100
Update to current snapshot
sources | 2 +-
vlc.spec | 7 +++++--
2 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/sources b/sources
index 111f80b..1a95114 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (vlc-e9eceae.tar.gz) = 164e9e96954415ed25b5b0256e50f588a6853223a859805609ba7a4ce2ab0f1cc0966926182e7fe74a1a6d7b63deacbe3aaf67316b41c33b024999fb45b5902e
+SHA512 (vlc-6183d1e.tar.gz) = 50ead4f163337885c3bfb48a74869bb9d4ec6de9ebbeb97234ca6719c962422070ab88942e29f84cfc162eaad562e0b95aa735ed0ae9110bdbbd19ba8d1b2121
diff --git a/vlc.spec b/vlc.spec
index aca17a1..f2c0219 100644
--- a/vlc.spec
+++ b/vlc.spec
@@ -1,4 +1,4 @@
-%global commit0 e9eceaed4d838dbd84638bfb2e4bdd08294163b1
+%global commit0 6183d1e1530e5fee926a4fbbae8fe8628a2bcd57
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
#global vlc_rc -rc2
%global vlc_setup vlc-%{?commit0}
@@ -59,7 +59,7 @@ Summary: The cross-platform open-source multimedia framework, player and server
Epoch: 1
Name: vlc
Version: 3.0.18
-Release: 2%{?dist}
+Release: 3%{?dist}
License: GPLv2+
URL: https://www.videolan.org
Source0: https://code.videolan.org/videolan/vlc/-/archive/%{commit0}/vlc-%{shortco...
@@ -601,6 +601,9 @@ fi || :
%changelog
+* Fri Dec 23 2022 Nicolas Chauvet <kwizart(a)gmail.com> - 1:3.0.18-3
+- Update to current snapshot
+
* Sun Nov 06 2022 Leigh Scott <leigh123linux(a)gmail.com> - 1:3.0.18-2
- Rebuild for live555
1 year, 11 months