* [Buildroot] [PATCH v2 01/20] package/aubio: bump version
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-05-09 16:47 ` Thomas Petazzoni via buildroot
2024-04-07 11:44 ` [Buildroot] [PATCH v2 02/20] package/freeswitch: fix build with ffmpeg 6.0 Bernd Kuhls
` (21 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
The latest release from aubio dates back to 2019 while upstream is
active: https://github.com/aubio/aubio/issues/381
Current git HEAD includes support for ffmpeg 6.x:
https://github.com/aubio/aubio/commits/master/src/io/source_avcodec.c
and also removed the dependency to libavresample which was dropped in
ffmpeg 6.0:
https://github.com/aubio/aubio/commit/245deeadd81afc4ec5635b65d71646490c5c19fd
so we can just depend on the ffmpeg package without suboptions, quoting
configure log:
Checking for 'libavcodec' : yes
Checking for 'libavformat' : yes
Checking for 'libavutil' : yes
Checking for 'libswresample' : yes
Checking for all libav libraries : yes
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/aubio/aubio.hash | 5 ++---
package/aubio/aubio.mk | 7 +++----
2 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/package/aubio/aubio.hash b/package/aubio/aubio.hash
index 6195788327..dff02ffa9f 100644
--- a/package/aubio/aubio.hash
+++ b/package/aubio/aubio.hash
@@ -1,5 +1,4 @@
-# From https://aubio.org/pub/aubio-0.4.9.tar.bz2.sha256
-sha256 d48282ae4dab83b3dc94c16cf011bcb63835c1c02b515490e1883049c3d1f3da aubio-0.4.9.tar.bz2
-
+# Locally computed
+sha256 b0e20427750fbfbf017f2b54e41dc0d61ab61335b705bc056ca92a928b2bdd30 aubio-152d6819b360c2e7b379ee3f373d444ab3df0895.tar.gz
# Hash for license file:
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
diff --git a/package/aubio/aubio.mk b/package/aubio/aubio.mk
index bfc627fa91..07634e41c6 100644
--- a/package/aubio/aubio.mk
+++ b/package/aubio/aubio.mk
@@ -4,9 +4,8 @@
#
################################################################################
-AUBIO_VERSION = 0.4.9
-AUBIO_SITE = https://aubio.org/pub
-AUBIO_SOURCE = aubio-$(AUBIO_VERSION).tar.bz2
+AUBIO_VERSION = 152d6819b360c2e7b379ee3f373d444ab3df0895
+AUBIO_SITE = $(call github,aubio,aubio,$(AUBIO_VERSION))
AUBIO_LICENSE = GPL-3.0+
AUBIO_LICENSE_FILES = COPYING
AUBIO_CPE_ID_VENDOR = aubio
@@ -59,7 +58,7 @@ else
AUBIO_CONF_OPTS += --disable-fftw3
endif
-ifeq ($(BR2_PACKAGE_FFMPEG_AVRESAMPLE),y)
+ifeq ($(BR2_PACKAGE_FFMPEG),y)
AUBIO_DEPENDENCIES += ffmpeg
AUBIO_CONF_OPTS += --enable-avcodec
else
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* Re: [Buildroot] [PATCH v2 01/20] package/aubio: bump version
2024-04-07 11:44 ` [Buildroot] [PATCH v2 01/20] package/aubio: bump version Bernd Kuhls
@ 2024-05-09 16:47 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 32+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-05-09 16:47 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Mahyar Koshkouei, Romain Naour, Samuel Martin, Woodrow Douglass,
Julien Corjon, buildroot, Giulio Benetti, Fabrice Fontaine
On Sun, 7 Apr 2024 13:44:26 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:
> The latest release from aubio dates back to 2019 while upstream is
> active: https://github.com/aubio/aubio/issues/381
>
> Current git HEAD includes support for ffmpeg 6.x:
> https://github.com/aubio/aubio/commits/master/src/io/source_avcodec.c
>
> and also removed the dependency to libavresample which was dropped in
> ffmpeg 6.0:
> https://github.com/aubio/aubio/commit/245deeadd81afc4ec5635b65d71646490c5c19fd
>
> so we can just depend on the ffmpeg package without suboptions, quoting
> configure log:
>
> Checking for 'libavcodec' : yes
> Checking for 'libavformat' : yes
> Checking for 'libavutil' : yes
> Checking for 'libswresample' : yes
> Checking for all libav libraries : yes
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> package/aubio/aubio.hash | 5 ++---
> package/aubio/aubio.mk | 7 +++----
> 2 files changed, 5 insertions(+), 7 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH v2 02/20] package/freeswitch: fix build with ffmpeg 6.0
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 01/20] package/aubio: bump version Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-05-09 16:48 ` Thomas Petazzoni via buildroot
2024-04-07 11:44 ` [Buildroot] [PATCH v2 03/20] package/omxplayer: remove package Bernd Kuhls
` (20 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
...002-mod_av-fix-build-with-ffmpeg-6.0.patch | 48 +++++++++++++++++++
1 file changed, 48 insertions(+)
create mode 100644 package/freeswitch/0002-mod_av-fix-build-with-ffmpeg-6.0.patch
diff --git a/package/freeswitch/0002-mod_av-fix-build-with-ffmpeg-6.0.patch b/package/freeswitch/0002-mod_av-fix-build-with-ffmpeg-6.0.patch
new file mode 100644
index 0000000000..bd38d76d85
--- /dev/null
+++ b/package/freeswitch/0002-mod_av-fix-build-with-ffmpeg-6.0.patch
@@ -0,0 +1,48 @@
+From 2e75bb8b2c7f70c5d16c9e3d14b1427f4eb80c9c Mon Sep 17 00:00:00 2001
+From: Korynkai <matt@qmxtech.com>
+Date: Thu, 17 Aug 2023 21:10:31 +0200
+Subject: [PATCH] mod_av: fix build with ffmpeg 6.0
+
+Upstream: https://github.com/signalwire/freeswitch/issues/2202
+
+Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
+---
+ src/mod/applications/mod_av/avformat.c | 2 ++
+ src/mod/applications/mod_av/mod_av.h | 1 +
+ 2 files changed, 3 insertions(+)
+
+diff --git a/src/mod/applications/mod_av/avformat.c b/src/mod/applications/mod_av/avformat.c
+index 69475c169f..0a1662aed6 100644
+--- a/src/mod/applications/mod_av/avformat.c
++++ b/src/mod/applications/mod_av/avformat.c
+@@ -455,6 +455,7 @@ static int mod_avformat_alloc_output_context2(AVFormatContext **avctx, const cha
+ }
+
+ s->oformat = oformat;
++#if (LIBAVFORMAT_VERSION_MAJOR < LIBAVFORMAT_N)
+ if (s->oformat->priv_data_size > 0) {
+ s->priv_data = av_mallocz(s->oformat->priv_data_size);
+ if (!s->priv_data) {
+@@ -468,6 +469,7 @@ static int mod_avformat_alloc_output_context2(AVFormatContext **avctx, const cha
+ } else {
+ s->priv_data = NULL;
+ }
++#endif
+
+ if (filename) {
+ #if (LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58,7,100))
+diff --git a/src/mod/applications/mod_av/mod_av.h b/src/mod/applications/mod_av/mod_av.h
+index a89e6cb8f7..ef9bd48d73 100644
+--- a/src/mod/applications/mod_av/mod_av.h
++++ b/src/mod/applications/mod_av/mod_av.h
+@@ -42,6 +42,7 @@
+
+ #define LIBAVCODEC_V 59
+ #define LIBAVFORMAT_V 59
++#define LIBAVFORMAT_N 60
+ #define LIBAVUTIL_V 57
+
+ struct mod_av_globals {
+--
+2.39.2
+
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* Re: [Buildroot] [PATCH v2 02/20] package/freeswitch: fix build with ffmpeg 6.0
2024-04-07 11:44 ` [Buildroot] [PATCH v2 02/20] package/freeswitch: fix build with ffmpeg 6.0 Bernd Kuhls
@ 2024-05-09 16:48 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 32+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-05-09 16:48 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Mahyar Koshkouei, Romain Naour, Samuel Martin, Woodrow Douglass,
Julien Corjon, buildroot, Giulio Benetti, Fabrice Fontaine
On Sun, 7 Apr 2024 13:44:27 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> ...002-mod_av-fix-build-with-ffmpeg-6.0.patch | 48 +++++++++++++++++++
> 1 file changed, 48 insertions(+)
> create mode 100644 package/freeswitch/0002-mod_av-fix-build-with-ffmpeg-6.0.patch
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH v2 03/20] package/omxplayer: remove package
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 01/20] package/aubio: bump version Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 02/20] package/freeswitch: fix build with ffmpeg 6.0 Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-05-09 16:49 ` Thomas Petazzoni via buildroot
2024-04-07 11:44 ` [Buildroot] [PATCH v2 04/20] package/ffmpeg: bump version to 6.1.1 Bernd Kuhls
` (19 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Quoting https://github.com/popcornmix/omxplayer/blob/master/README.md
"Note: omxplayer has been deprecated since 2020; resources are directed
at improving vlc."
This package is incompatible with ffmpeg 6.x:
https://bugs.gentoo.org/908959#c2
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
.checkpackageignore | 1 -
Config.in.legacy | 6 +++
DEVELOPERS | 1 -
package/Config.in | 1 -
...file-to-be-compatible-with-buildroot.patch | 39 -------------------
package/omxplayer/Config.in | 36 -----------------
package/omxplayer/omxplayer.hash | 6 ---
package/omxplayer/omxplayer.mk | 39 -------------------
8 files changed, 6 insertions(+), 123 deletions(-)
delete mode 100644 package/omxplayer/0001-Update-Makefile-to-be-compatible-with-buildroot.patch
delete mode 100644 package/omxplayer/Config.in
delete mode 100644 package/omxplayer/omxplayer.hash
delete mode 100644 package/omxplayer/omxplayer.mk
diff --git a/.checkpackageignore b/.checkpackageignore
index 1b336ce7a3..43665df7e6 100644
--- a/.checkpackageignore
+++ b/.checkpackageignore
@@ -919,7 +919,6 @@ package/olsr/0003-pud-adapt-to-API-changes-in-gpsd-3-20.patch lib_patch.Upstream
package/olsr/0005-lib-pud-src-gpsdclient.c-drop-handling-of-gpsdata-fi.patch lib_patch.Upstream
package/olsr/0006-build-patch-for-gpsd-3-25.patch lib_patch.Upstream
package/olsr/S50olsr Shellcheck lib_sysv.Indent lib_sysv.Variables
-package/omxplayer/0001-Update-Makefile-to-be-compatible-with-buildroot.patch lib_patch.Upstream
package/open-plc-utils/0001-Remove-OWNER-and-GROUPS-parameters-to-install.patch lib_patch.Upstream
package/open2300/0001-fix-makefile.patch lib_patch.Upstream
package/openjdk/17.0.9+9/0001-Add-ARCv2-ISA-processors-support-to-Zero.patch lib_patch.Upstream
diff --git a/Config.in.legacy b/Config.in.legacy
index d00196e08b..87b7954cb8 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -146,6 +146,12 @@ endif
comment "Legacy options removed in 2024.05"
+config BR2_PACKAGE_OMXPLAYER
+ bool "omxplayer removed"
+ select BR2_LEGACY
+ help
+ Package was deprecated in 2020 and is broken with ffmpeg 6.x
+
config BR2_PACKAGE_FLUTTER_GALLERY
bool "flutter-gallery removed"
select BR2_LEGACY
diff --git a/DEVELOPERS b/DEVELOPERS
index d78661cd60..ca73006c78 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -3231,7 +3231,6 @@ F: package/mesa3d-headers/
F: package/nbd/
F: package/nut/
F: package/nvidia-driver/
-F: package/omxplayer/
F: package/python-pyparsing/
F: package/pkg-download.mk
F: package/pkg-waf.mk
diff --git a/package/Config.in b/package/Config.in
index 0d31faf354..4fa0e541fe 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -44,7 +44,6 @@ menu "Audio and video applications"
source "package/multicat/Config.in"
source "package/musepack/Config.in"
source "package/ncmpc/Config.in"
- source "package/omxplayer/Config.in"
source "package/on2-8170-libs/Config.in"
source "package/opus-tools/Config.in"
source "package/pipewire/Config.in"
diff --git a/package/omxplayer/0001-Update-Makefile-to-be-compatible-with-buildroot.patch b/package/omxplayer/0001-Update-Makefile-to-be-compatible-with-buildroot.patch
deleted file mode 100644
index 8f8bfad73e..0000000000
--- a/package/omxplayer/0001-Update-Makefile-to-be-compatible-with-buildroot.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 40bf9c0960becaf0e592cac901466af93f24e52b Mon Sep 17 00:00:00 2001
-From: Julius Kriukas <julius@kriukas.lt>
-Date: Fri, 1 Dec 2017 18:29:24 +0200
-Subject: [PATCH] Update Makefile to be compatible with buildroot
-
-- Append to existing CFLAGS instead of overwriting.
-- Remove cross-compilation specific options from CFLAGS, they will be
- set by buildroot.
-- Remove local ffmpeg_compiled include, buildroot will build ffmpeg
- separately.
-- Remove hard-coded dbus, freetype, rpi-firmware include paths, they
- will be added by buildroot.
-
-Signed-off-by: Julius Kriukas <julius@kriukas.lt>
----
- Makefile | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 5f4e414..53fa1bc 100644
---- a/Makefile
-+++ b/Makefile
-@@ -1,10 +1,10 @@
--CFLAGS=-pipe -mfloat-abi=hard -mcpu=arm1176jzf-s -fomit-frame-pointer -mabi=aapcs-linux -mtune=arm1176jzf-s -mfpu=vfp -Wno-psabi -mno-apcs-stack-check -g -mstructure-size-boundary=32 -mno-sched-prolog
-+CFLAGS+=-fomit-frame-pointer -Wno-psabi -mno-apcs-stack-check -g -mstructure-size-boundary=32 -mno-sched-prolog
- CFLAGS+=-std=c++0x -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -DTARGET_POSIX -DTARGET_LINUX -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CMAKE_CONFIG -D__VIDEOCORE4__ -U_FORTIFY_SOURCE -Wall -DHAVE_OMXLIB -DUSE_EXTERNAL_FFMPEG -DHAVE_LIBAVCODEC_AVCODEC_H -DHAVE_LIBAVUTIL_OPT_H -DHAVE_LIBAVUTIL_MEM_H -DHAVE_LIBAVUTIL_AVUTIL_H -DHAVE_LIBAVFORMAT_AVFORMAT_H -DHAVE_LIBAVFILTER_AVFILTER_H -DHAVE_LIBSWRESAMPLE_SWRESAMPLE_H -DOMX -DOMX_SKIP64BIT -ftree-vectorize -DUSE_EXTERNAL_OMX -DTARGET_RASPBERRY_PI -DUSE_EXTERNAL_LIBBCM_HOST
-
- LDFLAGS=-L$(SDKSTAGE)/opt/vc/lib/
--LDFLAGS+=-L./ -Lffmpeg_compiled/usr/local/lib/ -lc -lbrcmGLESv2 -lbrcmEGL -lbcm_host -lopenmaxil -lfreetype -lz -lasound
-+LDFLAGS+=-L./ -lc -lbrcmGLESv2 -lbrcmEGL -lbcm_host -lopenmaxil -lfreetype -lz -lasound
-
--INCLUDES+=-I./ -Ilinux -Iffmpeg_compiled/usr/local/include/ -I /usr/include/dbus-1.0 -I /usr/lib/arm-linux-gnueabihf/dbus-1.0/include -I/usr/include/freetype2 -isystem$(SDKSTAGE)/opt/vc/include -isystem$(SDKSTAGE)/opt/vc/include/interface/vcos/pthreads
-+INCLUDES+=-I./ -Ilinux
-
- DIST ?= omxplayer-dist
- STRIP ?= strip
---
-2.11.0
-
diff --git a/package/omxplayer/Config.in b/package/omxplayer/Config.in
deleted file mode 100644
index d2e4b5ace0..0000000000
--- a/package/omxplayer/Config.in
+++ /dev/null
@@ -1,36 +0,0 @@
-config BR2_PACKAGE_OMXPLAYER
- bool "omxplayer"
- depends on BR2_arm
- depends on BR2_USE_MMU # dbus
- depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS # ffmpeg
- depends on BR2_INSTALL_LIBSTDCPP # boost
- depends on BR2_TOOLCHAIN_HAS_THREADS # alsa-lib, boost, libusb
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
- depends on BR2_USE_WCHAR # boost
- depends on BR2_PACKAGE_RPI_USERLAND
- select BR2_PACKAGE_ALSA_LIB
- select BR2_PACKAGE_BOOST
- select BR2_PACKAGE_DBUS
- select BR2_PACKAGE_FFMPEG
- select BR2_PACKAGE_FFMPEG_AVRESAMPLE
- select BR2_PACKAGE_FFMPEG_SWSCALE
- select BR2_PACKAGE_FREETYPE
- select BR2_PACKAGE_LIBIDN
- select BR2_PACKAGE_LIBUSB
- select BR2_PACKAGE_PCRE
- select BR2_PACKAGE_ZLIB
- help
- OMXPlayer is a commandline OMX player for the Raspberry
- Pi. It was developed as a testbed for the XBMC Raspberry PI
- implementation and is quite handy to use standalone.
-
- https://github.com/popcornmix/omxplayer
-
-comment "omxplayer needs rpi-userland and a toolchain w/ C++, threads, wchar, dynamic library, gcc >= 4.9"
- depends on BR2_arm
- depends on BR2_USE_MMU
- depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
- depends on !BR2_PACKAGE_RPI_USERLAND
- depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
- || !BR2_USE_WCHAR || BR2_STATIC_LIBS \
- || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
diff --git a/package/omxplayer/omxplayer.hash b/package/omxplayer/omxplayer.hash
deleted file mode 100644
index 5826c68d70..0000000000
--- a/package/omxplayer/omxplayer.hash
+++ /dev/null
@@ -1,6 +0,0 @@
-# Locally computed:
-sha1 a9106203f822fe88eb35980479f46a555086d4a7 omxplayer-f06235cc9690a6d58187514452df8cf8fcdaacec.tar.gz
-sha256 af2d9450f8947842ea8c401fe9f71eec444013ebbdee29f2ac828c9c493c1329 omxplayer-f06235cc9690a6d58187514452df8cf8fcdaacec.tar.gz
-
-# Hash for license file:
-sha256 60e78ba9f921bb06bcf957575245414b1577c9688a63ddd73bc65f9d48fe31c9 COPYING
diff --git a/package/omxplayer/omxplayer.mk b/package/omxplayer/omxplayer.mk
deleted file mode 100644
index 072274cdfc..0000000000
--- a/package/omxplayer/omxplayer.mk
+++ /dev/null
@@ -1,39 +0,0 @@
-################################################################################
-#
-# omxplayer
-#
-################################################################################
-
-OMXPLAYER_VERSION = f06235cc9690a6d58187514452df8cf8fcdaacec
-OMXPLAYER_SITE = $(call github,popcornmix,omxplayer,$(OMXPLAYER_VERSION))
-OMXPLAYER_LICENSE = GPL-2.0+
-OMXPLAYER_LICENSE_FILES = COPYING
-
-OMXPLAYER_DEPENDENCIES = \
- host-pkgconf alsa-lib boost dbus ffmpeg freetype libidn libusb pcre \
- rpi-userland zlib
-
-OMXPLAYER_EXTRA_CFLAGS = \
- -DTARGET_LINUX -DTARGET_POSIX \
- `$(PKG_CONFIG_HOST_BINARY) --cflags bcm_host` \
- `$(PKG_CONFIG_HOST_BINARY) --cflags freetype2` \
- `$(PKG_CONFIG_HOST_BINARY) --cflags dbus-1`
-
-# OMXplayer has support for building in Buildroot, but that
-# procedure is, well, tainted. Fix this by forcing the real,
-# correct values.
-OMXPLAYER_MAKE_ENV = \
- SDKSTAGE=$(STAGING_DIR) \
- $(TARGET_CONFIGURE_OPTS) \
- STRIP=true \
- CFLAGS="$(TARGET_CFLAGS) $(OMXPLAYER_EXTRA_CFLAGS)"
-
-define OMXPLAYER_BUILD_CMDS
- $(OMXPLAYER_MAKE_ENV) $(MAKE) -C $(@D) omxplayer.bin
-endef
-
-define OMXPLAYER_INSTALL_TARGET_CMDS
- $(INSTALL) -m 0755 -D $(@D)/omxplayer.bin $(TARGET_DIR)/usr/bin/omxplayer
-endef
-
-$(eval $(generic-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* Re: [Buildroot] [PATCH v2 03/20] package/omxplayer: remove package
2024-04-07 11:44 ` [Buildroot] [PATCH v2 03/20] package/omxplayer: remove package Bernd Kuhls
@ 2024-05-09 16:49 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 32+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-05-09 16:49 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Mahyar Koshkouei, Romain Naour, Samuel Martin, Woodrow Douglass,
Julien Corjon, buildroot, Giulio Benetti, Fabrice Fontaine
On Sun, 7 Apr 2024 13:44:28 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:
> Quoting https://github.com/popcornmix/omxplayer/blob/master/README.md
> "Note: omxplayer has been deprecated since 2020; resources are directed
> at improving vlc."
>
> This package is incompatible with ffmpeg 6.x:
> https://bugs.gentoo.org/908959#c2
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> .checkpackageignore | 1 -
> Config.in.legacy | 6 +++
> DEVELOPERS | 1 -
> package/Config.in | 1 -
> ...file-to-be-compatible-with-buildroot.patch | 39 -------------------
> package/omxplayer/Config.in | 36 -----------------
> package/omxplayer/omxplayer.hash | 6 ---
> package/omxplayer/omxplayer.mk | 39 -------------------
> 8 files changed, 6 insertions(+), 123 deletions(-)
> delete mode 100644 package/omxplayer/0001-Update-Makefile-to-be-compatible-with-buildroot.patch
> delete mode 100644 package/omxplayer/Config.in
> delete mode 100644 package/omxplayer/omxplayer.hash
> delete mode 100644 package/omxplayer/omxplayer.mk
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH v2 04/20] package/ffmpeg: bump version to 6.1.1
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (2 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 03/20] package/omxplayer: remove package Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-05-09 16:57 ` Thomas Petazzoni via buildroot
2024-04-07 11:44 ` [Buildroot] [PATCH v2 05/20] package/ffmpeg: add optional support for libvpl Bernd Kuhls
` (18 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Quoting Changelog:
http://git.videolan.org/?p=ffmpeg.git;a=blob;f=Changelog;h=b357f428abce2110904944c4cc066b8e297bb895;hb=3153c441e1d980ff9931ed26a0e01b4e366ac521
"- ffmpeg now requires threading to be built"
Propagate threads to reserve dependencies.
Rebased patches.
Removed patch 0005 which is included in this release.
Removed support for libavresample which was removed upstream.
No legacy handling necessary for opencv3/4 because libavresample was
an optional dependency.
Added upstream patch 0005 to fix build error with arm.
Drop configure options which were removed upstream.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
...-x86-yuv2rgb-Fix-build-without-SSSE3.patch | 4 +-
.../0003-libavutil-Fix-mips-build.patch | 6 +-
| 6 +-
...xes-assembling-with-binutils-as-2.41.patch | 84 -------------------
...0005-avcodec-mmaldec-Fix-build-error.patch | 32 +++++++
package/ffmpeg/Config.in | 9 +-
package/ffmpeg/ffmpeg.hash | 2 +-
package/ffmpeg/ffmpeg.mk | 12 +--
package/gstreamer1/gst1-libav/Config.in | 4 +
package/opencv3/Config.in | 1 -
package/opencv4/Config.in | 1 -
package/qt5/qt5webengine/Config.in | 2 +-
12 files changed, 51 insertions(+), 112 deletions(-)
delete mode 100644 package/ffmpeg/0005-Fixes-assembling-with-binutils-as-2.41.patch
create mode 100644 package/ffmpeg/0005-avcodec-mmaldec-Fix-build-error.patch
diff --git a/package/ffmpeg/0001-swscale-x86-yuv2rgb-Fix-build-without-SSSE3.patch b/package/ffmpeg/0001-swscale-x86-yuv2rgb-Fix-build-without-SSSE3.patch
index 9c1baaa651..aa56e5a9b4 100644
--- a/package/ffmpeg/0001-swscale-x86-yuv2rgb-Fix-build-without-SSSE3.patch
+++ b/package/ffmpeg/0001-swscale-x86-yuv2rgb-Fix-build-without-SSSE3.patch
@@ -22,7 +22,7 @@ diff --git a/libswscale/x86/yuv2rgb.c b/libswscale/x86/yuv2rgb.c
index c12e88cbb5..4791e5b93a 100644
--- a/libswscale/x86/yuv2rgb.c
+++ b/libswscale/x86/yuv2rgb.c
-@@ -71,6 +71,7 @@ av_cold SwsFunc ff_yuv2rgb_init_x86(SwsContext *c)
+@@ -70,6 +70,7 @@ av_cold SwsFunc ff_yuv2rgb_init_x86(SwsContext *c)
#if HAVE_X86ASM
int cpu_flags = av_get_cpu_flags();
@@ -30,7 +30,7 @@ index c12e88cbb5..4791e5b93a 100644
if (EXTERNAL_SSSE3(cpu_flags)) {
switch (c->dstFormat) {
case AV_PIX_FMT_RGB32:
-@@ -99,6 +100,7 @@ av_cold SwsFunc ff_yuv2rgb_init_x86(SwsContext *c)
+@@ -98,6 +99,7 @@ av_cold SwsFunc ff_yuv2rgb_init_x86(SwsContext *c)
return yuv420_rgb15_ssse3;
}
}
diff --git a/package/ffmpeg/0003-libavutil-Fix-mips-build.patch b/package/ffmpeg/0003-libavutil-Fix-mips-build.patch
index 8dd689f5d0..ee2d1db8bd 100644
--- a/package/ffmpeg/0003-libavutil-Fix-mips-build.patch
+++ b/package/ffmpeg/0003-libavutil-Fix-mips-build.patch
@@ -20,7 +20,7 @@ diff --git a/configure b/configure
index 6bfd98b384..773a7d516c 100755
--- a/configure
+++ b/configure
-@@ -2135,6 +2135,7 @@ HEADERS_LIST="
+@@ -2191,6 +2191,7 @@ HEADERS_LIST="
opencv2_core_core_c_h
OpenGL_gl3_h
poll_h
@@ -28,9 +28,9 @@ index 6bfd98b384..773a7d516c 100755
sys_param_h
sys_resource_h
sys_select_h
-@@ -6182,6 +6183,7 @@ check_func_headers VideoToolbox/VTCompressionSession.h VTCompressionSessionPrepa
+@@ -6361,6 +6361,7 @@ check_func_headers VideoToolbox/VTCompressionSession.h VTCompressionSessionPrepa
+ check_func_headers VideoToolbox/VTCompressionSession.h VTCompressionSessionPrepareToEncodeFrames -framework VideoToolbox
check_headers windows.h
- check_headers X11/extensions/XvMClib.h
check_headers asm/types.h
+check_headers sys/auxv.h
--git a/package/ffmpeg/0004-configure-add-extralibs-to-extralibs_xxx.patch b/package/ffmpeg/0004-configure-add-extralibs-to-extralibs_xxx.patch
index 3247ab08fe..050b34fd89 100644
--- a/package/ffmpeg/0004-configure-add-extralibs-to-extralibs_xxx.patch
+++ b/package/ffmpeg/0004-configure-add-extralibs-to-extralibs_xxx.patch
@@ -9,6 +9,8 @@ applications such as motion to retrieve ffmpeg dependencies such as
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Upstream status: not upstreamable]
+Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
+[rebased for 6.0]
---
configure | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
@@ -17,7 +19,7 @@ diff --git a/configure b/configure
index 0bb3a7cf2b..3bda99e415 100755
--- a/configure
+++ b/configure
-@@ -7715,15 +7715,15 @@ rpath=$(enabled rpath && echo "-Wl,-rpath,\${libdir}")
+@@ -7986,14 +7986,14 @@
source_path=${source_path}
LIBPREF=${LIBPREF}
LIBSUF=${LIBSUF}
@@ -26,7 +28,6 @@ index 0bb3a7cf2b..3bda99e415 100755
-extralibs_avformat="$avformat_extralibs"
-extralibs_avdevice="$avdevice_extralibs"
-extralibs_avfilter="$avfilter_extralibs"
--extralibs_avresample="$avresample_extralibs"
-extralibs_postproc="$postproc_extralibs"
-extralibs_swscale="$swscale_extralibs"
-extralibs_swresample="$swresample_extralibs"
@@ -35,7 +36,6 @@ index 0bb3a7cf2b..3bda99e415 100755
+extralibs_avformat="$avformat_extralibs $extralibs"
+extralibs_avdevice="$avdevice_extralibs $extralibs"
+extralibs_avfilter="$avfilter_extralibs $extralibs"
-+extralibs_avresample="$avresample_extralibs $extralibs"
+extralibs_postproc="$postproc_extralibs $extralibs"
+extralibs_swscale="$swscale_extralibs $extralibs"
+extralibs_swresample="$swresample_extralibs $extralibs"
diff --git a/package/ffmpeg/0005-Fixes-assembling-with-binutils-as-2.41.patch b/package/ffmpeg/0005-Fixes-assembling-with-binutils-as-2.41.patch
deleted file mode 100644
index 6c81971cbe..0000000000
--- a/package/ffmpeg/0005-Fixes-assembling-with-binutils-as-2.41.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-From effadce6c756247ea8bae32dc13bb3e6f464f0eb Mon Sep 17 00:00:00 2001
-From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= <remi@remlab.net>
-Date: Sun, 16 Jul 2023 18:18:02 +0300
-Subject: [PATCH] avcodec/x86/mathops: clip constants used with shift
- instructions within inline assembly
-
-Fixes assembling with binutils as >= 2.41
-
-Upstream: http://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=effadce6c756247ea8bae32dc13bb3e6f464f0eb
-
-Bug reports for this change in binutils:
-https://fftrac-bg.ffmpeg.org/ticket/10405
-https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108941
-https://sourceware.org/bugzilla/show_bug.cgi?id=30578
-
-Signed-off-by: James Almer <jamrial@gmail.com>
-Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
----
- libavcodec/x86/mathops.h | 26 +++++++++++++++++++++++---
- 1 file changed, 23 insertions(+), 3 deletions(-)
-
-diff --git a/libavcodec/x86/mathops.h b/libavcodec/x86/mathops.h
-index 6298f5ed19..ca7e2dffc1 100644
---- a/libavcodec/x86/mathops.h
-+++ b/libavcodec/x86/mathops.h
-@@ -35,12 +35,20 @@
- static av_always_inline av_const int MULL(int a, int b, unsigned shift)
- {
- int rt, dummy;
-+ if (__builtin_constant_p(shift))
- __asm__ (
- "imull %3 \n\t"
- "shrdl %4, %%edx, %%eax \n\t"
- :"=a"(rt), "=d"(dummy)
-- :"a"(a), "rm"(b), "ci"((uint8_t)shift)
-+ :"a"(a), "rm"(b), "i"(shift & 0x1F)
- );
-+ else
-+ __asm__ (
-+ "imull %3 \n\t"
-+ "shrdl %4, %%edx, %%eax \n\t"
-+ :"=a"(rt), "=d"(dummy)
-+ :"a"(a), "rm"(b), "c"((uint8_t)shift)
-+ );
- return rt;
- }
-
-@@ -113,19 +121,31 @@ __asm__ volatile(\
- // avoid +32 for shift optimization (gcc should do that ...)
- #define NEG_SSR32 NEG_SSR32
- static inline int32_t NEG_SSR32( int32_t a, int8_t s){
-+ if (__builtin_constant_p(s))
- __asm__ ("sarl %1, %0\n\t"
- : "+r" (a)
-- : "ic" ((uint8_t)(-s))
-+ : "i" (-s & 0x1F)
- );
-+ else
-+ __asm__ ("sarl %1, %0\n\t"
-+ : "+r" (a)
-+ : "c" ((uint8_t)(-s))
-+ );
- return a;
- }
-
- #define NEG_USR32 NEG_USR32
- static inline uint32_t NEG_USR32(uint32_t a, int8_t s){
-+ if (__builtin_constant_p(s))
- __asm__ ("shrl %1, %0\n\t"
- : "+r" (a)
-- : "ic" ((uint8_t)(-s))
-+ : "i" (-s & 0x1F)
- );
-+ else
-+ __asm__ ("shrl %1, %0\n\t"
-+ : "+r" (a)
-+ : "c" ((uint8_t)(-s))
-+ );
- return a;
- }
-
---
-2.30.2
-
diff --git a/package/ffmpeg/0005-avcodec-mmaldec-Fix-build-error.patch b/package/ffmpeg/0005-avcodec-mmaldec-Fix-build-error.patch
new file mode 100644
index 0000000000..b3b901264f
--- /dev/null
+++ b/package/ffmpeg/0005-avcodec-mmaldec-Fix-build-error.patch
@@ -0,0 +1,32 @@
+From e8a49b1424d405441fb23c2850274a84e95bd892 Mon Sep 17 00:00:00 2001
+From: Zhao Zhili <zhilizhao@tencent.com>
+Date: Tue, 21 Nov 2023 04:05:08 +0800
+Subject: [PATCH] avcodec/mmaldec: Fix build error
+
+Fix #10670.
+
+Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
+
+Upstream: http://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=e8a49b1424d405441fb23c2850274a84e95bd892
+
+Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
+---
+ libavcodec/mmaldec.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libavcodec/mmaldec.c b/libavcodec/mmaldec.c
+index 4bb3eb22ef..2dc7bbee04 100644
+--- a/libavcodec/mmaldec.c
++++ b/libavcodec/mmaldec.c
+@@ -843,7 +843,7 @@ static const AVClass ffmmal_dec_class = {
+ .flush = ffmmal_flush, \
+ .p.priv_class = &ffmmal_dec_class, \
+ .p.capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_HARDWARE, \
+- .caps_internal = FF_CODEC_CAP_NOT_INIT_THREADSAFE \
++ .caps_internal = FF_CODEC_CAP_NOT_INIT_THREADSAFE, \
+ .p.pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_MMAL, \
+ AV_PIX_FMT_YUV420P, \
+ AV_PIX_FMT_NONE}, \
+--
+2.30.2
+
diff --git a/package/ffmpeg/Config.in b/package/ffmpeg/Config.in
index 52029c2ade..599e1ddfc7 100644
--- a/package/ffmpeg/Config.in
+++ b/package/ffmpeg/Config.in
@@ -18,6 +18,7 @@ config BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
menuconfig BR2_PACKAGE_FFMPEG
bool "ffmpeg"
depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
+ depends on BR2_TOOLCHAIN_HAS_THREADS
help
FFmpeg is a complete, cross-platform solution to record,
convert and stream audio and video.
@@ -74,11 +75,6 @@ config BR2_PACKAGE_FFMPEG_XCBGRAB
help
X11 screen grabbing using libxcb.
-config BR2_PACKAGE_FFMPEG_AVRESAMPLE
- bool "Build libavresample"
- help
- Avresample is a audio conversion library for compatibility.
-
config BR2_PACKAGE_FFMPEG_POSTPROC
bool "Build libpostproc"
depends on BR2_PACKAGE_FFMPEG_GPL
@@ -186,3 +182,6 @@ config BR2_PACKAGE_FFMPEG_EXTRACONF
./configure commandline.
endif
+
+comment "ffmpeg needs a toolchain w/ threads"
+ depends on !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/ffmpeg/ffmpeg.hash b/package/ffmpeg/ffmpeg.hash
index b18218cb48..f70ff5da83 100644
--- a/package/ffmpeg/ffmpeg.hash
+++ b/package/ffmpeg/ffmpeg.hash
@@ -1,5 +1,5 @@
# Locally calculated
-sha256 e80b380d595c809060f66f96a5d849511ef4a76a26b76eacf5778b94c3570309 ffmpeg-4.4.4.tar.xz
+sha256 8684f4b00f94b85461884c3719382f1261f0d9eb3d59640a1f4ac0873616f968 ffmpeg-6.1.1.tar.xz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING.GPLv2
sha256 b634ab5640e258563c536e658cad87080553df6f34f62269a21d554844e58bfe COPYING.LGPLv2.1
sha256 cb48bf09a11f5fb576cddb0431c8f5ed0a60157a9ec942adffc13907cbe083f2 LICENSE.md
diff --git a/package/ffmpeg/ffmpeg.mk b/package/ffmpeg/ffmpeg.mk
index ce285bcc60..acd5a7d8b2 100644
--- a/package/ffmpeg/ffmpeg.mk
+++ b/package/ffmpeg/ffmpeg.mk
@@ -4,7 +4,7 @@
#
################################################################################
-FFMPEG_VERSION = 4.4.4
+FFMPEG_VERSION = 6.1.1
FFMPEG_SOURCE = ffmpeg-$(FFMPEG_VERSION).tar.xz
FFMPEG_SITE = https://ffmpeg.org/releases
FFMPEG_INSTALL_STAGING = YES
@@ -32,10 +32,6 @@ FFMPEG_CONF_OPTS = \
--disable-gray \
--enable-swscale-alpha \
--disable-small \
- --enable-dct \
- --enable-fft \
- --enable-mdct \
- --enable-rdft \
--disable-crystalhd \
--disable-dxva2 \
--enable-runtime-cpudetect \
@@ -93,12 +89,6 @@ else
FFMPEG_CONF_OPTS += --disable-libv4l2
endif
-ifeq ($(BR2_PACKAGE_FFMPEG_AVRESAMPLE),y)
-FFMPEG_CONF_OPTS += --enable-avresample
-else
-FFMPEG_CONF_OPTS += --disable-avresample
-endif
-
ifeq ($(BR2_PACKAGE_FFMPEG_FFPROBE),y)
FFMPEG_CONF_OPTS += --enable-ffprobe
else
diff --git a/package/gstreamer1/gst1-libav/Config.in b/package/gstreamer1/gst1-libav/Config.in
index e58a3532f0..51bac04d5e 100644
--- a/package/gstreamer1/gst1-libav/Config.in
+++ b/package/gstreamer1/gst1-libav/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_GST1_LIBAV
bool "gst1-libav"
depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
+ depends on BR2_TOOLCHAIN_HAS_THREADS # ffmpeg
select BR2_PACKAGE_FFMPEG
select BR2_PACKAGE_FFMPEG_SWSCALE
select BR2_PACKAGE_GST1_PLUGINS_BASE
@@ -14,3 +15,6 @@ config BR2_PACKAGE_GST1_LIBAV
selected in the ffmpeg package.
https://gstreamer.freedesktop.org/
+
+comment "gst1-libav needs a toolchain w/ threads"
+ depends on !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/opencv3/Config.in b/package/opencv3/Config.in
index be0680084b..2ce548f095 100644
--- a/package/opencv3/Config.in
+++ b/package/opencv3/Config.in
@@ -246,7 +246,6 @@ config BR2_PACKAGE_OPENCV3_WITH_FFMPEG
depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
select BR2_PACKAGE_BZIP2
select BR2_PACKAGE_FFMPEG
- select BR2_PACKAGE_FFMPEG_AVRESAMPLE
select BR2_PACKAGE_FFMPEG_SWSCALE
help
Use ffmpeg from the target system.
diff --git a/package/opencv4/Config.in b/package/opencv4/Config.in
index f1a2d02d50..f6976d8fb5 100644
--- a/package/opencv4/Config.in
+++ b/package/opencv4/Config.in
@@ -275,7 +275,6 @@ config BR2_PACKAGE_OPENCV4_WITH_FFMPEG
depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
select BR2_PACKAGE_BZIP2
select BR2_PACKAGE_FFMPEG
- select BR2_PACKAGE_FFMPEG_AVRESAMPLE
select BR2_PACKAGE_FFMPEG_SWSCALE
help
Use ffmpeg from the target system.
diff --git a/package/qt5/qt5webengine/Config.in b/package/qt5/qt5webengine/Config.in
index 99a2980a25..67c843e5f6 100644
--- a/package/qt5/qt5webengine/Config.in
+++ b/package/qt5/qt5webengine/Config.in
@@ -29,7 +29,7 @@ config BR2_PACKAGE_QT5WEBENGINE
depends on BR2_TOOLCHAIN_USES_GLIBC # execinfo.h, mallinfo
depends on BR2_HOST_GCC_AT_LEAST_4_9 # qt5base-icu
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # re2
- depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2, libvpx, qt5base-dbus
+ depends on BR2_TOOLCHAIN_HAS_THREADS # ffmpeg, libglib2, libvpx, qt5base-dbus
depends on BR2_USE_WCHAR # libglib2
depends on BR2_PACKAGE_QT5_GL_AVAILABLE # qt5declarative, qt5base-eglfs
depends on BR2_PACKAGE_HAS_LIBEGL # qt5base-eglfs
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* Re: [Buildroot] [PATCH v2 04/20] package/ffmpeg: bump version to 6.1.1
2024-04-07 11:44 ` [Buildroot] [PATCH v2 04/20] package/ffmpeg: bump version to 6.1.1 Bernd Kuhls
@ 2024-05-09 16:57 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 32+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-05-09 16:57 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Mahyar Koshkouei, Romain Naour, Samuel Martin, Woodrow Douglass,
Julien Corjon, buildroot, Giulio Benetti, Fabrice Fontaine
On Sun, 7 Apr 2024 13:44:29 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:
> Quoting Changelog:
> http://git.videolan.org/?p=ffmpeg.git;a=blob;f=Changelog;h=b357f428abce2110904944c4cc066b8e297bb895;hb=3153c441e1d980ff9931ed26a0e01b4e366ac521
> "- ffmpeg now requires threading to be built"
>
> Propagate threads to reserve dependencies.
> Rebased patches.
> Removed patch 0005 which is included in this release.
>
> Removed support for libavresample which was removed upstream.
> No legacy handling necessary for opencv3/4 because libavresample was
> an optional dependency.
>
> Added upstream patch 0005 to fix build error with arm.
>
> Drop configure options which were removed upstream.
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> ...-x86-yuv2rgb-Fix-build-without-SSSE3.patch | 4 +-
> .../0003-libavutil-Fix-mips-build.patch | 6 +-
> ...igure-add-extralibs-to-extralibs_xxx.patch | 6 +-
> ...xes-assembling-with-binutils-as-2.41.patch | 84 -------------------
> ...0005-avcodec-mmaldec-Fix-build-error.patch | 32 +++++++
> package/ffmpeg/Config.in | 9 +-
> package/ffmpeg/ffmpeg.hash | 2 +-
> package/ffmpeg/ffmpeg.mk | 12 +--
> package/gstreamer1/gst1-libav/Config.in | 4 +
> package/opencv3/Config.in | 1 -
> package/opencv4/Config.in | 1 -
> package/qt5/qt5webengine/Config.in | 2 +-
> 12 files changed, 51 insertions(+), 112 deletions(-)
> delete mode 100644 package/ffmpeg/0005-Fixes-assembling-with-binutils-as-2.41.patch
> create mode 100644 package/ffmpeg/0005-avcodec-mmaldec-Fix-build-error.patch
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH v2 05/20] package/ffmpeg: add optional support for libvpl
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (3 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 04/20] package/ffmpeg: bump version to 6.1.1 Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-05-09 16:57 ` Thomas Petazzoni via buildroot
2024-04-07 11:44 ` [Buildroot] [PATCH v2 06/20] package/bento4: bump version to 1.6.0-641-Omega Bernd Kuhls
` (17 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Added with commit
http://git.videolan.org/?p=ffmpeg.git;a=commit;h=7158f1e64d9b76afea78537a35c465447df0cff8
"It will fail to run configure script if both libmfx and libvpl are
enabled.
It is recommended to use oneVPL for new work, even for currently
available hardwares"
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/ffmpeg/ffmpeg.mk | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/package/ffmpeg/ffmpeg.mk b/package/ffmpeg/ffmpeg.mk
index acd5a7d8b2..87c482656c 100644
--- a/package/ffmpeg/ffmpeg.mk
+++ b/package/ffmpeg/ffmpeg.mk
@@ -321,11 +321,14 @@ else
FFMPEG_CONF_OPTS += --disable-libbluray
endif
-ifeq ($(BR2_PACKAGE_INTEL_MEDIASDK),y)
-FFMPEG_CONF_OPTS += --enable-libmfx
+ifeq ($(BR2_PACKAGE_LIBVPL),y)
+FFMPEG_CONF_OPTS += --enable-libvpl --disable-libmfx
+FFMPEG_DEPENDENCIES += libvpl
+else ifeq ($(BR2_PACKAGE_INTEL_MEDIASDK),y)
+FFMPEG_CONF_OPTS += --disable-libvpl --enable-libmfx
FFMPEG_DEPENDENCIES += intel-mediasdk
else
-FFMPEG_CONF_OPTS += --disable-libmfx
+FFMPEG_CONF_OPTS += --disable-libvpl --disable-libmfx
endif
ifeq ($(BR2_PACKAGE_RTMPDUMP),y)
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* Re: [Buildroot] [PATCH v2 05/20] package/ffmpeg: add optional support for libvpl
2024-04-07 11:44 ` [Buildroot] [PATCH v2 05/20] package/ffmpeg: add optional support for libvpl Bernd Kuhls
@ 2024-05-09 16:57 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 32+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-05-09 16:57 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Mahyar Koshkouei, Romain Naour, Samuel Martin, Woodrow Douglass,
Julien Corjon, buildroot, Giulio Benetti, Fabrice Fontaine
On Sun, 7 Apr 2024 13:44:30 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:
> Added with commit
> http://git.videolan.org/?p=ffmpeg.git;a=commit;h=7158f1e64d9b76afea78537a35c465447df0cff8
>
> "It will fail to run configure script if both libmfx and libvpl are
> enabled.
>
> It is recommended to use oneVPL for new work, even for currently
> available hardwares"
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> package/ffmpeg/ffmpeg.mk | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH v2 06/20] package/bento4: bump version to 1.6.0-641-Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (4 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 05/20] package/ffmpeg: add optional support for libvpl Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-05-09 17:01 ` Thomas Petazzoni via buildroot
2024-04-07 11:44 ` [Buildroot] [PATCH v2 07/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (16 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/bento4/bento4.hash | 2 +-
package/bento4/bento4.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/bento4/bento4.hash b/package/bento4/bento4.hash
index b9391aed6a..b933c74d2d 100644
--- a/package/bento4/bento4.hash
+++ b/package/bento4/bento4.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 4464cd47b597e6dedbfc231bb6eb097c45cfe5ee0051082460d9ac53e9d74dc3 bento4-1.6.0-639-7-Omega.tar.gz
+sha256 f1f8cfa4f7cb651b609e587f825607cb4b06fe5b08af876fd0154a434f9a5315 bento4-1.6.0-641-Omega.tar.gz
sha256 7daae92c8628ada28def8d096fe2fde298b72ec3e2d64a3c408afce38edb361b Documents/LICENSE.txt
diff --git a/package/bento4/bento4.mk b/package/bento4/bento4.mk
index 8aefc401ef..569e320a2f 100644
--- a/package/bento4/bento4.mk
+++ b/package/bento4/bento4.mk
@@ -4,7 +4,7 @@
#
################################################################################
-BENTO4_VERSION = 1.6.0-639-7-Omega
+BENTO4_VERSION = 1.6.0-641-Omega
BENTO4_SITE = $(call github,xbmc,Bento4,$(BENTO4_VERSION))
BENTO4_INSTALL_STAGING = YES
BENTO4_LICENSE = GPL-2.0+
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* Re: [Buildroot] [PATCH v2 06/20] package/bento4: bump version to 1.6.0-641-Omega
2024-04-07 11:44 ` [Buildroot] [PATCH v2 06/20] package/bento4: bump version to 1.6.0-641-Omega Bernd Kuhls
@ 2024-05-09 17:01 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 32+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-05-09 17:01 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Mahyar Koshkouei, Romain Naour, Samuel Martin, Woodrow Douglass,
Julien Corjon, buildroot, Giulio Benetti, Fabrice Fontaine
On Sun, 7 Apr 2024 13:44:31 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> package/bento4/bento4.hash | 2 +-
> package/bento4/bento4.mk | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH v2 07/20] package/kodi: bump version to 21.0-Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (5 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 06/20] package/bento4: bump version to 1.6.0-641-Omega Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-05-09 17:02 ` Thomas Petazzoni via buildroot
2024-04-07 11:44 ` [Buildroot] [PATCH v2 08/20] package/kodi-audiodecoder-*: mass version bump to Omega Bernd Kuhls
` (15 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Added new dependency to libdisplay-info for gbm support:
https://github.com/xbmc/xbmc/commit/ce9626479c1792210c7b7cc02c7dc4f819ace509
Added new required dependency to tinyxml2:
https://github.com/xbmc/xbmc/commit/9e983ed0449aaf3007d8bfa3261056b120d84188
Please note that parts of kodi still use tinyxml so both dependencies
are needed.
Added new required dependency to libudfread: Since upstream commit
https://github.com/xbmc/xbmc/commit/5f9b9cfa26f274e381e92d73cfa33fb55582436e
kodi does not build anymore without libudfread.
Upstream removed the bundled groovy/apache commons binaries:
https://github.com/xbmc/xbmc/commit/d6bc920e056baad7782f47b86cba85d1336bb134
- JsonSchemaBuilder fixes:
Upstream moved CMakeLists.txt to src/ subfolder:
https://github.com/xbmc/xbmc/commit/7e87d98ca55c72fcbc9b8dadf2cb979a85732606
- TexturePacker fixes:
texturepacker now depends on c++17:
https://github.com/xbmc/xbmc/commit/54bd6d7ab552a4ddc04d2595826457d8bfa864d5
Since the host version of texturepacker is a build dependency of kodi:
https://github.com/xbmc/xbmc/blob/Omega/CMakeLists.txt#L187
https://github.com/xbmc/xbmc/blob/Omega/CMakeLists.txt#L472
we add a new dependency to BR2_HOST_GCC_AT_LEAST_9.
Upstream moved CMakeLists.txt to src/ subfolder
https://github.com/xbmc/xbmc/commit/e336a75f42d9c4efd3433f3fa6edd05309689deb
Due to this update we can remove all of our patches for texturepacker.
- Kodi fixes:
Set KODI_SOURCE_DIR variable to root directory of the source tarball.
When building natively, outside of a meta buildsystem like Buildroot,
kodi builds its own tools as part of its build process. TexturePacker
needs cmake modules available from the top of the Kodi source tree, a
source file in a sub-directory at the top-level source tree, which
itself needs includes from the same sub-dir. The Kodi build process sets
KODI_SOURCE_DIR so that TexturePacker can find those files.
In Buildroot, as we cross-build, we build the tools explicitly, without
using the Kodi build process, and thus we must set KODI_SOURCE_DIR to the
root directory of the source tarball. LibreELEC added something similar:
https://github.com/LibreELEC/LibreELEC.tv/commit/70abdd27a22b22547060fcb00a2c70ea61721465
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
.../kodi-jsonschemabuilder.mk | 6 ++---
.../0001-texturepacker.patch | 16 -----------
...-fix-texture-packer-cmake-source-dir.patch | 27 -------------------
.../kodi-texturepacker/kodi-texturepacker.mk | 9 ++++---
package/kodi/Config.in | 4 +++
package/kodi/kodi.hash | 6 ++++-
package/kodi/kodi.mk | 25 ++++++++++-------
7 files changed, 33 insertions(+), 60 deletions(-)
delete mode 100644 package/kodi-texturepacker/0001-texturepacker.patch
delete mode 100644 package/kodi-texturepacker/0002-fix-texture-packer-cmake-source-dir.patch
diff --git a/package/kodi-jsonschemabuilder/kodi-jsonschemabuilder.mk b/package/kodi-jsonschemabuilder/kodi-jsonschemabuilder.mk
index a43ee57e00..ee94a52502 100644
--- a/package/kodi-jsonschemabuilder/kodi-jsonschemabuilder.mk
+++ b/package/kodi-jsonschemabuilder/kodi-jsonschemabuilder.mk
@@ -6,20 +6,20 @@
# Not possible to directly refer to kodi variables, because of
# first/second expansion trickery...
-KODI_JSONSCHEMABUILDER_VERSION = 20.5-Nexus
+KODI_JSONSCHEMABUILDER_VERSION = 21.0-Omega
KODI_JSONSCHEMABUILDER_SITE = $(call github,xbmc,xbmc,$(KODI_JSONSCHEMABUILDER_VERSION))
KODI_JSONSCHEMABUILDER_SOURCE = kodi-$(KODI_JSONSCHEMABUILDER_VERSION).tar.gz
KODI_JSONSCHEMABUILDER_DL_SUBDIR = kodi
KODI_JSONSCHEMABUILDER_LICENSE = GPL-2.0
KODI_JSONSCHEMABUILDER_LICENSE_FILES = LICENSE.md
-HOST_KODI_JSONSCHEMABUILDER_SUBDIR = tools/depends/native/JsonSchemaBuilder
+HOST_KODI_JSONSCHEMABUILDER_SUBDIR = tools/depends/native/JsonSchemaBuilder/src
HOST_KODI_JSONSCHEMABUILDER_CONF_OPTS = \
-DCMAKE_MODULE_PATH=$(@D)/project/cmake/modules
define HOST_KODI_JSONSCHEMABUILDER_INSTALL_CMDS
$(INSTALL) -m 755 -D \
- $(@D)/tools/depends/native/JsonSchemaBuilder/JsonSchemaBuilder \
+ $(@D)/tools/depends/native/JsonSchemaBuilder/src/JsonSchemaBuilder \
$(HOST_DIR)/bin/kodi-JsonSchemaBuilder
endef
diff --git a/package/kodi-texturepacker/0001-texturepacker.patch b/package/kodi-texturepacker/0001-texturepacker.patch
deleted file mode 100644
index 8830b4c646..0000000000
--- a/package/kodi-texturepacker/0001-texturepacker.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Fix host compile
-
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
-
-diff -uNr xbmc-656cba5d5c7c5edb166196b48560825b9b1f03fd.org/tools/depends/native/TexturePacker/Makefile xbmc-656cba5d5c7c5edb166196b48560825b9b1f03fd/tools/depends/native/TexturePacker/Makefile
---- xbmc-656cba5d5c7c5edb166196b48560825b9b1f03fd.org/tools/depends/native/TexturePacker/Makefile 2015-01-25 09:00:48.000000000 +0100
-+++ xbmc-656cba5d5c7c5edb166196b48560825b9b1f03fd/tools/depends/native/TexturePacker/Makefile 2015-01-25 13:03:23.606140953 +0100
-@@ -36,7 +36,7 @@
- -rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM)
- cd $(PLATFORM); cp -a $(SOURCE)/* .
- cd $(PLATFORM); ./autogen.sh
-- cd $(PLATFORM); ./configure --prefix=$(PREFIX) $(EXTRA_CONFIGURE) EXTRA_DEFINES="$(NATIVE_ARCH_DEFINES)"
-+ cd $(PLATFORM); ./configure --prefix=$(PREFIX) EXTRA_DEFINES="$(NATIVE_ARCH_DEFINES)"
-
-
- $(APP): $(PLATFORM)
diff --git a/package/kodi-texturepacker/0002-fix-texture-packer-cmake-source-dir.patch b/package/kodi-texturepacker/0002-fix-texture-packer-cmake-source-dir.patch
deleted file mode 100644
index ddd82439fe..0000000000
--- a/package/kodi-texturepacker/0002-fix-texture-packer-cmake-source-dir.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Fix stand-alone build
-
-CMake Error at CMakeLists.txt:40 (add_executable):
- Cannot find source file:
-
- /home/bernd/buildroot/output/build/host-kodi-texturepacker-18.4-Leia/tools/depends/native/TexturePacker/xbmc/guilib/XBTF.cpp
-
- Tried extensions .c .C .c++ .cc .cpp .cxx .cu .m .M .mm .h .hh .h++ .hm
- .hpp .hxx .in .txx
-
-CMake Error at CMakeLists.txt:40 (add_executable):
- No SOURCES given to target: TexturePacker
-
-Downloaded from
-https://github.com/LibreELEC/LibreELEC.tv/blob/master/packages/mediacenter/kodi/patches/kodi-100.25-hack-fix-texture-packer-cmake-source-dir.patch
-
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
-
-diff -Naur a/tools/depends/native/TexturePacker/CMakeLists.txt b/tools/depends/native/TexturePacker/CMakeLists.txt
---- a/tools/depends/native/TexturePacker/CMakeLists.txt 2016-12-23 17:10:28.593185862 +0000
-+++ b/tools/depends/native/TexturePacker/CMakeLists.txt 2016-12-23 17:10:39.469253011 +0000
-@@ -1,3 +1,5 @@
-+set(CMAKE_SOURCE_DIR ${CMAKE_SOURCE_DIR}/../../../..)
-+
- list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)
-
- if(APPLE)
diff --git a/package/kodi-texturepacker/kodi-texturepacker.mk b/package/kodi-texturepacker/kodi-texturepacker.mk
index e640ab3a90..c3c06d0210 100644
--- a/package/kodi-texturepacker/kodi-texturepacker.mk
+++ b/package/kodi-texturepacker/kodi-texturepacker.mk
@@ -6,13 +6,13 @@
# Not possible to directly refer to kodi variables, because of
# first/second expansion trickery...
-KODI_TEXTUREPACKER_VERSION = 20.5-Nexus
+KODI_TEXTUREPACKER_VERSION = 21.0-Omega
KODI_TEXTUREPACKER_SITE = $(call github,xbmc,xbmc,$(KODI_TEXTUREPACKER_VERSION))
KODI_TEXTUREPACKER_SOURCE = kodi-$(KODI_TEXTUREPACKER_VERSION).tar.gz
KODI_TEXTUREPACKER_DL_SUBDIR = kodi
KODI_TEXTUREPACKER_LICENSE = GPL-2.0
KODI_TEXTUREPACKER_LICENSE_FILES = LICENSE.md
-HOST_KODI_TEXTUREPACKER_SUBDIR = tools/depends/native/TexturePacker
+HOST_KODI_TEXTUREPACKER_SUBDIR = tools/depends/native/TexturePacker/src
HOST_KODI_TEXTUREPACKER_DEPENDENCIES = \
host-giflib \
host-libjpeg \
@@ -21,7 +21,7 @@ HOST_KODI_TEXTUREPACKER_DEPENDENCIES = \
HOST_KODI_TEXTUREPACKER_CXXFLAGS = \
$(HOST_CXXFLAGS) \
- -std=c++0x \
+ -std=c++17 \
-DTARGET_POSIX \
-DTARGET_LINUX \
-D_LINUX \
@@ -30,11 +30,12 @@ HOST_KODI_TEXTUREPACKER_CXXFLAGS = \
HOST_KODI_TEXTUREPACKER_CONF_OPTS += \
-DCMAKE_CXX_FLAGS="$(HOST_KODI_TEXTUREPACKER_CXXFLAGS)" \
-DCMAKE_MODULE_PATH=$(@D)/cmake/modules \
+ -DKODI_SOURCE_DIR=$(@D) \
-Wno-dev
define HOST_KODI_TEXTUREPACKER_INSTALL_CMDS
$(INSTALL) -m 755 -D \
- $(@D)/tools/depends/native/TexturePacker/TexturePacker \
+ $(@D)/tools/depends/native/TexturePacker/src/TexturePacker \
$(HOST_DIR)/bin/kodi-TexturePacker
endef
diff --git a/package/kodi/Config.in b/package/kodi/Config.in
index 8ad9fdae78..885550a542 100644
--- a/package/kodi/Config.in
+++ b/package/kodi/Config.in
@@ -26,6 +26,7 @@ config BR2_PACKAGE_KODI_PLATFORM_SUPPORTS_GBM
depends on BR2_PACKAGE_LIBGBM_HAS_FEATURE_DMA_BUF
depends on BR2_PACKAGE_HAS_UDEV # libinput
select BR2_PACKAGE_KODI_PLATFORM_SUPPORTS
+ select BR2_PACKAGE_LIBDISPLAY_INFO
comment "kodi needs udev support for gbm"
depends on !BR2_PACKAGE_KODI_PLATFORM_SUPPORTS
@@ -56,6 +57,7 @@ menuconfig BR2_PACKAGE_KODI
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libass -> harfbuzz
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_9 # C++17
+ depends on BR2_HOST_GCC_AT_LEAST_9 # C++17
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on !BR2_TOOLCHAIN_USES_MUSL
depends on BR2_USE_WCHAR
@@ -103,6 +105,7 @@ menuconfig BR2_PACKAGE_KODI
select BR2_PACKAGE_SQLITE
select BR2_PACKAGE_TAGLIB
select BR2_PACKAGE_TINYXML
+ select BR2_PACKAGE_TINYXML2
select BR2_PACKAGE_ZLIB
select BR2_TOOLCHAIN_GLIBC_GCONV_LIBS_COPY if BR2_TOOLCHAIN_USES_GLIBC # runtime UTF conversion support
select BR2_PACKAGE_LIBINPUT if BR2_PACKAGE_KODI_PLATFORM_SUPPORTS_GBM
@@ -162,6 +165,7 @@ config BR2_PACKAGE_KODI_EVENTCLIENTS
config BR2_PACKAGE_KODI_LIBBLURAY
bool "blu-ray"
select BR2_PACKAGE_LIBBLURAY
+ select BR2_PACKAGE_LIBUDFREAD
help
Enable Blu-ray input support.
Select this if you want to play back Blu-ray content.
diff --git a/package/kodi/kodi.hash b/package/kodi/kodi.hash
index b497ab7dca..15d1e471cd 100644
--- a/package/kodi/kodi.hash
+++ b/package/kodi/kodi.hash
@@ -1,5 +1,9 @@
+# From https://github.com/xbmc/xbmc/blob/Omega/xbmc/interfaces/swig/CMakeLists.txt
+sha512 743698979c801f3cfb36545888b5303e1e25dae5692bb45cab7ebbe102a6eda31f09abc6978349ad90ecaf630416fc87eacba7781244855e7e771a3c44041fa0 apache-groovy-binary-4.0.16.zip
+sha512 8e7e62418a49ba810512c13a640a8bf35f878fcd54af32fdaab1111e37817f58b21b475980ba663fba4887e45ef8d88af8ff17796f20d202e929e8e2574546dc commons-lang3-3.14.0-bin.tar.gz
+sha512 2e94877000dd270b69e2e8cbf49f258a90b4c628b6b6b0814e300a2f0e9c391f0816dceb0707e596ae3b7c9532f93e7a4917df47c77f44b3a810e14042ce5f3f commons-text-1.11.0-bin.tar.gz
# Locally computed
-sha256 9bf3257ebf251d20f276b7f90681985a270779150af2fb395d4b593c04002deb kodi-20.5-Nexus.tar.gz
+sha256 7f54c1fd8456ac46221fbc85e447362bdc209163c6cb19fca98d106560071b7c kodi-21.0-Omega.tar.gz
sha256 f38c4a4e7a4f4da6d8e83b8852489aa3bb6588a915dc41f5ee89d9aad305a06e kodi-libdvdcss-1.4.3-Next-Nexus-Alpha2-2.tar.gz
sha256 584f62a3896794408d46368e2ecf2c6217ab9c676ce85921b2d68b8961f49dfc kodi-libdvdnav-6.1.1-Next-Nexus-Alpha2-2.tar.gz
sha256 719130091e3adc9725ba72df808f24a14737a009dca5a4c38c601c0c76449b62 kodi-libdvdread-6.1.3-Next-Nexus-Alpha2-2.tar.gz
diff --git a/package/kodi/kodi.mk b/package/kodi/kodi.mk
index 085169367d..b9931f9609 100644
--- a/package/kodi/kodi.mk
+++ b/package/kodi/kodi.mk
@@ -6,8 +6,8 @@
# When updating the version, please also update kodi-jsonschemabuilder
# and kodi-texturepacker
-KODI_VERSION_MAJOR = 20.5
-KODI_VERSION_NAME = Nexus
+KODI_VERSION_MAJOR = 21.0
+KODI_VERSION_NAME = Omega
KODI_VERSION = $(KODI_VERSION_MAJOR)-$(KODI_VERSION_NAME)
KODI_SITE = $(call github,xbmc,xbmc,$(KODI_VERSION))
KODI_LICENSE = GPL-2.0
@@ -45,6 +45,7 @@ KODI_DEPENDENCIES = \
libfribidi \
libplist \
libpng \
+ libudfread \
lzo \
openssl \
pcre \
@@ -54,6 +55,7 @@ KODI_DEPENDENCIES = \
sqlite \
taglib \
tinyxml \
+ tinyxml2 \
zlib
# taken from tools/depends/target/*/*-VERSION
@@ -61,10 +63,21 @@ KODI_LIBDVDCSS_VERSION = 1.4.3-Next-Nexus-Alpha2-2
KODI_LIBDVDNAV_VERSION = 6.1.1-Next-Nexus-Alpha2-2
KODI_LIBDVDREAD_VERSION = 6.1.3-Next-Nexus-Alpha2-2
KODI_EXTRA_DOWNLOADS += \
+ https://groovy.jfrog.io/artifactory/dist-release-local/groovy-zips/apache-groovy-binary-4.0.16.zip \
+ https://dlcdn.apache.org/commons/lang/binaries/commons-lang3-3.14.0-bin.tar.gz \
+ https://dlcdn.apache.org/commons/text/binaries/commons-text-1.11.0-bin.tar.gz \
$(call github,xbmc,libdvdcss,$(KODI_LIBDVDCSS_VERSION))/kodi-libdvdcss-$(KODI_LIBDVDCSS_VERSION).tar.gz \
$(call github,xbmc,libdvdnav,$(KODI_LIBDVDNAV_VERSION))/kodi-libdvdnav-$(KODI_LIBDVDNAV_VERSION).tar.gz \
$(call github,xbmc,libdvdread,$(KODI_LIBDVDREAD_VERSION))/kodi-libdvdread-$(KODI_LIBDVDREAD_VERSION).tar.gz
+define KODI_PROVIDE_JAVA_TARBALLS
+ mkdir -p $(@D)/buildroot-build/build/download
+ cp $(KODI_DL_DIR)/apache-groovy-binary-4.0.16.zip $(@D)/buildroot-build/build/download
+ cp $(KODI_DL_DIR)/commons-lang3-3.14.0-bin.tar.gz $(@D)/buildroot-build/build/download
+ cp $(KODI_DL_DIR)/commons-text-1.11.0-bin.tar.gz $(@D)/buildroot-build/build/download
+endef
+KODI_POST_EXTRACT_HOOKS = KODI_PROVIDE_JAVA_TARBALLS
+
KODI_CONF_OPTS += \
-DCMAKE_C_FLAGS="$(TARGET_CFLAGS) $(KODI_C_FLAGS)" \
-DENABLE_APP_AUTONAME=OFF \
@@ -104,7 +117,7 @@ endif
ifeq ($(BR2_PACKAGE_KODI_PLATFORM_SUPPORTS_GBM),y)
KODI_CORE_PLATFORM_NAME += gbm
-KODI_DEPENDENCIES += libgbm libinput libxkbcommon
+KODI_DEPENDENCIES += libdisplay-info libgbm libinput libxkbcommon
endif
ifeq ($(BR2_PACKAGE_KODI_PLATFORM_SUPPORTS_WAYLAND),y)
@@ -368,12 +381,6 @@ else
KODI_CONF_OPTS += -DENABLE_PULSEAUDIO=OFF
endif
-ifeq ($(BR2_PACKAGE_LIBUDFREAD),y)
-KODI_DEPENDENCIES += libudfread
-else
-KODI_CONF_OPTS += -DENABLE_INTERNAL_UDFREAD=OFF
-endif
-
# Remove versioncheck addon, updating Kodi is done by building a new
# buildroot image.
KODI_ADDON_MANIFEST = $(TARGET_DIR)/usr/share/kodi/system/addon-manifest.xml
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* Re: [Buildroot] [PATCH v2 07/20] package/kodi: bump version to 21.0-Omega
2024-04-07 11:44 ` [Buildroot] [PATCH v2 07/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
@ 2024-05-09 17:02 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 32+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-05-09 17:02 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Mahyar Koshkouei, Romain Naour, Samuel Martin, Woodrow Douglass,
Julien Corjon, buildroot, Giulio Benetti, Fabrice Fontaine
On Sun, 7 Apr 2024 13:44:32 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:
> Added new dependency to libdisplay-info for gbm support:
> https://github.com/xbmc/xbmc/commit/ce9626479c1792210c7b7cc02c7dc4f819ace509
>
> Added new required dependency to tinyxml2:
> https://github.com/xbmc/xbmc/commit/9e983ed0449aaf3007d8bfa3261056b120d84188
> Please note that parts of kodi still use tinyxml so both dependencies
> are needed.
>
> Added new required dependency to libudfread: Since upstream commit
> https://github.com/xbmc/xbmc/commit/5f9b9cfa26f274e381e92d73cfa33fb55582436e
> kodi does not build anymore without libudfread.
>
> Upstream removed the bundled groovy/apache commons binaries:
> https://github.com/xbmc/xbmc/commit/d6bc920e056baad7782f47b86cba85d1336bb134
>
> - JsonSchemaBuilder fixes:
>
> Upstream moved CMakeLists.txt to src/ subfolder:
> https://github.com/xbmc/xbmc/commit/7e87d98ca55c72fcbc9b8dadf2cb979a85732606
>
> - TexturePacker fixes:
>
> texturepacker now depends on c++17:
> https://github.com/xbmc/xbmc/commit/54bd6d7ab552a4ddc04d2595826457d8bfa864d5
>
> Since the host version of texturepacker is a build dependency of kodi:
> https://github.com/xbmc/xbmc/blob/Omega/CMakeLists.txt#L187
> https://github.com/xbmc/xbmc/blob/Omega/CMakeLists.txt#L472
> we add a new dependency to BR2_HOST_GCC_AT_LEAST_9.
>
> Upstream moved CMakeLists.txt to src/ subfolder
> https://github.com/xbmc/xbmc/commit/e336a75f42d9c4efd3433f3fa6edd05309689deb
>
> Due to this update we can remove all of our patches for texturepacker.
>
> - Kodi fixes:
>
> Set KODI_SOURCE_DIR variable to root directory of the source tarball.
> When building natively, outside of a meta buildsystem like Buildroot,
> kodi builds its own tools as part of its build process. TexturePacker
> needs cmake modules available from the top of the Kodi source tree, a
> source file in a sub-directory at the top-level source tree, which
> itself needs includes from the same sub-dir. The Kodi build process sets
> KODI_SOURCE_DIR so that TexturePacker can find those files.
>
> In Buildroot, as we cross-build, we build the tools explicitly, without
> using the Kodi build process, and thus we must set KODI_SOURCE_DIR to the
> root directory of the source tarball. LibreELEC added something similar:
> https://github.com/LibreELEC/LibreELEC.tv/commit/70abdd27a22b22547060fcb00a2c70ea61721465
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
> .../kodi-jsonschemabuilder.mk | 6 ++---
> .../0001-texturepacker.patch | 16 -----------
> ...-fix-texture-packer-cmake-source-dir.patch | 27 -------------------
> .../kodi-texturepacker/kodi-texturepacker.mk | 9 ++++---
> package/kodi/Config.in | 4 +++
> package/kodi/kodi.hash | 6 ++++-
> package/kodi/kodi.mk | 25 ++++++++++-------
> 7 files changed, 33 insertions(+), 60 deletions(-)
> delete mode 100644 package/kodi-texturepacker/0001-texturepacker.patch
> delete mode 100644 package/kodi-texturepacker/0002-fix-texture-packer-cmake-source-dir.patch
Thanks for the detailed commit log explaining all the changes, it was
*very* useful.
One small thing was missing: you add a dependency on host gcc >= 9, but
you forgot to update the Config.in comment and dependency about this. I
fixed that up when applying.
Thanks for the continued maintenance of this complicated package!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH v2 08/20] package/kodi-audiodecoder-*: mass version bump to Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (6 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 07/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 09/20] package/kodi-audioencoder-*: " Bernd Kuhls
` (14 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Removed patch from kodi-audiodecoder-timidity which is included in
upstream release.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
.../kodi-audiodecoder-modplug.hash | 2 +-
.../kodi-audiodecoder-modplug.mk | 2 +-
.../kodi-audiodecoder-nosefart.hash | 2 +-
.../kodi-audiodecoder-nosefart.mk | 2 +-
.../kodi-audiodecoder-sidplay.hash | 2 +-
.../kodi-audiodecoder-sidplay.mk | 2 +-
.../kodi-audiodecoder-snesapu.hash | 2 +-
.../kodi-audiodecoder-snesapu.mk | 2 +-
.../kodi-audiodecoder-stsound.hash | 2 +-
.../kodi-audiodecoder-stsound.mk | 2 +-
...001-MidiScan-include-missing-cstdint.patch | 29 -------------------
.../kodi-audiodecoder-timidity.hash | 2 +-
.../kodi-audiodecoder-timidity.mk | 2 +-
.../kodi-audiodecoder-vgmstream.hash | 2 +-
.../kodi-audiodecoder-vgmstream.mk | 2 +-
15 files changed, 14 insertions(+), 43 deletions(-)
delete mode 100644 package/kodi-audiodecoder-timidity/0001-MidiScan-include-missing-cstdint.patch
diff --git a/package/kodi-audiodecoder-modplug/kodi-audiodecoder-modplug.hash b/package/kodi-audiodecoder-modplug/kodi-audiodecoder-modplug.hash
index 20f13e95f7..054e7581cc 100644
--- a/package/kodi-audiodecoder-modplug/kodi-audiodecoder-modplug.hash
+++ b/package/kodi-audiodecoder-modplug/kodi-audiodecoder-modplug.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 619ba20ea19dd9aea15e7d30aa12a146b412c7fcd9e709528f6758e82a3d85e7 kodi-audiodecoder-modplug-20.2.0-Nexus.tar.gz
+sha256 7c637f4e012e7e26a3431244a8444331f9bfeaf9c6af73cac799b58b9a0eefdf kodi-audiodecoder-modplug-e697156054ea3eb5974fb9727e046287220985e5.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-audiodecoder-modplug/kodi-audiodecoder-modplug.mk b/package/kodi-audiodecoder-modplug/kodi-audiodecoder-modplug.mk
index bbbada01da..e435591cbf 100644
--- a/package/kodi-audiodecoder-modplug/kodi-audiodecoder-modplug.mk
+++ b/package/kodi-audiodecoder-modplug/kodi-audiodecoder-modplug.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_AUDIODECODER_MODPLUG_VERSION = 20.2.0-Nexus
+KODI_AUDIODECODER_MODPLUG_VERSION = e697156054ea3eb5974fb9727e046287220985e5
KODI_AUDIODECODER_MODPLUG_SITE = $(call github,xbmc,audiodecoder.modplug,$(KODI_AUDIODECODER_MODPLUG_VERSION))
KODI_AUDIODECODER_MODPLUG_LICENSE = GPL-2.0+
KODI_AUDIODECODER_MODPLUG_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart.hash b/package/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart.hash
index 4012353b0b..b2e3a36a0d 100644
--- a/package/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart.hash
+++ b/package/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 2f7a92bfaddcd5aa63e2ea7348ae9eeefd07dee2aba46840ce5376677e2abc19 kodi-audiodecoder-nosefart-20.2.0-Nexus.tar.gz
+sha256 fd0d12af9d3d59fbcf41e67d1f8ac9e1339c702219da4a3393688e89ff911ebb kodi-audiodecoder-nosefart-92c6daeb278b02cd63fee724c96051421c9149f3.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart.mk b/package/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart.mk
index 8954da18de..7425447115 100644
--- a/package/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart.mk
+++ b/package/kodi-audiodecoder-nosefart/kodi-audiodecoder-nosefart.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_AUDIODECODER_NOSEFART_VERSION = 20.2.0-Nexus
+KODI_AUDIODECODER_NOSEFART_VERSION = 92c6daeb278b02cd63fee724c96051421c9149f3
KODI_AUDIODECODER_NOSEFART_SITE = $(call github,xbmc,audiodecoder.nosefart,$(KODI_AUDIODECODER_NOSEFART_VERSION))
KODI_AUDIODECODER_NOSEFART_LICENSE = GPL-2.0+
KODI_AUDIODECODER_NOSEFART_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay.hash b/package/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay.hash
index caf9390eaa..1f0da25fc3 100644
--- a/package/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay.hash
+++ b/package/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 ab1f89237c91bc7157557f42dadcff50a7191eb7285ee668543defce9f1efcf2 kodi-audiodecoder-sidplay-20.2.0-Nexus.tar.gz
+sha256 63090c74af51db7a859f8a2aa317ea2c4f2125be3306190502efc5522f00ec93 kodi-audiodecoder-sidplay-0ba1bc70faced93352cdd9ec1a5ec84e22a2e0f5.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay.mk b/package/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay.mk
index c30be0774b..a08901328f 100644
--- a/package/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay.mk
+++ b/package/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_AUDIODECODER_SIDPLAY_VERSION = 20.2.0-Nexus
+KODI_AUDIODECODER_SIDPLAY_VERSION = 0ba1bc70faced93352cdd9ec1a5ec84e22a2e0f5
KODI_AUDIODECODER_SIDPLAY_SITE = $(call github,xbmc,audiodecoder.sidplay,$(KODI_AUDIODECODER_SIDPLAY_VERSION))
KODI_AUDIODECODER_SIDPLAY_LICENSE = GPL-2.0+
KODI_AUDIODECODER_SIDPLAY_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu.hash b/package/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu.hash
index 3ed7483fdb..db8b33cb4b 100644
--- a/package/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu.hash
+++ b/package/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 f216a7d25c864986618118236c575687ab62d129a16cb1f73c15860948d9ac92 kodi-audiodecoder-snesapu-20.2.0-Nexus.tar.gz
+sha256 4932d6d00c3b8662bc6e1600757bd85856c79028c5ecb920fa0d257bab30b7a2 kodi-audiodecoder-snesapu-532186702c49ba7fe007badc74fa6a6e9cac48fe.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu.mk b/package/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu.mk
index 577adc0bc3..5b6cafcc0f 100644
--- a/package/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu.mk
+++ b/package/kodi-audiodecoder-snesapu/kodi-audiodecoder-snesapu.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_AUDIODECODER_SNESAPU_VERSION = 20.2.0-Nexus
+KODI_AUDIODECODER_SNESAPU_VERSION = 532186702c49ba7fe007badc74fa6a6e9cac48fe
KODI_AUDIODECODER_SNESAPU_SITE = $(call github,xbmc,audiodecoder.snesapu,$(KODI_AUDIODECODER_SNESAPU_VERSION))
KODI_AUDIODECODER_SNESAPU_LICENSE = GPL-2.0+
KODI_AUDIODECODER_SNESAPU_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound.hash b/package/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound.hash
index c4d6a68ef9..daa3f537fd 100644
--- a/package/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound.hash
+++ b/package/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 a8138fb075a480c59d7041a9408eca6e52dc88f188daed519cd9e684b430f333 kodi-audiodecoder-stsound-20.2.0-Nexus.tar.gz
+sha256 bf292e364bd9bbc0286fb49815cd4c2f86e5952d9bd1c878f6d1952d081d87de kodi-audiodecoder-stsound-b72c793e2ada7ab2358568ec5b01fd71ddf7cdb3.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound.mk b/package/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound.mk
index 0fa9a654e4..36535cde60 100644
--- a/package/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound.mk
+++ b/package/kodi-audiodecoder-stsound/kodi-audiodecoder-stsound.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_AUDIODECODER_STSOUND_VERSION = 20.2.0-Nexus
+KODI_AUDIODECODER_STSOUND_VERSION = b72c793e2ada7ab2358568ec5b01fd71ddf7cdb3
KODI_AUDIODECODER_STSOUND_SITE = $(call github,xbmc,audiodecoder.stsound,$(KODI_AUDIODECODER_STSOUND_VERSION))
KODI_AUDIODECODER_STSOUND_LICENSE = GPL-2.0+
KODI_AUDIODECODER_STSOUND_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-audiodecoder-timidity/0001-MidiScan-include-missing-cstdint.patch b/package/kodi-audiodecoder-timidity/0001-MidiScan-include-missing-cstdint.patch
deleted file mode 100644
index a0fb586e44..0000000000
--- a/package/kodi-audiodecoder-timidity/0001-MidiScan-include-missing-cstdint.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 0d4d3fcf5c58dd16b3e9a7337189141b839e4ace Mon Sep 17 00:00:00 2001
-From: Rudi Heitbaum <rudi@heitbaum.com>
-Date: Sat, 15 Apr 2023 07:41:15 +1000
-Subject: [PATCH] MidiScan: include missing <cstdint>
-
-gcc 13 moved some includes around and as a result <cstdint> is no longer transitively
-included [1]. Explicitly include it for uint{32,64}_t.
-
-[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
-
-Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com>
-Upstream: https://github.com/xbmc/audiodecoder.timidity/commit/0d4d3fcf5c58dd16b3e9a7337189141b839e4ace
-Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
----
- src/MidiScan.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/MidiScan.h b/src/MidiScan.h
-index 9c19bdf..ac959e0 100644
---- a/src/MidiScan.h
-+++ b/src/MidiScan.h
-@@ -8,6 +8,7 @@
-
- #pragma once
-
-+#include <cstdint>
- #include <string>
- #include <vector>
-
diff --git a/package/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity.hash b/package/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity.hash
index d8c1535395..8714ebbdac 100644
--- a/package/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity.hash
+++ b/package/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 ef1b384090df3c2c78d00ed33de1d989ce802702b0a9aa13575946409a5cd0f1 kodi-audiodecoder-timidity-20.2.0-Nexus.tar.gz
+sha256 6f8e72ab3c63db04fd863893bbc5afe2c8cfcc7a71d86b68ed5bfe26ea5bf066 kodi-audiodecoder-timidity-00bee97ded3bc824dc454104bd53d0f431404571.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity.mk b/package/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity.mk
index 6ec66fab9b..bef0d67214 100644
--- a/package/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity.mk
+++ b/package/kodi-audiodecoder-timidity/kodi-audiodecoder-timidity.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_AUDIODECODER_TIMIDITY_VERSION = 20.2.0-Nexus
+KODI_AUDIODECODER_TIMIDITY_VERSION = 00bee97ded3bc824dc454104bd53d0f431404571
KODI_AUDIODECODER_TIMIDITY_SITE = $(call github,xbmc,audiodecoder.timidity,$(KODI_AUDIODECODER_TIMIDITY_VERSION))
KODI_AUDIODECODER_TIMIDITY_LICENSE = GPL-2.0+
KODI_AUDIODECODER_TIMIDITY_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream.hash b/package/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream.hash
index d861b5957e..a39c49bbb2 100644
--- a/package/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream.hash
+++ b/package/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 72367d7196f8049ef1fae426d32d3de1eac56bd4cb5a8fc38a6ba0c3da1b23d8 kodi-audiodecoder-vgmstream-20.2.0-Nexus.tar.gz
+sha256 c198151522b082feef1855e8a94d45ee498388c6764d58b92af9de20c72896c0 kodi-audiodecoder-vgmstream-56bedfc90ca600401e6dda407a5b933da0976664.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream.mk b/package/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream.mk
index 78e7a9f1a2..62d956892b 100644
--- a/package/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream.mk
+++ b/package/kodi-audiodecoder-vgmstream/kodi-audiodecoder-vgmstream.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_AUDIODECODER_VGMSTREAM_VERSION = 20.2.0-Nexus
+KODI_AUDIODECODER_VGMSTREAM_VERSION = 56bedfc90ca600401e6dda407a5b933da0976664
KODI_AUDIODECODER_VGMSTREAM_SITE = $(call github,xbmc,audiodecoder.vgmstream,$(KODI_AUDIODECODER_VGMSTREAM_VERSION))
KODI_AUDIODECODER_VGMSTREAM_LICENSE = GPL-2.0+
KODI_AUDIODECODER_VGMSTREAM_LICENSE_FILES = LICENSE.md
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* [Buildroot] [PATCH v2 09/20] package/kodi-audioencoder-*: mass version bump to Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (7 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 08/20] package/kodi-audiodecoder-*: mass version bump to Omega Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 10/20] package/kodi-imagedecoder-*: " Bernd Kuhls
` (13 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/kodi-audioencoder-flac/kodi-audioencoder-flac.hash | 2 +-
package/kodi-audioencoder-flac/kodi-audioencoder-flac.mk | 2 +-
package/kodi-audioencoder-lame/kodi-audioencoder-lame.hash | 2 +-
package/kodi-audioencoder-lame/kodi-audioencoder-lame.mk | 2 +-
package/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis.hash | 2 +-
package/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis.mk | 2 +-
package/kodi-audioencoder-wav/kodi-audioencoder-wav.hash | 2 +-
package/kodi-audioencoder-wav/kodi-audioencoder-wav.mk | 2 +-
8 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/package/kodi-audioencoder-flac/kodi-audioencoder-flac.hash b/package/kodi-audioencoder-flac/kodi-audioencoder-flac.hash
index e54eafcdf8..8910a6e499 100644
--- a/package/kodi-audioencoder-flac/kodi-audioencoder-flac.hash
+++ b/package/kodi-audioencoder-flac/kodi-audioencoder-flac.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 71daf8c35bbf644591600fef93412cd068a6bf6173d2258dc243ee04c8e5b091 kodi-audioencoder-flac-20.2.0-Nexus.tar.gz
+sha256 37bf7e8b6bff74f7609df7c7d0672b2c847ac6bc8d0a586a7a8c136712d57cbd kodi-audioencoder-flac-de8f0937d8f3ddda987599041b82b7f1c32beec7.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-audioencoder-flac/kodi-audioencoder-flac.mk b/package/kodi-audioencoder-flac/kodi-audioencoder-flac.mk
index d14843cb53..6d7920b108 100644
--- a/package/kodi-audioencoder-flac/kodi-audioencoder-flac.mk
+++ b/package/kodi-audioencoder-flac/kodi-audioencoder-flac.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_AUDIOENCODER_FLAC_VERSION = 20.2.0-Nexus
+KODI_AUDIOENCODER_FLAC_VERSION = de8f0937d8f3ddda987599041b82b7f1c32beec7
KODI_AUDIOENCODER_FLAC_SITE = $(call github,xbmc,audioencoder.flac,$(KODI_AUDIOENCODER_FLAC_VERSION))
KODI_AUDIOENCODER_FLAC_LICENSE = GPL-2.0+
KODI_AUDIOENCODER_FLAC_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-audioencoder-lame/kodi-audioencoder-lame.hash b/package/kodi-audioencoder-lame/kodi-audioencoder-lame.hash
index f66db7d680..17a2524756 100644
--- a/package/kodi-audioencoder-lame/kodi-audioencoder-lame.hash
+++ b/package/kodi-audioencoder-lame/kodi-audioencoder-lame.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 90f36ee0b4972669ed2876eae2502e58d86287aacdbf4bb25180aca01385e1c1 kodi-audioencoder-lame-20.3.0-Nexus.tar.gz
+sha256 4241e4d4a5b6619de684d67b79b8e7b18003cee6dcc6d8f87e5c429899f48146 kodi-audioencoder-lame-f272aeb7aeb94e9d8bf1454e23f0232790bf0ef6.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-audioencoder-lame/kodi-audioencoder-lame.mk b/package/kodi-audioencoder-lame/kodi-audioencoder-lame.mk
index ce891f1838..b0a870995d 100644
--- a/package/kodi-audioencoder-lame/kodi-audioencoder-lame.mk
+++ b/package/kodi-audioencoder-lame/kodi-audioencoder-lame.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_AUDIOENCODER_LAME_VERSION = 20.3.0-Nexus
+KODI_AUDIOENCODER_LAME_VERSION = f272aeb7aeb94e9d8bf1454e23f0232790bf0ef6
KODI_AUDIOENCODER_LAME_SITE = $(call github,xbmc,audioencoder.lame,$(KODI_AUDIOENCODER_LAME_VERSION))
KODI_AUDIOENCODER_LAME_LICENSE = GPL-2.0+
KODI_AUDIOENCODER_LAME_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis.hash b/package/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis.hash
index 2b551a81df..6a5617717c 100644
--- a/package/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis.hash
+++ b/package/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 359e972ddcc498727620ff224a82f970fa2ae22b71ea6ab30b96898dffe6f1f9 kodi-audioencoder-vorbis-20.2.0-Nexus.tar.gz
+sha256 6b05ece93cb843a84facd1240141b6f1ea0653b07e95939f9837310bc3ecdda7 kodi-audioencoder-vorbis-88c1a68efa644aaf2bb91378e26a3f054dcf025c.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis.mk b/package/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis.mk
index 451884d0bc..11c1a863f1 100644
--- a/package/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis.mk
+++ b/package/kodi-audioencoder-vorbis/kodi-audioencoder-vorbis.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_AUDIOENCODER_VORBIS_VERSION = 20.2.0-Nexus
+KODI_AUDIOENCODER_VORBIS_VERSION = 88c1a68efa644aaf2bb91378e26a3f054dcf025c
KODI_AUDIOENCODER_VORBIS_SITE = $(call github,xbmc,audioencoder.vorbis,$(KODI_AUDIOENCODER_VORBIS_VERSION))
KODI_AUDIOENCODER_VORBIS_LICENSE = GPL-2.0+
KODI_AUDIOENCODER_VORBIS_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-audioencoder-wav/kodi-audioencoder-wav.hash b/package/kodi-audioencoder-wav/kodi-audioencoder-wav.hash
index 9318b69e48..56f16824ab 100644
--- a/package/kodi-audioencoder-wav/kodi-audioencoder-wav.hash
+++ b/package/kodi-audioencoder-wav/kodi-audioencoder-wav.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 1baf69cca688ebd389705ea2bef2c5285ba75dcfd0d0b534b6ab1e61c0020979 kodi-audioencoder-wav-20.2.0-Nexus.tar.gz
+sha256 e2f9d7bf7be9b4d521a103115e204150fd029c50fb55e6fd700d32945a8d8551 kodi-audioencoder-wav-d4449bb3f2066893649cdbcc72375a628e610289.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-audioencoder-wav/kodi-audioencoder-wav.mk b/package/kodi-audioencoder-wav/kodi-audioencoder-wav.mk
index b13ee8ea4c..8dbc84038b 100644
--- a/package/kodi-audioencoder-wav/kodi-audioencoder-wav.mk
+++ b/package/kodi-audioencoder-wav/kodi-audioencoder-wav.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_AUDIOENCODER_WAV_VERSION = 20.2.0-Nexus
+KODI_AUDIOENCODER_WAV_VERSION = d4449bb3f2066893649cdbcc72375a628e610289
KODI_AUDIOENCODER_WAV_SITE = $(call github,xbmc,audioencoder.wav,$(KODI_AUDIOENCODER_WAV_VERSION))
KODI_AUDIOENCODER_WAV_LICENSE = GPL-2.0+
KODI_AUDIOENCODER_WAV_LICENSE_FILES = LICENSE.md
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* [Buildroot] [PATCH v2 10/20] package/kodi-imagedecoder-*: mass version bump to Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (8 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 09/20] package/kodi-audioencoder-*: " Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 11/20] package/kodi-inputstream-adaptive: bump version to 21.4.4-Omega Bernd Kuhls
` (12 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Removed patch from kodi-imagedecoder-heif which is included in upstream
release.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
...de-missing-cstdint-to-support-gcc-13.patch | 31 -------------------
.../kodi-imagedecoder-heif.hash | 2 +-
.../kodi-imagedecoder-heif.mk | 2 +-
.../kodi-imagedecoder-raw.hash | 2 +-
.../kodi-imagedecoder-raw.mk | 2 +-
5 files changed, 4 insertions(+), 35 deletions(-)
delete mode 100644 package/kodi-imagedecoder-heif/0001-include-missing-cstdint-to-support-gcc-13.patch
diff --git a/package/kodi-imagedecoder-heif/0001-include-missing-cstdint-to-support-gcc-13.patch b/package/kodi-imagedecoder-heif/0001-include-missing-cstdint-to-support-gcc-13.patch
deleted file mode 100644
index bd431545e1..0000000000
--- a/package/kodi-imagedecoder-heif/0001-include-missing-cstdint-to-support-gcc-13.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 47dcb3843e02abb69c52d6f0021bd2816b8317a5 Mon Sep 17 00:00:00 2001
-From: Rudi Heitbaum <rudi@heitbaum.com>
-Date: Thu, 27 Apr 2023 02:46:59 +1000
-Subject: [PATCH] include missing <cstdint> to support gcc-13
-
-gcc 13 moved some includes around and as a result <cstdint> is no longer transitively
-included [1]. Explicitly include it for uint{32,64}_t.
-
-[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
-
-Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com>
-
-Upstream: https://github.com/xbmc/imagedecoder.heif/commit/47dcb3843e02abb69c52d6f0021bd2816b8317a5
-
-Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
----
- lib/TinyEXIF/TinyEXIF.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/lib/TinyEXIF/TinyEXIF.h b/lib/TinyEXIF/TinyEXIF.h
-index 56354aa..b03d36b 100644
---- a/lib/TinyEXIF/TinyEXIF.h
-+++ b/lib/TinyEXIF/TinyEXIF.h
-@@ -34,6 +34,7 @@
- #ifndef __TINYEXIF_H__
- #define __TINYEXIF_H__
-
-+#include <cstdint>
- #include <string>
- #include <vector>
-
diff --git a/package/kodi-imagedecoder-heif/kodi-imagedecoder-heif.hash b/package/kodi-imagedecoder-heif/kodi-imagedecoder-heif.hash
index 4c7dec7df1..c68a26808e 100644
--- a/package/kodi-imagedecoder-heif/kodi-imagedecoder-heif.hash
+++ b/package/kodi-imagedecoder-heif/kodi-imagedecoder-heif.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 17f50aada11528c02db2ff3871a355c89709ab7e2a5e6b5e33957b790cf207ff kodi-imagedecoder-heif-20.1.0-Nexus.tar.gz
+sha256 12578bc027871dce331ea82070dd8f3e59bf89e72ae43b9178b8083a36be9c23 kodi-imagedecoder-heif-bf9771060dddc753ac7cf1dbf561059cad54dfb0.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-imagedecoder-heif/kodi-imagedecoder-heif.mk b/package/kodi-imagedecoder-heif/kodi-imagedecoder-heif.mk
index 40b091d8b4..600f3fa7d2 100644
--- a/package/kodi-imagedecoder-heif/kodi-imagedecoder-heif.mk
+++ b/package/kodi-imagedecoder-heif/kodi-imagedecoder-heif.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_IMAGEDECODER_HEIF_VERSION = 20.1.0-Nexus
+KODI_IMAGEDECODER_HEIF_VERSION = bf9771060dddc753ac7cf1dbf561059cad54dfb0
KODI_IMAGEDECODER_HEIF_SITE = $(call github,xbmc,imagedecoder.heif,$(KODI_IMAGEDECODER_HEIF_VERSION))
KODI_IMAGEDECODER_HEIF_LICENSE = GPL-2.0+
KODI_IMAGEDECODER_HEIF_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-imagedecoder-raw/kodi-imagedecoder-raw.hash b/package/kodi-imagedecoder-raw/kodi-imagedecoder-raw.hash
index 8be6ed98da..8f9451048c 100644
--- a/package/kodi-imagedecoder-raw/kodi-imagedecoder-raw.hash
+++ b/package/kodi-imagedecoder-raw/kodi-imagedecoder-raw.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 6235c0be431bbb814b3e464753af9ad17febf6001f77cbf030e6c6e1cdc41a04 kodi-imagedecoder-raw-20.1.0-Nexus.tar.gz
+sha256 451ce58acf377dd4758d78baf46f3e8c35d1e76b1a073744963f7a837f336707 kodi-imagedecoder-raw-7be9cf4d985c277f3a059f64873d81b24e6edd70.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-imagedecoder-raw/kodi-imagedecoder-raw.mk b/package/kodi-imagedecoder-raw/kodi-imagedecoder-raw.mk
index 171956df41..87699ffaca 100644
--- a/package/kodi-imagedecoder-raw/kodi-imagedecoder-raw.mk
+++ b/package/kodi-imagedecoder-raw/kodi-imagedecoder-raw.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_IMAGEDECODER_RAW_VERSION = 20.1.0-Nexus
+KODI_IMAGEDECODER_RAW_VERSION = 7be9cf4d985c277f3a059f64873d81b24e6edd70
KODI_IMAGEDECODER_RAW_SITE = $(call github,xbmc,imagedecoder.raw,$(KODI_IMAGEDECODER_RAW_VERSION))
KODI_IMAGEDECODER_RAW_LICENSE = GPL-2.0+
KODI_IMAGEDECODER_RAW_LICENSE_FILES = LICENSE.md
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* [Buildroot] [PATCH v2 11/20] package/kodi-inputstream-adaptive: bump version to 21.4.4-Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (9 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 10/20] package/kodi-imagedecoder-*: " Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 12/20] package/kodi-inputstream-ffmpegdirect: bump version to 21.3.5-Omega Bernd Kuhls
` (11 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Added dependency to pugixml:
https://github.com/xbmc/inputstream.adaptive/commit/31a51a8b0f265ffc5ac62e70c2447334d148c819
Removed dependency to expat:
https://github.com/xbmc/inputstream.adaptive/commit/8816b9089bb4cefc0bf2996db49c3bd1b81b42fe
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/kodi-inputstream-adaptive/Config.in | 2 +-
.../kodi-inputstream-adaptive/kodi-inputstream-adaptive.hash | 2 +-
.../kodi-inputstream-adaptive/kodi-inputstream-adaptive.mk | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/kodi-inputstream-adaptive/Config.in b/package/kodi-inputstream-adaptive/Config.in
index 3efe3aa114..f1f98b8304 100644
--- a/package/kodi-inputstream-adaptive/Config.in
+++ b/package/kodi-inputstream-adaptive/Config.in
@@ -4,7 +4,7 @@ config BR2_PACKAGE_KODI_INPUTSTREAM_ADAPTIVE
depends on BR2_aarch64 || BR2_arm || BR2_i386 || BR2_mipsel \
|| BR2_mips64el || BR2_x86_64
select BR2_PACKAGE_BENTO4
- select BR2_PACKAGE_EXPAT
+ select BR2_PACKAGE_PUGIXML
help
Kodi inputstream addon for several manifest types
diff --git a/package/kodi-inputstream-adaptive/kodi-inputstream-adaptive.hash b/package/kodi-inputstream-adaptive/kodi-inputstream-adaptive.hash
index e38191c0c4..b7a89a8a02 100644
--- a/package/kodi-inputstream-adaptive/kodi-inputstream-adaptive.hash
+++ b/package/kodi-inputstream-adaptive/kodi-inputstream-adaptive.hash
@@ -1,5 +1,5 @@
# Locally computed
-sha256 f67cfef057f8842716db4521a8cd3966c37a1da8fc3fb297527f6f25be20688a kodi-inputstream-adaptive-20.3.17-Nexus.tar.gz
+sha256 0a1074fe04fb7e9500d578490b4cda12ecfcf433495e15e7bf65861527586167 kodi-inputstream-adaptive-21.4.4-Omega.tar.gz
sha256 48632d57fbb6ab8f50cbf4deced5c91e733fa7ff292687c4816b77f28e483df9 LICENSE.md
sha256 02f864f3e07456785625968022ce811c5640301bfd2ae70963efea89d306790a LICENSES/README.md
sha256 0b7f5dcb3d2c28ff78d999786028930e762df0baa2f52955782e378ec5b636a8 LICENSES/BSD-2-Clause-Views
diff --git a/package/kodi-inputstream-adaptive/kodi-inputstream-adaptive.mk b/package/kodi-inputstream-adaptive/kodi-inputstream-adaptive.mk
index ba4f6de61a..e1fe3f37ed 100644
--- a/package/kodi-inputstream-adaptive/kodi-inputstream-adaptive.mk
+++ b/package/kodi-inputstream-adaptive/kodi-inputstream-adaptive.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_INPUTSTREAM_ADAPTIVE_VERSION = 20.3.17-Nexus
+KODI_INPUTSTREAM_ADAPTIVE_VERSION = 21.4.4-Omega
KODI_INPUTSTREAM_ADAPTIVE_SITE = $(call github,xbmc,inputstream.adaptive,$(KODI_INPUTSTREAM_ADAPTIVE_VERSION))
KODI_INPUTSTREAM_ADAPTIVE_LICENSE = \
BSD-2-Clause-Views \
@@ -22,6 +22,6 @@ KODI_INPUTSTREAM_ADAPTIVE_LICENSE_FILES = \
LICENSES/GPL-2.0-or-later \
LICENSES/RSA-MD
-KODI_INPUTSTREAM_ADAPTIVE_DEPENDENCIES = bento4 expat kodi
+KODI_INPUTSTREAM_ADAPTIVE_DEPENDENCIES = bento4 kodi pugixml
$(eval $(cmake-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* [Buildroot] [PATCH v2 12/20] package/kodi-inputstream-ffmpegdirect: bump version to 21.3.5-Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (10 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 11/20] package/kodi-inputstream-adaptive: bump version to 21.4.4-Omega Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 13/20] package/kodi-inputstream-rtmp: bump version to 21.1.0-Omega Bernd Kuhls
` (10 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Removed patch which is included in upstream release.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
...de-missing-cstdint-to-support-gcc-13.patch | 49 -------------------
.../kodi-inputstream-ffmpegdirect.hash | 2 +-
.../kodi-inputstream-ffmpegdirect.mk | 2 +-
3 files changed, 2 insertions(+), 51 deletions(-)
delete mode 100644 package/kodi-inputstream-ffmpegdirect/0001-include-missing-cstdint-to-support-gcc-13.patch
diff --git a/package/kodi-inputstream-ffmpegdirect/0001-include-missing-cstdint-to-support-gcc-13.patch b/package/kodi-inputstream-ffmpegdirect/0001-include-missing-cstdint-to-support-gcc-13.patch
deleted file mode 100644
index 65db2b4702..0000000000
--- a/package/kodi-inputstream-ffmpegdirect/0001-include-missing-cstdint-to-support-gcc-13.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From fd7bd5ad86fd0006ad571a051fa5d5603a47e4b4 Mon Sep 17 00:00:00 2001
-From: Rudi Heitbaum <rudi@heitbaum.com>
-Date: Wed, 26 Apr 2023 17:15:00 +0000
-Subject: [PATCH] include missing <cstdint> to support gcc-13
-
-gcc 13 moved some includes around and as a result <cstdint> is no longer transitively
-included [1]. Explicitly include it for uint{32,64}_t.
-
-[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
-
-Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com>
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
-Upstream: https://github.com/xbmc/inputstream.ffmpegdirect/commit/fd7bd5ad86fd0006ad571a051fa5d5603a47e4b4
----
- src/utils/DiskUtils.h | 1 +
- src/utils/HttpProxy.h | 3 ++-
- 2 files changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/src/utils/DiskUtils.h b/src/utils/DiskUtils.h
-index 79e34268..f900ec58 100644
---- a/src/utils/DiskUtils.h
-+++ b/src/utils/DiskUtils.h
-@@ -7,6 +7,7 @@
-
- #pragma once
-
-+#include <cstdint>
- #include <string>
-
- namespace ffmpegdirect
-diff --git a/src/utils/HttpProxy.h b/src/utils/HttpProxy.h
-index eb0c99cb..d203ce36 100644
---- a/src/utils/HttpProxy.h
-+++ b/src/utils/HttpProxy.h
-@@ -7,6 +7,7 @@
-
- #pragma once
-
-+#include <cstdint>
- #include <string>
-
- namespace ffmpegdirect
-@@ -36,4 +37,4 @@ namespace ffmpegdirect
- std::string m_user;
- std::string m_password;
- };
--} //namespace ffmpegdirect
-\ No newline at end of file
-+} //namespace ffmpegdirect
diff --git a/package/kodi-inputstream-ffmpegdirect/kodi-inputstream-ffmpegdirect.hash b/package/kodi-inputstream-ffmpegdirect/kodi-inputstream-ffmpegdirect.hash
index 7dbcee6585..536bdc7031 100644
--- a/package/kodi-inputstream-ffmpegdirect/kodi-inputstream-ffmpegdirect.hash
+++ b/package/kodi-inputstream-ffmpegdirect/kodi-inputstream-ffmpegdirect.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 a849b6b4d5ce740ec3552d244acc4c7a4d64792358428f5154236052473d5734 kodi-inputstream-ffmpegdirect-20.5.0-Nexus.tar.gz
+sha256 b28ccbd489d9b69779fd818ee158f69ebd6fd85b1f0410ffc8098ff0c8665bdc kodi-inputstream-ffmpegdirect-21.3.5-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-inputstream-ffmpegdirect/kodi-inputstream-ffmpegdirect.mk b/package/kodi-inputstream-ffmpegdirect/kodi-inputstream-ffmpegdirect.mk
index ff66f13e14..d9d46ed768 100644
--- a/package/kodi-inputstream-ffmpegdirect/kodi-inputstream-ffmpegdirect.mk
+++ b/package/kodi-inputstream-ffmpegdirect/kodi-inputstream-ffmpegdirect.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_INPUTSTREAM_FFMPEGDIRECT_VERSION = 20.5.0-Nexus
+KODI_INPUTSTREAM_FFMPEGDIRECT_VERSION = 21.3.5-Omega
KODI_INPUTSTREAM_FFMPEGDIRECT_SITE = $(call github,xbmc,inputstream.ffmpegdirect,$(KODI_INPUTSTREAM_FFMPEGDIRECT_VERSION))
KODI_INPUTSTREAM_FFMPEGDIRECT_LICENSE = GPL-2.0+
KODI_INPUTSTREAM_FFMPEGDIRECT_LICENSE_FILES = LICENSE.md
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* [Buildroot] [PATCH v2 13/20] package/kodi-inputstream-rtmp: bump version to 21.1.0-Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (11 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 12/20] package/kodi-inputstream-ffmpegdirect: bump version to 21.3.5-Omega Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 14/20] package/kodi-peripheral-*: mass version bump to Omega Bernd Kuhls
` (9 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.hash | 2 +-
package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.hash b/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.hash
index affe8b5171..7a86e54048 100644
--- a/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.hash
+++ b/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 6a6129dca822e1447c0945ddf9cc6dbff1203dab313395d27efb4669a0ef3370 kodi-inputstream-rtmp-20.3.0-Nexus.tar.gz
+sha256 193fabb14cd9d92baecf7319c50ba183bc6254385bf187fe2a726159134df2a9 kodi-inputstream-rtmp-21.1.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.mk b/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.mk
index f496fd3881..5c09144e71 100644
--- a/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.mk
+++ b/package/kodi-inputstream-rtmp/kodi-inputstream-rtmp.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_INPUTSTREAM_RTMP_VERSION = 20.3.0-Nexus
+KODI_INPUTSTREAM_RTMP_VERSION = 21.1.0-Omega
KODI_INPUTSTREAM_RTMP_SITE = $(call github,xbmc,inputstream.rtmp,$(KODI_INPUTSTREAM_RTMP_VERSION))
KODI_INPUTSTREAM_RTMP_LICENSE = GPL-2.0+
KODI_INPUTSTREAM_RTMP_LICENSE_FILES = LICENSE.md
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* [Buildroot] [PATCH v2 14/20] package/kodi-peripheral-*: mass version bump to Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (12 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 13/20] package/kodi-inputstream-rtmp: bump version to 21.1.0-Omega Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 15/20] package/kodi-pvr-*: " Bernd Kuhls
` (8 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/kodi-peripheral-joystick/kodi-peripheral-joystick.hash | 2 +-
package/kodi-peripheral-joystick/kodi-peripheral-joystick.mk | 2 +-
package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.hash | 2 +-
package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.mk | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/kodi-peripheral-joystick/kodi-peripheral-joystick.hash b/package/kodi-peripheral-joystick/kodi-peripheral-joystick.hash
index d4765d2b2c..a192ec62b5 100644
--- a/package/kodi-peripheral-joystick/kodi-peripheral-joystick.hash
+++ b/package/kodi-peripheral-joystick/kodi-peripheral-joystick.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 7292431b26e3ea969967a02f42ce48cae7742398b148ca041470c17934d06272 kodi-peripheral-joystick-20.1.15-Nexus.tar.gz
+sha256 7a06470ba417758126fcb39701b95d0ae51a51951b68a2985d6ba444ab3e9106 kodi-peripheral-joystick-21.1.11-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-peripheral-joystick/kodi-peripheral-joystick.mk b/package/kodi-peripheral-joystick/kodi-peripheral-joystick.mk
index d81962562c..354932fd99 100644
--- a/package/kodi-peripheral-joystick/kodi-peripheral-joystick.mk
+++ b/package/kodi-peripheral-joystick/kodi-peripheral-joystick.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PERIPHERAL_JOYSTICK_VERSION = 20.1.15-Nexus
+KODI_PERIPHERAL_JOYSTICK_VERSION = 21.1.11-Omega
KODI_PERIPHERAL_JOYSTICK_SITE = $(call github,xbmc,peripheral.joystick,$(KODI_PERIPHERAL_JOYSTICK_VERSION))
KODI_PERIPHERAL_JOYSTICK_LICENSE = GPL-2.0+
KODI_PERIPHERAL_JOYSTICK_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.hash b/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.hash
index 1d9579615b..5e960f2f46 100644
--- a/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.hash
+++ b/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 e6be386ebba44e214b91784ba6e1560020daac82024c18bea7be4719340b12bd kodi-peripheral-xarcade-20.1.3-Nexus.tar.gz
+sha256 56f5e976c53f6911ce4179126807da82d8fec1ead092c2add1d97e48e3468d8a kodi-peripheral-xarcade-21.0.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.mk b/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.mk
index 3af3f2f4ff..3c89f0bb79 100644
--- a/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.mk
+++ b/package/kodi-peripheral-xarcade/kodi-peripheral-xarcade.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PERIPHERAL_XARCADE_VERSION = 20.1.3-Nexus
+KODI_PERIPHERAL_XARCADE_VERSION = 21.0.0-Omega
KODI_PERIPHERAL_XARCADE_SITE = $(call github,kodi-game,peripheral.xarcade,$(KODI_PERIPHERAL_XARCADE_VERSION))
KODI_PERIPHERAL_XARCADE_LICENSE = GPL-2.0+
KODI_PERIPHERAL_XARCADE_LICENSE_FILES = LICENSE.md
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* [Buildroot] [PATCH v2 15/20] package/kodi-pvr-*: mass version bump to Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (13 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 14/20] package/kodi-peripheral-*: mass version bump to Omega Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 16/20] package/kodi-screensaver-*: " Bernd Kuhls
` (7 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/kodi-pvr-argustv/kodi-pvr-argustv.hash | 2 +-
package/kodi-pvr-argustv/kodi-pvr-argustv.mk | 2 +-
package/kodi-pvr-dvblink/kodi-pvr-dvblink.hash | 2 +-
package/kodi-pvr-dvblink/kodi-pvr-dvblink.mk | 2 +-
package/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer.hash | 2 +-
package/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer.mk | 2 +-
package/kodi-pvr-filmon/kodi-pvr-filmon.hash | 2 +-
package/kodi-pvr-filmon/kodi-pvr-filmon.mk | 2 +-
package/kodi-pvr-hdhomerun/kodi-pvr-hdhomerun.hash | 2 +-
package/kodi-pvr-hdhomerun/kodi-pvr-hdhomerun.mk | 2 +-
package/kodi-pvr-hts/kodi-pvr-hts.hash | 2 +-
package/kodi-pvr-hts/kodi-pvr-hts.mk | 2 +-
package/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple.hash | 2 +-
package/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple.mk | 2 +-
.../kodi-pvr-mediaportal-tvserver.hash | 2 +-
.../kodi-pvr-mediaportal-tvserver.mk | 2 +-
package/kodi-pvr-mythtv/kodi-pvr-mythtv.hash | 2 +-
package/kodi-pvr-mythtv/kodi-pvr-mythtv.mk | 2 +-
package/kodi-pvr-nextpvr/kodi-pvr-nextpvr.hash | 2 +-
package/kodi-pvr-nextpvr/kodi-pvr-nextpvr.mk | 2 +-
package/kodi-pvr-njoy/kodi-pvr-njoy.hash | 2 +-
package/kodi-pvr-njoy/kodi-pvr-njoy.mk | 2 +-
package/kodi-pvr-octonet/kodi-pvr-octonet.hash | 2 +-
package/kodi-pvr-octonet/kodi-pvr-octonet.mk | 2 +-
package/kodi-pvr-pctv/kodi-pvr-pctv.hash | 2 +-
package/kodi-pvr-pctv/kodi-pvr-pctv.mk | 2 +-
package/kodi-pvr-plutotv/kodi-pvr-plutotv.hash | 2 +-
package/kodi-pvr-plutotv/kodi-pvr-plutotv.mk | 2 +-
package/kodi-pvr-stalker/kodi-pvr-stalker.hash | 2 +-
package/kodi-pvr-stalker/kodi-pvr-stalker.mk | 2 +-
package/kodi-pvr-vbox/kodi-pvr-vbox.hash | 2 +-
package/kodi-pvr-vbox/kodi-pvr-vbox.mk | 2 +-
package/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi.hash | 2 +-
package/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi.mk | 2 +-
package/kodi-pvr-vuplus/kodi-pvr-vuplus.hash | 2 +-
package/kodi-pvr-vuplus/kodi-pvr-vuplus.mk | 2 +-
package/kodi-pvr-waipu/kodi-pvr-waipu.hash | 2 +-
package/kodi-pvr-waipu/kodi-pvr-waipu.mk | 2 +-
package/kodi-pvr-wmc/kodi-pvr-wmc.hash | 2 +-
package/kodi-pvr-wmc/kodi-pvr-wmc.mk | 2 +-
package/kodi-pvr-zattoo/kodi-pvr-zattoo.hash | 2 +-
package/kodi-pvr-zattoo/kodi-pvr-zattoo.mk | 2 +-
42 files changed, 42 insertions(+), 42 deletions(-)
diff --git a/package/kodi-pvr-argustv/kodi-pvr-argustv.hash b/package/kodi-pvr-argustv/kodi-pvr-argustv.hash
index e2f73c70c4..604b77c5e3 100644
--- a/package/kodi-pvr-argustv/kodi-pvr-argustv.hash
+++ b/package/kodi-pvr-argustv/kodi-pvr-argustv.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 c4b18a0abf4ba0a797509d79c4291c4e69589a6482c6ec85f5d9bdae63ea3f35 kodi-pvr-argustv-20.5.0-Nexus.tar.gz
+sha256 61aef981183c1e834b5a3d69fc02b7db5081b6996d7c0a1667d18eb02f655fd0 kodi-pvr-argustv-21.0.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-argustv/kodi-pvr-argustv.mk b/package/kodi-pvr-argustv/kodi-pvr-argustv.mk
index fac90dfeb6..582300afb9 100644
--- a/package/kodi-pvr-argustv/kodi-pvr-argustv.mk
+++ b/package/kodi-pvr-argustv/kodi-pvr-argustv.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_ARGUSTV_VERSION = 20.5.0-Nexus
+KODI_PVR_ARGUSTV_VERSION = 21.0.0-Omega
KODI_PVR_ARGUSTV_SITE = $(call github,kodi-pvr,pvr.argustv,$(KODI_PVR_ARGUSTV_VERSION))
KODI_PVR_ARGUSTV_LICENSE = GPL-2.0+
KODI_PVR_ARGUSTV_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-dvblink/kodi-pvr-dvblink.hash b/package/kodi-pvr-dvblink/kodi-pvr-dvblink.hash
index 9d914fdbf2..b5ffa066d1 100644
--- a/package/kodi-pvr-dvblink/kodi-pvr-dvblink.hash
+++ b/package/kodi-pvr-dvblink/kodi-pvr-dvblink.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 71a9fa64bdf7d784afc28f8b686fcdc00d9fea536c2aad1464e76e3b7648ed41 kodi-pvr-dvblink-20.3.0-Nexus.tar.gz
+sha256 30d2c7087931bfe040a0f859a0c8b2bd20a71a1e5496a95eab055b7b3167df64 kodi-pvr-dvblink-21.1.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-dvblink/kodi-pvr-dvblink.mk b/package/kodi-pvr-dvblink/kodi-pvr-dvblink.mk
index 8c0b178f75..d5146dbbaa 100644
--- a/package/kodi-pvr-dvblink/kodi-pvr-dvblink.mk
+++ b/package/kodi-pvr-dvblink/kodi-pvr-dvblink.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_DVBLINK_VERSION = 20.3.0-Nexus
+KODI_PVR_DVBLINK_VERSION = 21.1.0-Omega
KODI_PVR_DVBLINK_SITE = $(call github,kodi-pvr,pvr.dvblink,$(KODI_PVR_DVBLINK_VERSION))
KODI_PVR_DVBLINK_LICENSE = GPL-2.0+
KODI_PVR_DVBLINK_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer.hash b/package/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer.hash
index 516366d7b2..775942a5c8 100644
--- a/package/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer.hash
+++ b/package/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 dc79db0486c7ef75b4b23c4dfe94115cb12e1903c3700ef4eef04fc517fcd039 kodi-pvr-dvbviewer-20.4.0-Nexus.tar.gz
+sha256 92ac2f2c28f109320c152173b1d814af93d7da8e1c3df19f57f56dce1706818c kodi-pvr-dvbviewer-21.1.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer.mk b/package/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer.mk
index 914de3c72d..119e3fe0a2 100644
--- a/package/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer.mk
+++ b/package/kodi-pvr-dvbviewer/kodi-pvr-dvbviewer.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_DVBVIEWER_VERSION = 20.4.0-Nexus
+KODI_PVR_DVBVIEWER_VERSION = 21.1.0-Omega
KODI_PVR_DVBVIEWER_SITE = $(call github,kodi-pvr,pvr.dvbviewer,$(KODI_PVR_DVBVIEWER_VERSION))
KODI_PVR_DVBVIEWER_LICENSE = GPL-2.0+
KODI_PVR_DVBVIEWER_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-filmon/kodi-pvr-filmon.hash b/package/kodi-pvr-filmon/kodi-pvr-filmon.hash
index 7a4d5d3364..d606962ff3 100644
--- a/package/kodi-pvr-filmon/kodi-pvr-filmon.hash
+++ b/package/kodi-pvr-filmon/kodi-pvr-filmon.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 dfd2a7b64d2b647ba3f7bfba05676a593c3284e2298becfed68b82e441a69b33 kodi-pvr-filmon-20.3.0-Nexus.tar.gz
+sha256 ba3f0c6f2b46c6b45750e2148a932279c76bb7a1b49eb3299a19817fef3f6b2d kodi-pvr-filmon-21.0.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-filmon/kodi-pvr-filmon.mk b/package/kodi-pvr-filmon/kodi-pvr-filmon.mk
index 50dad3c47f..268e9fad4b 100644
--- a/package/kodi-pvr-filmon/kodi-pvr-filmon.mk
+++ b/package/kodi-pvr-filmon/kodi-pvr-filmon.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_FILMON_VERSION = 20.3.0-Nexus
+KODI_PVR_FILMON_VERSION = 21.0.0-Omega
KODI_PVR_FILMON_SITE = $(call github,kodi-pvr,pvr.filmon,$(KODI_PVR_FILMON_VERSION))
KODI_PVR_FILMON_LICENSE = GPL-2.0+
KODI_PVR_FILMON_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-hdhomerun/kodi-pvr-hdhomerun.hash b/package/kodi-pvr-hdhomerun/kodi-pvr-hdhomerun.hash
index 3bcfa23593..8f24eb7158 100644
--- a/package/kodi-pvr-hdhomerun/kodi-pvr-hdhomerun.hash
+++ b/package/kodi-pvr-hdhomerun/kodi-pvr-hdhomerun.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 3872265e00fc748ba327aaa91beece747936f55d16356051cdd04b0b70a353c0 kodi-pvr-hdhomerun-20.4.0-Nexus.tar.gz
+sha256 3adbb5da035d714ccdfe9fa08185487fc218dd14464dc3b8242254a852ac1f8a kodi-pvr-hdhomerun-21.0.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-hdhomerun/kodi-pvr-hdhomerun.mk b/package/kodi-pvr-hdhomerun/kodi-pvr-hdhomerun.mk
index cc6e097efa..e384480f80 100644
--- a/package/kodi-pvr-hdhomerun/kodi-pvr-hdhomerun.mk
+++ b/package/kodi-pvr-hdhomerun/kodi-pvr-hdhomerun.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_HDHOMERUN_VERSION = 20.4.0-Nexus
+KODI_PVR_HDHOMERUN_VERSION = 21.0.0-Omega
KODI_PVR_HDHOMERUN_SITE = $(call github,kodi-pvr,pvr.hdhomerun,$(KODI_PVR_HDHOMERUN_VERSION))
KODI_PVR_HDHOMERUN_LICENSE = GPL-2.0+
KODI_PVR_HDHOMERUN_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-hts/kodi-pvr-hts.hash b/package/kodi-pvr-hts/kodi-pvr-hts.hash
index 2a59b7bbe5..91b7b00f1a 100644
--- a/package/kodi-pvr-hts/kodi-pvr-hts.hash
+++ b/package/kodi-pvr-hts/kodi-pvr-hts.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 244cfc1488aa0c51465af411f3df8884b4a571a08acfa20ac9defdb8ef49022e kodi-pvr-hts-20.7.2-Nexus.tar.gz
+sha256 b2694803be78ee65d1ac8c02ae6631ec9798e5a70906b29c610018f9f33bf7fa kodi-pvr-hts-21.2.1-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-hts/kodi-pvr-hts.mk b/package/kodi-pvr-hts/kodi-pvr-hts.mk
index ebc31ddbdf..c67118b428 100644
--- a/package/kodi-pvr-hts/kodi-pvr-hts.mk
+++ b/package/kodi-pvr-hts/kodi-pvr-hts.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_HTS_VERSION = 20.7.2-Nexus
+KODI_PVR_HTS_VERSION = 21.2.1-Omega
KODI_PVR_HTS_SITE = $(call github,kodi-pvr,pvr.hts,$(KODI_PVR_HTS_VERSION))
KODI_PVR_HTS_LICENSE = GPL-2.0+
KODI_PVR_HTS_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple.hash b/package/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple.hash
index fa316b084a..784775388d 100644
--- a/package/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple.hash
+++ b/package/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 9edf800d7d5e755c92e9e8f6d3771a74cf3fec23b3aaec5b8535f1a579941a5b kodi-pvr-iptvsimple-20.13.0-Nexus.tar.gz
+sha256 52108d15f8eaa58d7cd6d87947615758ffebcbf87a00090e71384cff4e59d25d kodi-pvr-iptvsimple-21.8.3-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple.mk b/package/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple.mk
index eada2c63a5..5726ba66ed 100644
--- a/package/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple.mk
+++ b/package/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_IPTVSIMPLE_VERSION = 20.13.0-Nexus
+KODI_PVR_IPTVSIMPLE_VERSION = 21.8.3-Omega
KODI_PVR_IPTVSIMPLE_SITE = $(call github,kodi-pvr,pvr.iptvsimple,$(KODI_PVR_IPTVSIMPLE_VERSION))
KODI_PVR_IPTVSIMPLE_LICENSE = GPL-2.0+
KODI_PVR_IPTVSIMPLE_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver.hash b/package/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver.hash
index 37489de7dc..5ede84083d 100644
--- a/package/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver.hash
+++ b/package/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 a61efdadb56c65e081f8b2e99f2d5b32b3c932ca1954243548710be57c8b70b8 kodi-pvr-mediaportal-tvserver-20.3.0-Nexus.tar.gz
+sha256 a0034ffcfb42ce4bc8dbd49c5ef354caa7f41e6e061d1a7f3c42618053ebb469 kodi-pvr-mediaportal-tvserver-21.0.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver.mk b/package/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver.mk
index dfc7c2873b..01c1e38607 100644
--- a/package/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver.mk
+++ b/package/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_MEDIAPORTAL_TVSERVER_VERSION = 20.3.0-Nexus
+KODI_PVR_MEDIAPORTAL_TVSERVER_VERSION = 21.0.0-Omega
KODI_PVR_MEDIAPORTAL_TVSERVER_SITE = $(call github,kodi-pvr,pvr.mediaportal.tvserver,$(KODI_PVR_MEDIAPORTAL_TVSERVER_VERSION))
KODI_PVR_MEDIAPORTAL_TVSERVER_LICENSE = GPL-2.0+
KODI_PVR_MEDIAPORTAL_TVSERVER_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-mythtv/kodi-pvr-mythtv.hash b/package/kodi-pvr-mythtv/kodi-pvr-mythtv.hash
index ff3d0f05b7..7095eaf81c 100644
--- a/package/kodi-pvr-mythtv/kodi-pvr-mythtv.hash
+++ b/package/kodi-pvr-mythtv/kodi-pvr-mythtv.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 32196265ee5b78bb97e0bd8e633778f4566e95d54df96e4577764e5d3681fcf1 kodi-pvr-mythtv-20.6.9-Nexus.tar.gz
+sha256 3f1d826e11da10a600dd4de0bfd279a0c583aeae387832c6f9f06bb8befbb811 kodi-pvr-mythtv-21.1.8-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-mythtv/kodi-pvr-mythtv.mk b/package/kodi-pvr-mythtv/kodi-pvr-mythtv.mk
index a3a5678651..597e8018f6 100644
--- a/package/kodi-pvr-mythtv/kodi-pvr-mythtv.mk
+++ b/package/kodi-pvr-mythtv/kodi-pvr-mythtv.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_MYTHTV_VERSION = 20.6.9-Nexus
+KODI_PVR_MYTHTV_VERSION = 21.1.8-Omega
KODI_PVR_MYTHTV_SITE = $(call github,janbar,pvr.mythtv,$(KODI_PVR_MYTHTV_VERSION))
KODI_PVR_MYTHTV_LICENSE = GPL-2.0+
KODI_PVR_MYTHTV_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-nextpvr/kodi-pvr-nextpvr.hash b/package/kodi-pvr-nextpvr/kodi-pvr-nextpvr.hash
index dcbc504a23..0c4ca8fcd0 100644
--- a/package/kodi-pvr-nextpvr/kodi-pvr-nextpvr.hash
+++ b/package/kodi-pvr-nextpvr/kodi-pvr-nextpvr.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 752dff532a277797f3fefc1ced7fea6efb8d92982d9040c4080c1e6dbab203a0 kodi-pvr-nextpvr-20.4.3-Nexus.tar.gz
+sha256 394ccca4c428e71e18cda4debc14d7eba2b4cc098a290a593ffa76a76c55fc90 kodi-pvr-nextpvr-21.0.2-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-nextpvr/kodi-pvr-nextpvr.mk b/package/kodi-pvr-nextpvr/kodi-pvr-nextpvr.mk
index e89aed7d0a..f3d615f39b 100644
--- a/package/kodi-pvr-nextpvr/kodi-pvr-nextpvr.mk
+++ b/package/kodi-pvr-nextpvr/kodi-pvr-nextpvr.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_NEXTPVR_VERSION = 20.4.3-Nexus
+KODI_PVR_NEXTPVR_VERSION = 21.0.2-Omega
KODI_PVR_NEXTPVR_SITE = $(call github,kodi-pvr,pvr.nextpvr,$(KODI_PVR_NEXTPVR_VERSION))
KODI_PVR_NEXTPVR_LICENSE = GPL-2.0+
KODI_PVR_NEXTPVR_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-njoy/kodi-pvr-njoy.hash b/package/kodi-pvr-njoy/kodi-pvr-njoy.hash
index bb7f4218cf..b0fc808aee 100644
--- a/package/kodi-pvr-njoy/kodi-pvr-njoy.hash
+++ b/package/kodi-pvr-njoy/kodi-pvr-njoy.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 0e8dc8ddce7830878c816da0836bdf5558c0dd388c48019012735a518eeefb04 kodi-pvr-njoy-20.3.0-Nexus.tar.gz
+sha256 0c570cebbb117bb0ef93692d653782608b332fc2b4b6d1728b5421ccd1457f72 kodi-pvr-njoy-21.0.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-njoy/kodi-pvr-njoy.mk b/package/kodi-pvr-njoy/kodi-pvr-njoy.mk
index d0cfc006d7..47aa357b11 100644
--- a/package/kodi-pvr-njoy/kodi-pvr-njoy.mk
+++ b/package/kodi-pvr-njoy/kodi-pvr-njoy.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_NJOY_VERSION = 20.3.0-Nexus
+KODI_PVR_NJOY_VERSION = 21.0.0-Omega
KODI_PVR_NJOY_SITE = $(call github,kodi-pvr,pvr.njoy,$(KODI_PVR_NJOY_VERSION))
KODI_PVR_NJOY_LICENSE = GPL-2.0+
KODI_PVR_NJOY_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-octonet/kodi-pvr-octonet.hash b/package/kodi-pvr-octonet/kodi-pvr-octonet.hash
index 2342f0c836..8262476abd 100644
--- a/package/kodi-pvr-octonet/kodi-pvr-octonet.hash
+++ b/package/kodi-pvr-octonet/kodi-pvr-octonet.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 cc83ada3b3d1dbf3d42fa41f2b221c640cdc9fd505a1c76e7b479f99fe1ec8c5 kodi-pvr-octonet-20.3.0-Nexus.tar.gz
+sha256 88d1df996154b1ae08e7c45c78ede3985aef2e3df2c7c3b2958fa3f3c5e241c9 kodi-pvr-octonet-21.0.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-octonet/kodi-pvr-octonet.mk b/package/kodi-pvr-octonet/kodi-pvr-octonet.mk
index 84950d2514..938f0721e6 100644
--- a/package/kodi-pvr-octonet/kodi-pvr-octonet.mk
+++ b/package/kodi-pvr-octonet/kodi-pvr-octonet.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_OCTONET_VERSION = 20.3.0-Nexus
+KODI_PVR_OCTONET_VERSION = 21.0.0-Omega
KODI_PVR_OCTONET_SITE = $(call github,DigitalDevices,pvr.octonet,$(KODI_PVR_OCTONET_VERSION))
KODI_PVR_OCTONET_LICENSE = GPL-2.0+
KODI_PVR_OCTONET_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-pctv/kodi-pvr-pctv.hash b/package/kodi-pvr-pctv/kodi-pvr-pctv.hash
index d0c340fe78..a0c6a49e73 100644
--- a/package/kodi-pvr-pctv/kodi-pvr-pctv.hash
+++ b/package/kodi-pvr-pctv/kodi-pvr-pctv.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 c99d3ef085c4900e0c03e5e37047dc136efced78ed245d07bc286468a31e8a65 kodi-pvr-pctv-20.4.0-Nexus.tar.gz
+sha256 671dc89b33d4be8b895d44f74856f8ec49cf8cd174f9f7e502b5a5a6951658d6 kodi-pvr-pctv-21.0.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-pctv/kodi-pvr-pctv.mk b/package/kodi-pvr-pctv/kodi-pvr-pctv.mk
index 4ae7bd0bc6..82da3a70f8 100644
--- a/package/kodi-pvr-pctv/kodi-pvr-pctv.mk
+++ b/package/kodi-pvr-pctv/kodi-pvr-pctv.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_PCTV_VERSION = 20.4.0-Nexus
+KODI_PVR_PCTV_VERSION = 21.0.0-Omega
KODI_PVR_PCTV_SITE = $(call github,kodi-pvr,pvr.pctv,$(KODI_PVR_PCTV_VERSION))
KODI_PVR_PCTV_LICENSE = GPL-2.0+
KODI_PVR_PCTV_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-plutotv/kodi-pvr-plutotv.hash b/package/kodi-pvr-plutotv/kodi-pvr-plutotv.hash
index 162905218c..199777c255 100644
--- a/package/kodi-pvr-plutotv/kodi-pvr-plutotv.hash
+++ b/package/kodi-pvr-plutotv/kodi-pvr-plutotv.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 7bccc0001acb796aa706f8a1bcce2661fcb67a7f346420c691ee0461ab5aace8 kodi-pvr-plutotv-20.3.2-Nexus.tar.gz
+sha256 4503cbed48aefa06470a970d7030d67cbdc7236cabd8de15df4a3681827b32e7 kodi-pvr-plutotv-21.1.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-plutotv/kodi-pvr-plutotv.mk b/package/kodi-pvr-plutotv/kodi-pvr-plutotv.mk
index 8a47d8c265..e2a3a01116 100644
--- a/package/kodi-pvr-plutotv/kodi-pvr-plutotv.mk
+++ b/package/kodi-pvr-plutotv/kodi-pvr-plutotv.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_PLUTOTV_VERSION = 20.3.2-Nexus
+KODI_PVR_PLUTOTV_VERSION = 21.1.0-Omega
KODI_PVR_PLUTOTV_SITE = $(call github,kodi-pvr,pvr.plutotv,$(KODI_PVR_PLUTOTV_VERSION))
KODI_PVR_PLUTOTV_LICENSE = GPL-2.0+
KODI_PVR_PLUTOTV_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-stalker/kodi-pvr-stalker.hash b/package/kodi-pvr-stalker/kodi-pvr-stalker.hash
index ed8668b2c9..5944a9d06b 100644
--- a/package/kodi-pvr-stalker/kodi-pvr-stalker.hash
+++ b/package/kodi-pvr-stalker/kodi-pvr-stalker.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 8fdd4ab4cf28d7255550b4c351a397b7ce8eb1aa1f12e93bce7d61a951fbd6f3 kodi-pvr-stalker-20.3.1-Nexus.tar.gz
+sha256 a2cfe5e5acf186e368cd42bf811b217940685695be0e2689a299c80da7d217f4 kodi-pvr-stalker-21.0.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-stalker/kodi-pvr-stalker.mk b/package/kodi-pvr-stalker/kodi-pvr-stalker.mk
index 763f7054ad..14d9058e2a 100644
--- a/package/kodi-pvr-stalker/kodi-pvr-stalker.mk
+++ b/package/kodi-pvr-stalker/kodi-pvr-stalker.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_STALKER_VERSION = 20.3.1-Nexus
+KODI_PVR_STALKER_VERSION = 21.0.0-Omega
KODI_PVR_STALKER_SITE = $(call github,kodi-pvr,pvr.stalker,$(KODI_PVR_STALKER_VERSION))
KODI_PVR_STALKER_LICENSE = GPL-2.0+
KODI_PVR_STALKER_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-vbox/kodi-pvr-vbox.hash b/package/kodi-pvr-vbox/kodi-pvr-vbox.hash
index 1aff2dd985..a4fc6f48d2 100644
--- a/package/kodi-pvr-vbox/kodi-pvr-vbox.hash
+++ b/package/kodi-pvr-vbox/kodi-pvr-vbox.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 04c50eba71426f062339491e7567545ec8c910b17c7055b28285eab14f26ca6f kodi-pvr-vbox-20.4.2-Nexus.tar.gz
+sha256 6909016c3d89b5eddae5098b033e0cce1ea3140e05b4175e1c50611add7ab408 kodi-pvr-vbox-21.1.2-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-vbox/kodi-pvr-vbox.mk b/package/kodi-pvr-vbox/kodi-pvr-vbox.mk
index e5e86274fc..5da40d13f1 100644
--- a/package/kodi-pvr-vbox/kodi-pvr-vbox.mk
+++ b/package/kodi-pvr-vbox/kodi-pvr-vbox.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_VBOX_VERSION = 20.4.2-Nexus
+KODI_PVR_VBOX_VERSION = 21.1.2-Omega
KODI_PVR_VBOX_SITE = $(call github,kodi-pvr,pvr.vbox,$(KODI_PVR_VBOX_VERSION))
KODI_PVR_VBOX_LICENSE = GPL-2.0+
KODI_PVR_VBOX_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi.hash b/package/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi.hash
index 64ecb17b14..5742851593 100644
--- a/package/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi.hash
+++ b/package/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 f26e2a9f1e9d83c5b44a8875b1f9cd37a0dbe59faf08002f083a4db95c9f84e0 kodi-pvr-vdr-vnsi-20.4.1-Nexus.tar.gz
+sha256 5c7317814d18439a36b6dc45e964aa13724ac19b46344d0d9196356f7c42921c kodi-pvr-vdr-vnsi-21.1.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi.mk b/package/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi.mk
index 02a2e2e456..b90c128404 100644
--- a/package/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi.mk
+++ b/package/kodi-pvr-vdr-vnsi/kodi-pvr-vdr-vnsi.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_VDR_VNSI_VERSION = 20.4.1-Nexus
+KODI_PVR_VDR_VNSI_VERSION = 21.1.0-Omega
KODI_PVR_VDR_VNSI_SITE = $(call github,kodi-pvr,pvr.vdr.vnsi,$(KODI_PVR_VDR_VNSI_VERSION))
KODI_PVR_VDR_VNSI_LICENSE = GPL-2.0+
KODI_PVR_VDR_VNSI_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-vuplus/kodi-pvr-vuplus.hash b/package/kodi-pvr-vuplus/kodi-pvr-vuplus.hash
index 7f051071f1..46a0e6c471 100644
--- a/package/kodi-pvr-vuplus/kodi-pvr-vuplus.hash
+++ b/package/kodi-pvr-vuplus/kodi-pvr-vuplus.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 467363d7015d426f05fac3f514222d7ec03aa4b61a0935fd7f00e95e9c443514 kodi-pvr-vuplus-20.5.1-Nexus.tar.gz
+sha256 f9bd295fda0c21f60989440dfa74ebaf386f5264bf7a045f6c7cc9fd012e7907 kodi-pvr-vuplus-21.1.1-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-vuplus/kodi-pvr-vuplus.mk b/package/kodi-pvr-vuplus/kodi-pvr-vuplus.mk
index 80b57f2510..b6d2c6b5d5 100644
--- a/package/kodi-pvr-vuplus/kodi-pvr-vuplus.mk
+++ b/package/kodi-pvr-vuplus/kodi-pvr-vuplus.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_VUPLUS_VERSION = 20.5.1-Nexus
+KODI_PVR_VUPLUS_VERSION = 21.1.1-Omega
KODI_PVR_VUPLUS_SITE = $(call github,kodi-pvr,pvr.vuplus,$(KODI_PVR_VUPLUS_VERSION))
KODI_PVR_VUPLUS_LICENSE = GPL-2.0+
KODI_PVR_VUPLUS_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-waipu/kodi-pvr-waipu.hash b/package/kodi-pvr-waipu/kodi-pvr-waipu.hash
index e0b4dc482c..6f9d521601 100644
--- a/package/kodi-pvr-waipu/kodi-pvr-waipu.hash
+++ b/package/kodi-pvr-waipu/kodi-pvr-waipu.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 f43a7ac762b2c8bb7c2a66dc7d2a577fad92119bb4418867ce22369b96b18f8c kodi-pvr-waipu-20.11.0-Nexus.tar.gz
+sha256 c595fa830f56b265a94de5a33dd50bdd8ae068ebe0797dd15220ba52adf04fda kodi-pvr-waipu-21.5.0-Omega.tar.gz
sha256 4202d4fb329f58c83ba921b56d7071e37f7df3f15b3820a3a04ef8eee49f54d2 pvr.waipu/LICENSE.txt
diff --git a/package/kodi-pvr-waipu/kodi-pvr-waipu.mk b/package/kodi-pvr-waipu/kodi-pvr-waipu.mk
index 02614552f0..d82f8f7a2f 100644
--- a/package/kodi-pvr-waipu/kodi-pvr-waipu.mk
+++ b/package/kodi-pvr-waipu/kodi-pvr-waipu.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_WAIPU_VERSION = 20.11.0-Nexus
+KODI_PVR_WAIPU_VERSION = 21.5.0-Omega
KODI_PVR_WAIPU_SITE = $(call github,flubshi,pvr.waipu,$(KODI_PVR_WAIPU_VERSION))
KODI_PVR_WAIPU_LICENSE = GPL-2.0+
KODI_PVR_WAIPU_LICENSE_FILES = pvr.waipu/LICENSE.txt
diff --git a/package/kodi-pvr-wmc/kodi-pvr-wmc.hash b/package/kodi-pvr-wmc/kodi-pvr-wmc.hash
index 232750db33..a6bd5d5dcc 100644
--- a/package/kodi-pvr-wmc/kodi-pvr-wmc.hash
+++ b/package/kodi-pvr-wmc/kodi-pvr-wmc.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 f045d871789ef3d36e1a7c7361ea35be4e14a395e75446519e937be70d2433b4 kodi-pvr-wmc-20.3.0-Nexus.tar.gz
+sha256 40f86146d98b770d4f76b6ea9ce3c9a2942d99b81d49e06ef2ccfef5b1e4c160 kodi-pvr-wmc-21.0.0-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-wmc/kodi-pvr-wmc.mk b/package/kodi-pvr-wmc/kodi-pvr-wmc.mk
index fd96731764..9e601ecd16 100644
--- a/package/kodi-pvr-wmc/kodi-pvr-wmc.mk
+++ b/package/kodi-pvr-wmc/kodi-pvr-wmc.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_WMC_VERSION = 20.3.0-Nexus
+KODI_PVR_WMC_VERSION = 21.0.0-Omega
KODI_PVR_WMC_SITE = $(call github,kodi-pvr,pvr.wmc,$(KODI_PVR_WMC_VERSION))
KODI_PVR_WMC_LICENSE = GPL-2.0+
KODI_PVR_WMC_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-pvr-zattoo/kodi-pvr-zattoo.hash b/package/kodi-pvr-zattoo/kodi-pvr-zattoo.hash
index 86410df72a..acffc6a7ee 100644
--- a/package/kodi-pvr-zattoo/kodi-pvr-zattoo.hash
+++ b/package/kodi-pvr-zattoo/kodi-pvr-zattoo.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 b6f5205caede6aaf57c1eab8206c5a5b3aaa6b5d8bda862d983ca53150cdf14a kodi-pvr-zattoo-20.3.14-Nexus.tar.gz
+sha256 5908de86c038b3565d8b3a8d4578d4cac0d37287fc039808542b874d9fb2bffa kodi-pvr-zattoo-21.0.1-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-pvr-zattoo/kodi-pvr-zattoo.mk b/package/kodi-pvr-zattoo/kodi-pvr-zattoo.mk
index d97d940bdc..d764524fbb 100644
--- a/package/kodi-pvr-zattoo/kodi-pvr-zattoo.mk
+++ b/package/kodi-pvr-zattoo/kodi-pvr-zattoo.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_PVR_ZATTOO_VERSION = 20.3.14-Nexus
+KODI_PVR_ZATTOO_VERSION = 21.0.1-Omega
KODI_PVR_ZATTOO_SITE = $(call github,rbuehlma,pvr.zattoo,$(KODI_PVR_ZATTOO_VERSION))
KODI_PVR_ZATTOO_LICENSE = GPL-2.0+
KODI_PVR_ZATTOO_LICENSE_FILES = LICENSE.md
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* [Buildroot] [PATCH v2 16/20] package/kodi-screensaver-*: mass version bump to Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (14 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 15/20] package/kodi-pvr-*: " Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 17/20] package/kodi-skin-confluence: bump version Bernd Kuhls
` (6 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
.../kodi-screensaver-asteroids/kodi-screensaver-asteroids.hash | 2 +-
.../kodi-screensaver-asteroids/kodi-screensaver-asteroids.mk | 2 +-
.../kodi-screensaver-asterwave/kodi-screensaver-asterwave.hash | 2 +-
.../kodi-screensaver-asterwave/kodi-screensaver-asterwave.mk | 2 +-
.../kodi-screensaver-biogenesis.hash | 2 +-
.../kodi-screensaver-biogenesis/kodi-screensaver-biogenesis.mk | 2 +-
package/kodi-screensaver-cpblobs/kodi-screensaver-cpblobs.hash | 2 +-
package/kodi-screensaver-cpblobs/kodi-screensaver-cpblobs.mk | 2 +-
.../kodi-screensaver-greynetic/kodi-screensaver-greynetic.hash | 2 +-
.../kodi-screensaver-greynetic/kodi-screensaver-greynetic.mk | 2 +-
.../kodi-screensaver-matrixtrails.hash | 2 +-
.../kodi-screensaver-matrixtrails.mk | 2 +-
.../kodi-screensaver-pingpong/kodi-screensaver-pingpong.hash | 2 +-
package/kodi-screensaver-pingpong/kodi-screensaver-pingpong.mk | 2 +-
package/kodi-screensaver-pyro/kodi-screensaver-pyro.hash | 2 +-
package/kodi-screensaver-pyro/kodi-screensaver-pyro.mk | 2 +-
package/kodi-screensaver-rsxs/kodi-screensaver-rsxs.hash | 2 +-
package/kodi-screensaver-rsxs/kodi-screensaver-rsxs.mk | 2 +-
package/kodi-screensaver-stars/kodi-screensaver-stars.hash | 2 +-
package/kodi-screensaver-stars/kodi-screensaver-stars.mk | 2 +-
20 files changed, 20 insertions(+), 20 deletions(-)
diff --git a/package/kodi-screensaver-asteroids/kodi-screensaver-asteroids.hash b/package/kodi-screensaver-asteroids/kodi-screensaver-asteroids.hash
index 3f1163fe1b..a65f11402a 100644
--- a/package/kodi-screensaver-asteroids/kodi-screensaver-asteroids.hash
+++ b/package/kodi-screensaver-asteroids/kodi-screensaver-asteroids.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 492d826efa7a252ce62a1bebf075fe9b0c0cf452929f4cd6f228003f6e445b82 kodi-screensaver-asteroids-20.2.0-Nexus.tar.gz
+sha256 7644f9ad16e0f2ae9b4796cdc5cdd92761e835b5edb4f114311d2578c0aeffe6 kodi-screensaver-asteroids-9f761cb7d5842e61da9c608c9f58067bcb986d89.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-screensaver-asteroids/kodi-screensaver-asteroids.mk b/package/kodi-screensaver-asteroids/kodi-screensaver-asteroids.mk
index d91779610b..f96eb4e830 100644
--- a/package/kodi-screensaver-asteroids/kodi-screensaver-asteroids.mk
+++ b/package/kodi-screensaver-asteroids/kodi-screensaver-asteroids.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_SCREENSAVER_ASTEROIDS_VERSION = 20.2.0-Nexus
+KODI_SCREENSAVER_ASTEROIDS_VERSION = 9f761cb7d5842e61da9c608c9f58067bcb986d89
KODI_SCREENSAVER_ASTEROIDS_SITE = $(call github,xbmc,screensaver.asteroids,$(KODI_SCREENSAVER_ASTEROIDS_VERSION))
KODI_SCREENSAVER_ASTEROIDS_LICENSE = GPL-2.0+
KODI_SCREENSAVER_ASTEROIDS_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-screensaver-asterwave/kodi-screensaver-asterwave.hash b/package/kodi-screensaver-asterwave/kodi-screensaver-asterwave.hash
index 79815b3cba..2825a7be83 100644
--- a/package/kodi-screensaver-asterwave/kodi-screensaver-asterwave.hash
+++ b/package/kodi-screensaver-asterwave/kodi-screensaver-asterwave.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 2c07219218fad17ef285577ff8309f7b6503302e52048d12ee20459dbcedf89c kodi-screensaver-asterwave-20.2.0-Nexus.tar.gz
+sha256 4cb21eed4a679bbebcc0ed4c4ec3f510f4a9319327eba8d896dd8944bb5ff0f8 kodi-screensaver-asterwave-701111a81875688f016ce62b25670608a7fcd2d2.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-screensaver-asterwave/kodi-screensaver-asterwave.mk b/package/kodi-screensaver-asterwave/kodi-screensaver-asterwave.mk
index c721f21cc0..d2fffab74d 100644
--- a/package/kodi-screensaver-asterwave/kodi-screensaver-asterwave.mk
+++ b/package/kodi-screensaver-asterwave/kodi-screensaver-asterwave.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_SCREENSAVER_ASTERWAVE_VERSION = 20.2.0-Nexus
+KODI_SCREENSAVER_ASTERWAVE_VERSION = 701111a81875688f016ce62b25670608a7fcd2d2
KODI_SCREENSAVER_ASTERWAVE_SITE = $(call github,xbmc,screensaver.asterwave,$(KODI_SCREENSAVER_ASTERWAVE_VERSION))
KODI_SCREENSAVER_ASTERWAVE_LICENSE = GPL-2.0+
KODI_SCREENSAVER_ASTERWAVE_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis.hash b/package/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis.hash
index 5426cb3f6c..a62070430d 100644
--- a/package/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis.hash
+++ b/package/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 dfc291fbafe16444f3a5a5f886ba562b5d7b16ed77f4302017fbbe5f5ef9a82d kodi-screensaver-biogenesis-20.1.0-Nexus.tar.gz
+sha256 92491cbcb1abaa8ab2cf113a0eb4d0ad588f59c062c91e8e06b035c6eb0ea84f kodi-screensaver-biogenesis-953947d07fdf69967e2dc64b289631c57c79e800.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis.mk b/package/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis.mk
index f25ad9c666..bb40c7eb65 100644
--- a/package/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis.mk
+++ b/package/kodi-screensaver-biogenesis/kodi-screensaver-biogenesis.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_SCREENSAVER_BIOGENESIS_VERSION = 20.1.0-Nexus
+KODI_SCREENSAVER_BIOGENESIS_VERSION = 953947d07fdf69967e2dc64b289631c57c79e800
KODI_SCREENSAVER_BIOGENESIS_SITE = $(call github,xbmc,screensaver.biogenesis,$(KODI_SCREENSAVER_BIOGENESIS_VERSION))
KODI_SCREENSAVER_BIOGENESIS_LICENSE = GPL-2.0+
KODI_SCREENSAVER_BIOGENESIS_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-screensaver-cpblobs/kodi-screensaver-cpblobs.hash b/package/kodi-screensaver-cpblobs/kodi-screensaver-cpblobs.hash
index 6ca36c0d32..0d653a272c 100644
--- a/package/kodi-screensaver-cpblobs/kodi-screensaver-cpblobs.hash
+++ b/package/kodi-screensaver-cpblobs/kodi-screensaver-cpblobs.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 0e398a30aac0e6316778d7bb93256b9a3758ac11bc42388ac4367417bf82ea55 kodi-screensaver-cpblobs-20.1.0-Nexus.tar.gz
+sha256 84213263bad9d5dbaadc704b28d79f4bd2603287f05f0264563cf560f23f5309 kodi-screensaver-cpblobs-cd96c71c22940014d5c79c58af99b60e0b418f71.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-screensaver-cpblobs/kodi-screensaver-cpblobs.mk b/package/kodi-screensaver-cpblobs/kodi-screensaver-cpblobs.mk
index 49b510f229..9e010ec774 100644
--- a/package/kodi-screensaver-cpblobs/kodi-screensaver-cpblobs.mk
+++ b/package/kodi-screensaver-cpblobs/kodi-screensaver-cpblobs.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_SCREENSAVER_CPBLOBS_VERSION = 20.1.0-Nexus
+KODI_SCREENSAVER_CPBLOBS_VERSION = cd96c71c22940014d5c79c58af99b60e0b418f71
KODI_SCREENSAVER_CPBLOBS_SITE = $(call github,xbmc,screensaver.cpblobs,$(KODI_SCREENSAVER_CPBLOBS_VERSION))
KODI_SCREENSAVER_CPBLOBS_LICENSE = GPL-2.0
KODI_SCREENSAVER_CPBLOBS_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-screensaver-greynetic/kodi-screensaver-greynetic.hash b/package/kodi-screensaver-greynetic/kodi-screensaver-greynetic.hash
index 27b5a0f712..a1678be4c9 100644
--- a/package/kodi-screensaver-greynetic/kodi-screensaver-greynetic.hash
+++ b/package/kodi-screensaver-greynetic/kodi-screensaver-greynetic.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 e060f69a7c403a5d7bb59058dc38e8c6a6ea1aa7bc9b82f8ffa7c5e94ede0866 kodi-screensaver-greynetic-20.2.0-Nexus.tar.gz
+sha256 0974661ce4725e685222cce04b9f43d24b4161f8af9400b6e739549368a0e1eb kodi-screensaver-greynetic-2955c4105ea1223e9901dbc804812bdb3c0412a7.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-screensaver-greynetic/kodi-screensaver-greynetic.mk b/package/kodi-screensaver-greynetic/kodi-screensaver-greynetic.mk
index 4c3f358894..4789cdfcd7 100644
--- a/package/kodi-screensaver-greynetic/kodi-screensaver-greynetic.mk
+++ b/package/kodi-screensaver-greynetic/kodi-screensaver-greynetic.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_SCREENSAVER_GREYNETIC_VERSION = 20.2.0-Nexus
+KODI_SCREENSAVER_GREYNETIC_VERSION = 2955c4105ea1223e9901dbc804812bdb3c0412a7
KODI_SCREENSAVER_GREYNETIC_SITE = $(call github,xbmc,screensaver.greynetic,$(KODI_SCREENSAVER_GREYNETIC_VERSION))
KODI_SCREENSAVER_GREYNETIC_LICENSE = GPL-2.0+
KODI_SCREENSAVER_GREYNETIC_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails.hash b/package/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails.hash
index 4f0c3f4746..8bc932579f 100644
--- a/package/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails.hash
+++ b/package/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 929af1a5a08399449497a13c2eb9761b4770b41445a13ee61d78b82677978ea5 kodi-screensaver-matrixtrails-20.1.0-Nexus.tar.gz
+sha256 6016fc31cdb489417cf3c39d13403d5d8ff332e5b3aef5bf8916e70c61d479c4 kodi-screensaver-matrixtrails-364b7275fb02edf9a5c03bd56c8010431711b249.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails.mk b/package/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails.mk
index b9a3e8d681..a00bcf85df 100644
--- a/package/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails.mk
+++ b/package/kodi-screensaver-matrixtrails/kodi-screensaver-matrixtrails.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_SCREENSAVER_MATRIXTRAILS_VERSION = 20.1.0-Nexus
+KODI_SCREENSAVER_MATRIXTRAILS_VERSION = 364b7275fb02edf9a5c03bd56c8010431711b249
KODI_SCREENSAVER_MATRIXTRAILS_SITE = $(call github,xbmc,screensaver.matrixtrails,$(KODI_SCREENSAVER_MATRIXTRAILS_VERSION))
KODI_SCREENSAVER_MATRIXTRAILS_LICENSE = GPL-2.0+
KODI_SCREENSAVER_MATRIXTRAILS_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-screensaver-pingpong/kodi-screensaver-pingpong.hash b/package/kodi-screensaver-pingpong/kodi-screensaver-pingpong.hash
index 39853836fb..cd3a0315dd 100644
--- a/package/kodi-screensaver-pingpong/kodi-screensaver-pingpong.hash
+++ b/package/kodi-screensaver-pingpong/kodi-screensaver-pingpong.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 72b3c9be5b65afe7fbc6d496eb7700786d88811bfafcd131a3219a646d30805d kodi-screensaver-pingpong-20.2.0-Nexus.tar.gz
+sha256 861a752aa5090817670c378cc4be05e06f27b60f3c9e30503facc28cea45312d kodi-screensaver-pingpong-a0b8b956002ddc64eb6d433e3230fa09619f2aef.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-screensaver-pingpong/kodi-screensaver-pingpong.mk b/package/kodi-screensaver-pingpong/kodi-screensaver-pingpong.mk
index 3801515329..9b90da2912 100644
--- a/package/kodi-screensaver-pingpong/kodi-screensaver-pingpong.mk
+++ b/package/kodi-screensaver-pingpong/kodi-screensaver-pingpong.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_SCREENSAVER_PINGPONG_VERSION = 20.2.0-Nexus
+KODI_SCREENSAVER_PINGPONG_VERSION = a0b8b956002ddc64eb6d433e3230fa09619f2aef
KODI_SCREENSAVER_PINGPONG_SITE = $(call github,xbmc,screensaver.pingpong,$(KODI_SCREENSAVER_PINGPONG_VERSION))
KODI_SCREENSAVER_PINGPONG_LICENSE = GPL-2.0+
KODI_SCREENSAVER_PINGPONG_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-screensaver-pyro/kodi-screensaver-pyro.hash b/package/kodi-screensaver-pyro/kodi-screensaver-pyro.hash
index aa48d490e5..4a8d00de28 100644
--- a/package/kodi-screensaver-pyro/kodi-screensaver-pyro.hash
+++ b/package/kodi-screensaver-pyro/kodi-screensaver-pyro.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 ec981d070cccdfaa9116244e80a63d86c37f67dccd11aacfcc66dcfcbb608ce1 kodi-screensaver-pyro-20.1.0-Nexus.tar.gz
+sha256 bea100644c2e29f645f379cc51f58b5b87b745cf51d2863649a16869d514e60d kodi-screensaver-pyro-b0d14d3f8cfe7d0c71ce8df8a6b8d6f121b42908.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-screensaver-pyro/kodi-screensaver-pyro.mk b/package/kodi-screensaver-pyro/kodi-screensaver-pyro.mk
index e33c09ab97..b82d2e0f32 100644
--- a/package/kodi-screensaver-pyro/kodi-screensaver-pyro.mk
+++ b/package/kodi-screensaver-pyro/kodi-screensaver-pyro.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_SCREENSAVER_PYRO_VERSION = 20.1.0-Nexus
+KODI_SCREENSAVER_PYRO_VERSION = b0d14d3f8cfe7d0c71ce8df8a6b8d6f121b42908
KODI_SCREENSAVER_PYRO_SITE = $(call github,xbmc,screensaver.pyro,$(KODI_SCREENSAVER_PYRO_VERSION))
KODI_SCREENSAVER_PYRO_LICENSE = GPL-2.0+
KODI_SCREENSAVER_PYRO_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-screensaver-rsxs/kodi-screensaver-rsxs.hash b/package/kodi-screensaver-rsxs/kodi-screensaver-rsxs.hash
index c66d3b2cd3..021b92c143 100644
--- a/package/kodi-screensaver-rsxs/kodi-screensaver-rsxs.hash
+++ b/package/kodi-screensaver-rsxs/kodi-screensaver-rsxs.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 e135408812b8c267554e3881a05396d4286c1f47b20416b4e5d88b632367ace7 kodi-screensaver-rsxs-20.1.0-Nexus.tar.gz
+sha256 7f3de3b68c4852290ad3aa2f3b77a356dbc3f26a78bec8356f04723f6d86be42 kodi-screensaver-rsxs-56bc68ef28a8d2a8cf345472df6105bc4c111a04.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-screensaver-rsxs/kodi-screensaver-rsxs.mk b/package/kodi-screensaver-rsxs/kodi-screensaver-rsxs.mk
index adf7451723..caadbdb159 100644
--- a/package/kodi-screensaver-rsxs/kodi-screensaver-rsxs.mk
+++ b/package/kodi-screensaver-rsxs/kodi-screensaver-rsxs.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_SCREENSAVER_RSXS_VERSION = 20.1.0-Nexus
+KODI_SCREENSAVER_RSXS_VERSION = 56bc68ef28a8d2a8cf345472df6105bc4c111a04
KODI_SCREENSAVER_RSXS_SITE = $(call github,xbmc,screensavers.rsxs,$(KODI_SCREENSAVER_RSXS_VERSION))
KODI_SCREENSAVER_RSXS_LICENSE = GPL-2.0+
KODI_SCREENSAVER_RSXS_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-screensaver-stars/kodi-screensaver-stars.hash b/package/kodi-screensaver-stars/kodi-screensaver-stars.hash
index 4641296596..e4bedbfc3f 100644
--- a/package/kodi-screensaver-stars/kodi-screensaver-stars.hash
+++ b/package/kodi-screensaver-stars/kodi-screensaver-stars.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 5ea0d19c3ef94e9603a0e06c78ae01cd6f9227da7b505eaa7d4527ca6018ea03 kodi-screensaver-stars-20.1.0-Nexus.tar.gz
+sha256 84d63373984f83e04bb8990a00a5b57a95ddd595f6a2b5fdf56bbd424cd546c8 kodi-screensaver-stars-e31111555b41692fd373719a9ba74aba3e7f4790.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-screensaver-stars/kodi-screensaver-stars.mk b/package/kodi-screensaver-stars/kodi-screensaver-stars.mk
index a38ad5c7db..c9aef4dc79 100644
--- a/package/kodi-screensaver-stars/kodi-screensaver-stars.mk
+++ b/package/kodi-screensaver-stars/kodi-screensaver-stars.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_SCREENSAVER_STARS_VERSION = 20.1.0-Nexus
+KODI_SCREENSAVER_STARS_VERSION = e31111555b41692fd373719a9ba74aba3e7f4790
KODI_SCREENSAVER_STARS_SITE = $(call github,xbmc,screensaver.stars,$(KODI_SCREENSAVER_STARS_VERSION))
KODI_SCREENSAVER_STARS_LICENSE = GPL-2.0+
KODI_SCREENSAVER_STARS_LICENSE_FILES = LICENSE.md
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* [Buildroot] [PATCH v2 17/20] package/kodi-skin-confluence: bump version
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (15 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 16/20] package/kodi-screensaver-*: " Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 18/20] package/kodi-vfs-*: mass version bump to Omega Bernd Kuhls
` (5 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/kodi-skin-confluence/kodi-skin-confluence.hash | 2 +-
package/kodi-skin-confluence/kodi-skin-confluence.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/kodi-skin-confluence/kodi-skin-confluence.hash b/package/kodi-skin-confluence/kodi-skin-confluence.hash
index 449a2113de..ed5aaf1fed 100644
--- a/package/kodi-skin-confluence/kodi-skin-confluence.hash
+++ b/package/kodi-skin-confluence/kodi-skin-confluence.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 1d55079d2b021b16ae8494497684abab184a86302426af588655577a641074ac kodi-skin-confluence-a155597cb6bb0f9d46b26ad881be1148929a03af.tar.gz
+sha256 f5cd0fe3591feedce016d3aaa8074bb8bc30121feb708b3a07ac87f453974106 kodi-skin-confluence-1995b890238e2737433cbaffd49993753b35eea9.tar.gz
sha256 89931c1fb1f3716694175763cf3221cfcd63d6935031cf6b4512d17ffe5d9860 LICENSE.txt
diff --git a/package/kodi-skin-confluence/kodi-skin-confluence.mk b/package/kodi-skin-confluence/kodi-skin-confluence.mk
index 58e51ffc8a..af67693496 100644
--- a/package/kodi-skin-confluence/kodi-skin-confluence.mk
+++ b/package/kodi-skin-confluence/kodi-skin-confluence.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_SKIN_CONFLUENCE_VERSION = a155597cb6bb0f9d46b26ad881be1148929a03af
+KODI_SKIN_CONFLUENCE_VERSION = 1995b890238e2737433cbaffd49993753b35eea9
KODI_SKIN_CONFLUENCE_SITE = $(call github,xbmc,skin.confluence,$(KODI_SKIN_CONFLUENCE_VERSION))
KODI_SKIN_CONFLUENCE_LICENSE = GPL-2.0
KODI_SKIN_CONFLUENCE_LICENSE_FILES = LICENSE.txt
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* [Buildroot] [PATCH v2 18/20] package/kodi-vfs-*: mass version bump to Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (16 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 17/20] package/kodi-skin-confluence: bump version Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 19/20] package/kodi-visualisation-*: " Bernd Kuhls
` (4 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/kodi-vfs-libarchive/kodi-vfs-libarchive.hash | 2 +-
package/kodi-vfs-libarchive/kodi-vfs-libarchive.mk | 2 +-
package/kodi-vfs-rar/kodi-vfs-rar.hash | 2 +-
package/kodi-vfs-rar/kodi-vfs-rar.mk | 2 +-
package/kodi-vfs-sftp/kodi-vfs-sftp.hash | 2 +-
package/kodi-vfs-sftp/kodi-vfs-sftp.mk | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/package/kodi-vfs-libarchive/kodi-vfs-libarchive.hash b/package/kodi-vfs-libarchive/kodi-vfs-libarchive.hash
index d395ba2d42..1e686715ea 100644
--- a/package/kodi-vfs-libarchive/kodi-vfs-libarchive.hash
+++ b/package/kodi-vfs-libarchive/kodi-vfs-libarchive.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 06be9bfcda3e676e0757ea9602351d67f2bf0aa9aa9e408b14d947772a615e4f kodi-vfs-libarchive-20.3.0-Nexus.tar.gz
+sha256 22977bd2479244c4b06e2149bae891bc7dbc64649a89813f4e6fc88e78169f68 kodi-vfs-libarchive-a5443a3896b9638018e69d1e4430a7524ac20ffc.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-vfs-libarchive/kodi-vfs-libarchive.mk b/package/kodi-vfs-libarchive/kodi-vfs-libarchive.mk
index 975e28485a..069c92cc5f 100644
--- a/package/kodi-vfs-libarchive/kodi-vfs-libarchive.mk
+++ b/package/kodi-vfs-libarchive/kodi-vfs-libarchive.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_VFS_LIBARCHIVE_VERSION = 20.3.0-Nexus
+KODI_VFS_LIBARCHIVE_VERSION = a5443a3896b9638018e69d1e4430a7524ac20ffc
KODI_VFS_LIBARCHIVE_SITE = $(call github,xbmc,vfs.libarchive,$(KODI_VFS_LIBARCHIVE_VERSION))
KODI_VFS_LIBARCHIVE_LICENSE = GPL-2.0+
KODI_VFS_LIBARCHIVE_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-vfs-rar/kodi-vfs-rar.hash b/package/kodi-vfs-rar/kodi-vfs-rar.hash
index 4d7f800acf..e368515a5a 100644
--- a/package/kodi-vfs-rar/kodi-vfs-rar.hash
+++ b/package/kodi-vfs-rar/kodi-vfs-rar.hash
@@ -1,5 +1,5 @@
# Locally computed
-sha256 50870b24a3663f8d8d88802b327a8fd2fec441a9fed952baf71faba6854a8e1b kodi-vfs-rar-20.1.0-Nexus.tar.gz
+sha256 c1da0e8aafa5419ae414857893a59c22109138ad7245071e0678b26f401a7be1 kodi-vfs-rar-2f49a0de43bc9f4e91dfec73a13dcb04df285233.tar.gz
# License files
sha256 6ecc1687808b7d66b24f874755abfed7464d9751ed0001cd4e8e5d9bf397ff8a lib/UnrarXLib/license.txt
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-vfs-rar/kodi-vfs-rar.mk b/package/kodi-vfs-rar/kodi-vfs-rar.mk
index 4322e41abd..8dfd205c27 100644
--- a/package/kodi-vfs-rar/kodi-vfs-rar.mk
+++ b/package/kodi-vfs-rar/kodi-vfs-rar.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_VFS_RAR_VERSION = 20.1.0-Nexus
+KODI_VFS_RAR_VERSION = 2f49a0de43bc9f4e91dfec73a13dcb04df285233
KODI_VFS_RAR_SITE = $(call github,xbmc,vfs.rar,$(KODI_VFS_RAR_VERSION))
KODI_VFS_RAR_LICENSE = unrar, GPL-2.0+
KODI_VFS_RAR_LICENSE_FILES = lib/UnrarXLib/license.txt LICENSE.md
diff --git a/package/kodi-vfs-sftp/kodi-vfs-sftp.hash b/package/kodi-vfs-sftp/kodi-vfs-sftp.hash
index 2f439e8e0d..12ddbae63d 100644
--- a/package/kodi-vfs-sftp/kodi-vfs-sftp.hash
+++ b/package/kodi-vfs-sftp/kodi-vfs-sftp.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 66f139d3d06c06d03ceccdcee12b79d3886bd0ea7aec662341736f1c9bdd63e2 kodi-vfs-sftp-20.2.0-Nexus.tar.gz
+sha256 2197096f7081d140efb573e1afcee257e55bd0312e48c25e787bf10879e6bc92 kodi-vfs-sftp-9fe870e71a10a37f2d793b2261bac48b195f2705.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-vfs-sftp/kodi-vfs-sftp.mk b/package/kodi-vfs-sftp/kodi-vfs-sftp.mk
index c050b4bc20..e3298465fe 100644
--- a/package/kodi-vfs-sftp/kodi-vfs-sftp.mk
+++ b/package/kodi-vfs-sftp/kodi-vfs-sftp.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_VFS_SFTP_VERSION = 20.2.0-Nexus
+KODI_VFS_SFTP_VERSION = 9fe870e71a10a37f2d793b2261bac48b195f2705
KODI_VFS_SFTP_SITE = $(call github,xbmc,vfs.sftp,$(KODI_VFS_SFTP_VERSION))
KODI_VFS_SFTP_LICENSE = GPL-2.0+
KODI_VFS_SFTP_LICENSE_FILES = LICENSE.md
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* [Buildroot] [PATCH v2 19/20] package/kodi-visualisation-*: mass version bump to Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (17 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 18/20] package/kodi-vfs-*: mass version bump to Omega Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-04-07 11:44 ` [Buildroot] [PATCH v2 20/20] package/kodi: add optional support for pipewire Bernd Kuhls
` (3 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
.../kodi-visualisation-fishbmc/kodi-visualisation-fishbmc.hash | 2 +-
.../kodi-visualisation-fishbmc/kodi-visualisation-fishbmc.mk | 2 +-
package/kodi-visualisation-goom/kodi-visualisation-goom.hash | 2 +-
package/kodi-visualisation-goom/kodi-visualisation-goom.mk | 2 +-
.../kodi-visualisation-matrix/kodi-visualisation-matrix.hash | 2 +-
package/kodi-visualisation-matrix/kodi-visualisation-matrix.mk | 2 +-
.../kodi-visualisation-shadertoy.hash | 2 +-
.../kodi-visualisation-shadertoy.mk | 2 +-
.../kodi-visualisation-spectrum.hash | 2 +-
.../kodi-visualisation-spectrum/kodi-visualisation-spectrum.mk | 2 +-
.../kodi-visualisation-starburst.hash | 2 +-
.../kodi-visualisation-starburst.mk | 2 +-
.../kodi-visualisation-waveform.hash | 2 +-
.../kodi-visualisation-waveform/kodi-visualisation-waveform.mk | 2 +-
14 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/package/kodi-visualisation-fishbmc/kodi-visualisation-fishbmc.hash b/package/kodi-visualisation-fishbmc/kodi-visualisation-fishbmc.hash
index 5edb2b9ac2..42d6cab712 100644
--- a/package/kodi-visualisation-fishbmc/kodi-visualisation-fishbmc.hash
+++ b/package/kodi-visualisation-fishbmc/kodi-visualisation-fishbmc.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 168788d7cd292edf9c13c0e0e0148f19b2ecd35edd8f65f24240dff99f01677a kodi-visualisation-fishbmc-20.2.0-Nexus.tar.gz
+sha256 a21d1683cf648b188a39fd32b123c147ce7dad99fa1a67078652b28365ce6666 kodi-visualisation-fishbmc-daa4e6b3e952075b813768e3518ac6e6b0724f55.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-visualisation-fishbmc/kodi-visualisation-fishbmc.mk b/package/kodi-visualisation-fishbmc/kodi-visualisation-fishbmc.mk
index 58087d4f0d..2e27ed69a8 100644
--- a/package/kodi-visualisation-fishbmc/kodi-visualisation-fishbmc.mk
+++ b/package/kodi-visualisation-fishbmc/kodi-visualisation-fishbmc.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_VISUALISATION_FISHBMC_VERSION = 20.2.0-Nexus
+KODI_VISUALISATION_FISHBMC_VERSION = daa4e6b3e952075b813768e3518ac6e6b0724f55
KODI_VISUALISATION_FISHBMC_SITE = $(call github,xbmc,visualization.fishbmc,$(KODI_VISUALISATION_FISHBMC_VERSION))
KODI_VISUALISATION_FISHBMC_LICENSE = GPL-2.0+
KODI_VISUALISATION_FISHBMC_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-visualisation-goom/kodi-visualisation-goom.hash b/package/kodi-visualisation-goom/kodi-visualisation-goom.hash
index cc82b1f59a..835fcf5685 100644
--- a/package/kodi-visualisation-goom/kodi-visualisation-goom.hash
+++ b/package/kodi-visualisation-goom/kodi-visualisation-goom.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 75102a8c3f066a889493b77fbe26070be78c6dff8e7d44ebda89295ddb2da3b0 kodi-visualisation-goom-20.1.1-Nexus.tar.gz
+sha256 dcf46760c0b1e6eb90fff94684c907ca10261febae12c63d1253325452704ecc kodi-visualisation-goom-a8cb12592900fcd099d65d7760cbb113489ec884.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-visualisation-goom/kodi-visualisation-goom.mk b/package/kodi-visualisation-goom/kodi-visualisation-goom.mk
index b7b048f165..0f40b2ab23 100644
--- a/package/kodi-visualisation-goom/kodi-visualisation-goom.mk
+++ b/package/kodi-visualisation-goom/kodi-visualisation-goom.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_VISUALISATION_GOOM_VERSION = 20.1.1-Nexus
+KODI_VISUALISATION_GOOM_VERSION = a8cb12592900fcd099d65d7760cbb113489ec884
KODI_VISUALISATION_GOOM_SITE = $(call github,xbmc,visualization.goom,$(KODI_VISUALISATION_GOOM_VERSION))
KODI_VISUALISATION_GOOM_LICENSE = GPL-2.0+
KODI_VISUALISATION_GOOM_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-visualisation-matrix/kodi-visualisation-matrix.hash b/package/kodi-visualisation-matrix/kodi-visualisation-matrix.hash
index abc97a892f..ed3ee016cd 100644
--- a/package/kodi-visualisation-matrix/kodi-visualisation-matrix.hash
+++ b/package/kodi-visualisation-matrix/kodi-visualisation-matrix.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 f0b76edf45df7161d8525fa2ba623dee64ca66d515342e942100dc46c8220553 kodi-visualisation-matrix-20.2.0-Nexus.tar.gz
+sha256 2abe39666e64bb1b3e8d3b88876524ed022d2dbeeb141cb9bd43549d8b5b403c kodi-visualisation-matrix-8a373e240e47f27f1289c1c606621403794eb0d1.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-visualisation-matrix/kodi-visualisation-matrix.mk b/package/kodi-visualisation-matrix/kodi-visualisation-matrix.mk
index 8cd5ea2045..125aee1d46 100644
--- a/package/kodi-visualisation-matrix/kodi-visualisation-matrix.mk
+++ b/package/kodi-visualisation-matrix/kodi-visualisation-matrix.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_VISUALISATION_MATRIX_VERSION = 20.2.0-Nexus
+KODI_VISUALISATION_MATRIX_VERSION = 8a373e240e47f27f1289c1c606621403794eb0d1
KODI_VISUALISATION_MATRIX_SITE = $(call github,xbmc,visualization.matrix,$(KODI_VISUALISATION_MATRIX_VERSION))
KODI_VISUALISATION_MATRIX_LICENSE = GPL-2.0+
KODI_VISUALISATION_MATRIX_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-visualisation-shadertoy/kodi-visualisation-shadertoy.hash b/package/kodi-visualisation-shadertoy/kodi-visualisation-shadertoy.hash
index c38931f2dd..b74b0a76f6 100644
--- a/package/kodi-visualisation-shadertoy/kodi-visualisation-shadertoy.hash
+++ b/package/kodi-visualisation-shadertoy/kodi-visualisation-shadertoy.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 2f97a34f74ee3e3e1d9fe8cfd37796564f8f88eb4c07d60b27ff635d64a5a724 kodi-visualisation-shadertoy-20.3.0-Nexus.tar.gz
+sha256 6144e32ee4c1f7e75be6b2827555b4999d251ebdd67d785cac0e8b38869ef529 kodi-visualisation-shadertoy-364132b12b6da78e281b6a1d678155d43aace83f.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-visualisation-shadertoy/kodi-visualisation-shadertoy.mk b/package/kodi-visualisation-shadertoy/kodi-visualisation-shadertoy.mk
index a056c3481d..45313a3e92 100644
--- a/package/kodi-visualisation-shadertoy/kodi-visualisation-shadertoy.mk
+++ b/package/kodi-visualisation-shadertoy/kodi-visualisation-shadertoy.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_VISUALISATION_SHADERTOY_VERSION = 20.3.0-Nexus
+KODI_VISUALISATION_SHADERTOY_VERSION = 364132b12b6da78e281b6a1d678155d43aace83f
KODI_VISUALISATION_SHADERTOY_SITE = $(call github,xbmc,visualization.shadertoy,$(KODI_VISUALISATION_SHADERTOY_VERSION))
KODI_VISUALISATION_SHADERTOY_LICENSE = GPL-2.0+
KODI_VISUALISATION_SHADERTOY_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-visualisation-spectrum/kodi-visualisation-spectrum.hash b/package/kodi-visualisation-spectrum/kodi-visualisation-spectrum.hash
index 4b8a1f7e71..a6083e55c5 100644
--- a/package/kodi-visualisation-spectrum/kodi-visualisation-spectrum.hash
+++ b/package/kodi-visualisation-spectrum/kodi-visualisation-spectrum.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 1c405ea9b6f43ba5f24df13ebce12cb428369279336deb97790917aa675c809f kodi-visualisation-spectrum-20.2.0-Nexus.tar.gz
+sha256 ae794542e8c7de00528bf486d381134f4da8b7c35903c5f5e06a1a6015878b12 kodi-visualisation-spectrum-8f2fc2135b34740af538ade3faf310f1a188db7f.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-visualisation-spectrum/kodi-visualisation-spectrum.mk b/package/kodi-visualisation-spectrum/kodi-visualisation-spectrum.mk
index 67d02ab38a..c50eae3fae 100644
--- a/package/kodi-visualisation-spectrum/kodi-visualisation-spectrum.mk
+++ b/package/kodi-visualisation-spectrum/kodi-visualisation-spectrum.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_VISUALISATION_SPECTRUM_VERSION = 20.2.0-Nexus
+KODI_VISUALISATION_SPECTRUM_VERSION = 8f2fc2135b34740af538ade3faf310f1a188db7f
KODI_VISUALISATION_SPECTRUM_SITE = $(call github,xbmc,visualization.spectrum,$(KODI_VISUALISATION_SPECTRUM_VERSION))
KODI_VISUALISATION_SPECTRUM_LICENSE = GPL-2.0+
KODI_VISUALISATION_SPECTRUM_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-visualisation-starburst/kodi-visualisation-starburst.hash b/package/kodi-visualisation-starburst/kodi-visualisation-starburst.hash
index 3e1669f776..870c5088b0 100644
--- a/package/kodi-visualisation-starburst/kodi-visualisation-starburst.hash
+++ b/package/kodi-visualisation-starburst/kodi-visualisation-starburst.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 0d63b38ba8d5b3bac542546b1ecfb7d722b79652da485d75b22086e26ef4f825 kodi-visualisation-starburst-20.2.0-Nexus.tar.gz
+sha256 3755544db4d633c411236ca2149f93c641c4c8d858a68f9eb4176b046fbf0ea4 kodi-visualisation-starburst-7923772cd986849531bdfee0a0bc989842b41996.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-visualisation-starburst/kodi-visualisation-starburst.mk b/package/kodi-visualisation-starburst/kodi-visualisation-starburst.mk
index 3e876797b6..bd61e4c770 100644
--- a/package/kodi-visualisation-starburst/kodi-visualisation-starburst.mk
+++ b/package/kodi-visualisation-starburst/kodi-visualisation-starburst.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_VISUALISATION_STARBURST_VERSION = 20.2.0-Nexus
+KODI_VISUALISATION_STARBURST_VERSION = 7923772cd986849531bdfee0a0bc989842b41996
KODI_VISUALISATION_STARBURST_SITE = $(call github,xbmc,visualization.starburst,$(KODI_VISUALISATION_STARBURST_VERSION))
KODI_VISUALISATION_STARBURST_LICENSE = GPL-2.0+
KODI_VISUALISATION_STARBURST_LICENSE_FILES = LICENSE.md
diff --git a/package/kodi-visualisation-waveform/kodi-visualisation-waveform.hash b/package/kodi-visualisation-waveform/kodi-visualisation-waveform.hash
index fe9d164234..29bb077261 100644
--- a/package/kodi-visualisation-waveform/kodi-visualisation-waveform.hash
+++ b/package/kodi-visualisation-waveform/kodi-visualisation-waveform.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 865e72a5f2ed8fd53469518280cbe26f9516467d091009fe5e012ea0d85d5edd kodi-visualisation-waveform-20.2.1-Nexus.tar.gz
+sha256 edda37479bc38eb129a9e83c30f14f21646b17693b5679130fd644787b63dce0 kodi-visualisation-waveform-a388be3b9c4a62a5087616d3c92a26d6cbbeb24f.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md
diff --git a/package/kodi-visualisation-waveform/kodi-visualisation-waveform.mk b/package/kodi-visualisation-waveform/kodi-visualisation-waveform.mk
index 92e46b8997..925d76cbe4 100644
--- a/package/kodi-visualisation-waveform/kodi-visualisation-waveform.mk
+++ b/package/kodi-visualisation-waveform/kodi-visualisation-waveform.mk
@@ -4,7 +4,7 @@
#
################################################################################
-KODI_VISUALISATION_WAVEFORM_VERSION = 20.2.1-Nexus
+KODI_VISUALISATION_WAVEFORM_VERSION = a388be3b9c4a62a5087616d3c92a26d6cbbeb24f
KODI_VISUALISATION_WAVEFORM_SITE = $(call github,xbmc,visualization.waveform,$(KODI_VISUALISATION_WAVEFORM_VERSION))
KODI_VISUALISATION_WAVEFORM_LICENSE = GPL-2.0+
KODI_VISUALISATION_WAVEFORM_LICENSE_FILES = LICENSE.md
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* [Buildroot] [PATCH v2 20/20] package/kodi: add optional support for pipewire
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (18 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 19/20] package/kodi-visualisation-*: " Bernd Kuhls
@ 2024-04-07 11:44 ` Bernd Kuhls
2024-05-09 17:25 ` [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Thomas Petazzoni via buildroot
` (2 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Bernd Kuhls @ 2024-04-07 11:44 UTC (permalink / raw)
To: buildroot
Cc: Mahyar Koshkouei, Samuel Martin, Fabrice Fontaine,
Woodrow Douglass, Julien Corjon, Giulio Benetti, Romain Naour
Selecting pipewire is not possible due to reverse dependencies:
package/gstreamer1/gstreamer1/Config.in:5:error: recursive dependency detected!
package/gstreamer1/gstreamer1/Config.in:5: symbol BR2_PACKAGE_GSTREAMER1 is selected by BR2_PACKAGE_PIPEWIRE_GSTREAMER
package/pipewire/Config.in:35: symbol BR2_PACKAGE_PIPEWIRE_GSTREAMER depends on BR2_PACKAGE_PIPEWIRE
package/pipewire/Config.in:1: symbol BR2_PACKAGE_PIPEWIRE is selected by BR2_PACKAGE_KODI_PIPEWIRE
package/kodi/Config.in:220: symbol BR2_PACKAGE_KODI_PIPEWIRE depends on BR2_PACKAGE_KODI
package/kodi/Config.in:54: symbol BR2_PACKAGE_KODI depends on BR2_PACKAGE_PYTHON3
package/python3/Config.in:5: symbol BR2_PACKAGE_PYTHON3 is selected by BR2_PACKAGE_JACK2_DBUS
package/jack2/Config.in:33: symbol BR2_PACKAGE_JACK2_DBUS depends on BR2_PACKAGE_JACK2
package/jack2/Config.in:1: symbol BR2_PACKAGE_JACK2 is selected by BR2_PACKAGE_FLUIDSYNTH_JACK2
package/fluidsynth/Config.in:38: symbol BR2_PACKAGE_FLUIDSYNTH_JACK2 depends on BR2_PACKAGE_FLUIDSYNTH
package/fluidsynth/Config.in:1: symbol BR2_PACKAGE_FLUIDSYNTH is selected by BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FLUIDSYNTH
package/gstreamer1/gst1-plugins-bad/Config.in:438: symbol BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FLUIDSYNTH depends on BR2_PACKAGE_GSTREAMER1
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/kodi/Config.in | 6 ++++++
package/kodi/kodi.mk | 7 +++++++
2 files changed, 13 insertions(+)
diff --git a/package/kodi/Config.in b/package/kodi/Config.in
index 885550a542..c9df01ad02 100644
--- a/package/kodi/Config.in
+++ b/package/kodi/Config.in
@@ -221,6 +221,12 @@ config BR2_PACKAGE_KODI_RENDER_SYSTEM_GLES
endchoice
+config BR2_PACKAGE_KODI_PIPEWIRE
+ bool "pipewire"
+ depends on BR2_PACKAGE_PIPEWIRE
+ help
+ Enable Pipewire support.
+
config BR2_PACKAGE_KODI_PULSEAUDIO
bool "pulseaudio"
depends on BR2_PACKAGE_PULSEAUDIO_HAS_ATOMIC
diff --git a/package/kodi/kodi.mk b/package/kodi/kodi.mk
index b9931f9609..97c60d49aa 100644
--- a/package/kodi/kodi.mk
+++ b/package/kodi/kodi.mk
@@ -374,6 +374,13 @@ else
KODI_CONF_OPTS += -DENABLE_OPTICAL=OFF
endif
+ifeq ($(BR2_PACKAGE_KODI_PIPEWIRE),y)
+KODI_CONF_OPTS += -DENABLE_PIPEWIRE=ON
+KODI_DEPENDENCIES += pipewire
+else
+KODI_CONF_OPTS += -DENABLE_PIPEWIRE=OFF
+endif
+
ifeq ($(BR2_PACKAGE_KODI_PULSEAUDIO),y)
KODI_CONF_OPTS += -DENABLE_PULSEAUDIO=ON
KODI_DEPENDENCIES += pulseaudio
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread* Re: [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (19 preceding siblings ...)
2024-04-07 11:44 ` [Buildroot] [PATCH v2 20/20] package/kodi: add optional support for pipewire Bernd Kuhls
@ 2024-05-09 17:25 ` Thomas Petazzoni via buildroot
2024-05-11 18:30 ` Yann E. MORIN
[not found] ` <Zj-5PSfeoyinMtHy__4477.17188378505$1715452261$gmane$org@landeda>
22 siblings, 0 replies; 32+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-05-09 17:25 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Mahyar Koshkouei, Romain Naour, Samuel Martin, Woodrow Douglass,
Julien Corjon, buildroot, Giulio Benetti, Fabrice Fontaine
On Sun, 7 Apr 2024 13:44:25 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:
> Bernd Kuhls (20):
> package/aubio: bump version
> package/freeswitch: fix build with ffmpeg 6.0
> package/omxplayer: remove package
> package/ffmpeg: bump version to 6.1.1
> package/ffmpeg: add optional support for libvpl
> package/bento4: bump version to 1.6.0-641-Omega
> package/kodi: bump version to 21.0-Omega
> package/kodi-audiodecoder-*: mass version bump to Omega
> package/kodi-audioencoder-*: mass version bump to Omega
> package/kodi-imagedecoder-*: mass version bump to Omega
> package/kodi-inputstream-adaptive: bump version to 21.4.4-Omega
> package/kodi-inputstream-ffmpegdirect: bump version to 21.3.5-Omega
> package/kodi-inputstream-rtmp: bump version to 21.1.0-Omega
> package/kodi-peripheral-*: mass version bump to Omega
> package/kodi-pvr-*: mass version bump to Omega
> package/kodi-screensaver-*: mass version bump to Omega
> package/kodi-skin-confluence: bump version
> package/kodi-vfs-*: mass version bump to Omega
> package/kodi-visualisation-*: mass version bump to Omega
> package/kodi: add optional support for pipewire
I finished applying the whole series. I had to do a fixup patch to fix
the URLs of some Java binaries the main kodi package downloads. See:
https://gitlab.com/buildroot.org/buildroot/-/commit/1223c116665a3fb5ec44218b5f256d813dc1a28f
Thanks for this work!
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread* Re: [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega
2024-04-07 11:44 [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Bernd Kuhls
` (20 preceding siblings ...)
2024-05-09 17:25 ` [Buildroot] [PATCH v2 00/20] package/kodi: bump version to 21.0-Omega Thomas Petazzoni via buildroot
@ 2024-05-11 18:30 ` Yann E. MORIN
[not found] ` <Zj-5PSfeoyinMtHy__4477.17188378505$1715452261$gmane$org@landeda>
22 siblings, 0 replies; 32+ messages in thread
From: Yann E. MORIN @ 2024-05-11 18:30 UTC (permalink / raw)
To: Bernd Kuhls
Cc: Mahyar Koshkouei, Romain Naour, Samuel Martin, Woodrow Douglass,
Julien Corjon, buildroot, Giulio Benetti, Fabrice Fontaine
Bernd, All,
On 2024-04-07 13:44 +0200, Bernd Kuhls spake thusly:
> this is v2 of the patch series to bump Kodi to its latest version.
[--SNIP--]
While testing the udfread fixup patch, I stumbled on another build
error:
$ cat defconfig
BR2_aarch64=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
BR2_PER_PACKAGE_DIRECTORIES=y
BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y
BR2_PACKAGE_KODI=y
BR2_PACKAGE_MESA3D=y
BR2_PACKAGE_MESA3D_OSMESA_GALLIUM=y
BR2_PACKAGE_MESA3D_OPENGL_EGL=y
BR2_PACKAGE_MESA3D_OPENGL_ES=y
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON3_PY_PYC=y
$ make kodi
[--SNIP--]
CCLD libdvdread.la
libtool: warning: library '/home/ymorin/dev/buildroot/O/master/per-package/kodi/host/opt/ext-toolchain/aarch64-buildroot-linux-gnu/lib64/libatomic.la' was moved.
/usr/bin/grep: /builds/buildroot.org/toolchains-builder/build/aarch64--glibc--bleeding-edge-2024.02-1/aarch64-buildroot-linux-gnu/lib/../lib64/libatomic.la: No such file or directory
/usr/bin/sed: can't read /builds/buildroot.org/toolchains-builder/build/aarch64--glibc--bleeding-edge-2024.02-1/aarch64-buildroot-linux-gnu/lib/../lib64/libatomic.la: No such file or directory
libtool: error: '/builds/buildroot.org/toolchains-builder/build/aarch64--glibc--bleeding-edge-2024.02-1/aarch64-buildroot-linux-gnu/lib/../lib64/libatomic.la' is not a valid libtool archive
make[6]: *** [Makefile:533: libdvdread.la] Error 1
make[5]: *** [Makefile:422: all] Error 2
make[4]: *** [CMakeFiles/libdvdread.dir/build.make:86: build/libdvdread/src/libdvdread-stamp/libdvdread-build] Error 2
make[3]: *** [CMakeFiles/Makefile2:4641: CMakeFiles/libdvdread.dir/all] Error 2
make[2]: *** [Makefile:136: all] Error 2
make[1]: *** [package/pkg-generic.mk:283: /home/ymorin/dev/buildroot/O/master/build/kodi-21.0-Omega/.stamp_built] Error 2
make: *** [Makefile:23: _all] Error 2
Could you also look at this, please?
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread[parent not found: <Zj-5PSfeoyinMtHy__4477.17188378505$1715452261$gmane$org@landeda>]