Compare commits

...

3 Commits

Author SHA1 Message Date
Bernd Kuhls
4ad58f3067 package/kodi-pvr-mythtv: bump version to 21.2.14-Omega
https://github.com/janbar/pvr.mythtv/blob/21.2.14-Omega/pvr.mythtv/changelog.txt

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2026-02-05 10:25:19 +01:00
Bernd Kuhls
4a1061d28c package/kodi-pvr-waipu: bump version to 21.12.6-Omega
https://github.com/flubshi/pvr.waipu/releases/tag/21.12.6-Omega

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2026-02-05 10:25:01 +01:00
Julien Olivain
b69fc85e66 support/misc/Buildroot-Initialize.cmake: make include optional
Buildroot commit [1] introduced a new Buildroot-Initialize.cmake file,
to mimic the upstream Linux-Initialize.cmake.

However, this upstream file was introduced in commit [2], which was
introduced in CMake 3.27.

When compiling a cmake package on a host with a cmake older than
version 3.27 (for example, the Buildroot Docker reference image has
cmake 3.25), the configuration fails with the error:

    CMake Error at /buildroot/output/host/share/buildroot/Platform/Buildroot-Initialize.cmake:1 (include):
      include could not find requested file:

        Platform/Linux-Initialize
    Call Stack (most recent call first):
      /usr/share/cmake-3.25/Modules/CMakeSystemSpecificInitialize.cmake:21 (include)
      CMakeLists.txt:20 (project)

CMake version < 3.27 is setting its LINUX predefine elsewhere (see
commit log of [1]), so this commit fixes the issue by simply making
the include optional. This will guarante thee cmake predefines will
be present in all the cases.

Fixes:
[1]

[1] ef9f0a07ed
[2] cc737ae829

Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2026-02-05 08:14:47 +01:00
5 changed files with 5 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
# Locally computed
sha256 8cec35fe171a388fa9eab4366d5e1f6fcca869a995bc3ea4e3566a38a2db75c4 kodi-pvr-mythtv-21.2.3-Omega.tar.gz
sha256 c34a54d06aefef1c4c250ab766c459becc1fdaf42782da75cf749b71585bf6dd kodi-pvr-mythtv-21.2.14-Omega.tar.gz
sha256 310782e1abd43c4de6217c513e328bddf999d39302d67c6e05b10a59959827af LICENSE.md

View File

@@ -4,7 +4,7 @@
#
################################################################################
KODI_PVR_MYTHTV_VERSION = 21.2.3-Omega
KODI_PVR_MYTHTV_VERSION = 21.2.14-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

View File

@@ -1,3 +1,3 @@
# Locally computed
sha256 28750b8513ca2df69d2d661a1d832689a1571b6793e98243eb29e3aed03c7f26 kodi-pvr-waipu-21.12.5-Omega.tar.gz
sha256 80e4723a228b27447fe6e83c9e2aa4e9ebfc0d2a3618fbe0491b6d2440124b64 kodi-pvr-waipu-21.12.6-Omega.tar.gz
sha256 4202d4fb329f58c83ba921b56d7071e37f7df3f15b3820a3a04ef8eee49f54d2 pvr.waipu/LICENSE.txt

View File

@@ -4,7 +4,7 @@
#
################################################################################
KODI_PVR_WAIPU_VERSION = 21.12.5-Omega
KODI_PVR_WAIPU_VERSION = 21.12.6-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

View File

@@ -1 +1 @@
include(Platform/Linux-Initialize)
include(Platform/Linux-Initialize OPTIONAL)