From b27d4aedfff58ea822af889060b44ca9284d9c59 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Wed, 30 Jul 2025 17:54:27 +0800 Subject: libcec: upgrade 7.0.0 -> 7.1.1 Changelog: ========== - [libcec] fix incorrect preprocessor command - [cmake] Fix win x64 and arm64 detection in cmake - add Teufel vendor id - RPiCECAdapterDetection: Include check that we can set passive mode - correct typo - Fix PRId64 define - Fix another NULL return - Don't use Bash for setting build variables - update ceccloader.h & make cmake obey INSTALL_BINDIR & INSTALL_LIBDIR - add system audio mode request & system audio mode status Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-oe/recipes-extended/libcec/libcec_7.0.0.bb | 43 ------------------------- meta-oe/recipes-extended/libcec/libcec_7.1.1.bb | 43 +++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 43 deletions(-) delete mode 100644 meta-oe/recipes-extended/libcec/libcec_7.0.0.bb create mode 100644 meta-oe/recipes-extended/libcec/libcec_7.1.1.bb (limited to 'meta-oe/recipes-extended/libcec') diff --git a/meta-oe/recipes-extended/libcec/libcec_7.0.0.bb b/meta-oe/recipes-extended/libcec/libcec_7.0.0.bb deleted file mode 100644 index 2def38d73f..0000000000 --- a/meta-oe/recipes-extended/libcec/libcec_7.0.0.bb +++ /dev/null @@ -1,43 +0,0 @@ -SUMMARY = "USB CEC Adaptor communication Library" -HOMEPAGE = "http://libcec.pulse-eight.com/" - -LICENSE = "GPL-2.0-or-later" -LIC_FILES_CHKSUM = "file://LICENSE.md;md5=b3a719e97f49e4841e90573f9b1a98ac" - -DEPENDS = "p8platform udev ncurses swig-native python3" - -DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'libx11 libxrandr', '', d)}" -DEPENDS:append:rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' userland', d)}" - -SRCREV = "ceeec8bfd2242792b6de59ce8fb854437208dc11" -SRC_URI = "git://github.com/Pulse-Eight/libcec.git;branch=release;protocol=https \ - file://0001-Enhance-reproducibility.patch \ - " - - -inherit cmake pkgconfig - -# default config is for RaspberryPi API, use the Linux 4.10+ API by default -PLATFORM_CMAKE_FLAGS ?= "-DHAVE_LINUX_API=1 -DHAVE_RPI_API=0 -DSKIP_PYTHON_WRAPPER=1" -EXTRA_OECMAKE += "${PLATFORM_CMAKE_FLAGS}" - -# Put client examples into separate packages -PACKAGE_BEFORE_PN += "${PN}-examples-python ${PN}-examples" -FILES:${PN}-examples-python = "${bindir}/py*" -FILES:${PN}-examples = "${bindir}" -# cec-client doesn't link with libcec, but uses LibCecInitialise to dlopen libcec, so do_package -# cannot add the runtime dependency automatically -RDEPENDS:${PN}-examples = "${PN}" -RDEPENDS:${PN}-examples-python = "python3-${BPN} python3-core" - -# Create the wrapper for python3 -PACKAGES += "python3-${BPN}" -FILES:python3-${BPN} = "${libdir}/python3* ${bindir}/py*" -RDEPENDS:${PN} = "python3-core" - -# cec-client and xbmc need the .so present to work :( -FILES:${PN} += "${libdir}/*.so" -INSANE_SKIP:${PN} = "dev-so" - -# Adapter shows up as a CDC-ACM device -RRECOMMENDS:${PN} = "kernel-module-cdc-acm" diff --git a/meta-oe/recipes-extended/libcec/libcec_7.1.1.bb b/meta-oe/recipes-extended/libcec/libcec_7.1.1.bb new file mode 100644 index 0000000000..9d0015534b --- /dev/null +++ b/meta-oe/recipes-extended/libcec/libcec_7.1.1.bb @@ -0,0 +1,43 @@ +SUMMARY = "USB CEC Adaptor communication Library" +HOMEPAGE = "http://libcec.pulse-eight.com/" + +LICENSE = "GPL-2.0-or-later" +LIC_FILES_CHKSUM = "file://LICENSE.md;md5=b3a719e97f49e4841e90573f9b1a98ac" + +DEPENDS = "p8platform udev ncurses swig-native python3" + +DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'libx11 libxrandr', '', d)}" +DEPENDS:append:rpi = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', ' userland', d)}" + +SRCREV = "3519af0715e654c43382423d843ad658f2e01cb4" +SRC_URI = "git://github.com/Pulse-Eight/libcec.git;branch=release;protocol=https;tag=${BPN}-${PV} \ + file://0001-Enhance-reproducibility.patch \ + " + + +inherit cmake pkgconfig + +# default config is for RaspberryPi API, use the Linux 4.10+ API by default +PLATFORM_CMAKE_FLAGS ?= "-DHAVE_LINUX_API=1 -DHAVE_RPI_API=0 -DSKIP_PYTHON_WRAPPER=1" +EXTRA_OECMAKE += "${PLATFORM_CMAKE_FLAGS}" + +# Put client examples into separate packages +PACKAGE_BEFORE_PN += "${PN}-examples-python ${PN}-examples" +FILES:${PN}-examples-python = "${bindir}/py*" +FILES:${PN}-examples = "${bindir}" +# cec-client doesn't link with libcec, but uses LibCecInitialise to dlopen libcec, so do_package +# cannot add the runtime dependency automatically +RDEPENDS:${PN}-examples = "${PN}" +RDEPENDS:${PN}-examples-python = "python3-${BPN} python3-core" + +# Create the wrapper for python3 +PACKAGES += "python3-${BPN}" +FILES:python3-${BPN} = "${libdir}/python3* ${bindir}/py*" +RDEPENDS:${PN} = "python3-core" + +# cec-client and xbmc need the .so present to work :( +FILES:${PN} += "${libdir}/*.so" +INSANE_SKIP:${PN} = "dev-so" + +# Adapter shows up as a CDC-ACM device +RRECOMMENDS:${PN} = "kernel-module-cdc-acm" -- cgit v1.2.3-54-g00ecf