From d629d72785babe535d1a0cb3ba2d8077391f217f Mon Sep 17 00:00:00 2001 From: MutzelMe Date: Mon, 10 Nov 2025 19:28:59 +0100 Subject: [PATCH 1/2] Update Packaging.cmake - libcec7 libcec6 is not available with Ubuntu 25.10. repository, but libcec7 --- cmake/Packaging.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Packaging.cmake b/cmake/Packaging.cmake index fb33723fb..b212b2d3e 100644 --- a/cmake/Packaging.cmake +++ b/cmake/Packaging.cmake @@ -78,7 +78,7 @@ endif() # https://cmake.org/cmake/help/latest/cpack_gen/deb.html if(CPACK_GENERATOR MATCHES ".*DEB.*") set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${CMAKE_SOURCE_DIR}/cmake/linux/package-scripts/preinst;${CMAKE_SOURCE_DIR}/cmake/linux/package-scripts/postinst;${CMAKE_SOURCE_DIR}/cmake/linux/package-scripts/prerm") - set(CPACK_DEBIAN_PACKAGE_DEPENDS "libcec6 | libcec4 | libcec (>= 4.0)") + set(CPACK_DEBIAN_PACKAGE_DEPENDS "libcec7 | libcec6 | libcec4 | libcec (>= 4.0)") set(CPACK_DEBIAN_PACKAGE_SECTION "Miscellaneous") endif() From 5a281f749bb0bdc6f101d2503b80e03ef501f419 Mon Sep 17 00:00:00 2001 From: MutzelMe Date: Tue, 11 Nov 2025 09:13:47 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md Fix for #1934 - Ubuntu 25.10 libcec install error. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca6a6c0ce..8cb30178c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - LED-devices are not retrying to establish connectivity, if supported by the device - LED-devices are resolving IP-addresses for API and UDP two times in sequence - LED-device updates queue up and let Hyperion crash (#1887) + - Install - Ubuntu 25.10 unable to install due to libcec package (#1934) ---