From f2d2dabbc6ee51b9910628887eee4749a1a4c789 Mon Sep 17 00:00:00 2001 From: Jens Wagner Date: Fri, 15 May 2026 19:21:29 +0200 Subject: [PATCH] mbpoll: update to 1.5.4 Removed patch, as fixed in new source package now Corrected path from /bin/mbpoll to /usr/bin/mbpoll All changes from 1.5.2 can be found here: https://github.com/epsilonrt/mbpoll/compare/v1.5.2...v1.5.4 Signed-off-by: Jens Wagner --- utils/mbpoll/Makefile | 8 ++--- ...-required-version-to-3-5-for-CMake-4.patch | 35 ------------------- 2 files changed, 4 insertions(+), 39 deletions(-) delete mode 100644 utils/mbpoll/patches/010-cmake-Set-minimum-required-version-to-3-5-for-CMake-4.patch diff --git a/utils/mbpoll/Makefile b/utils/mbpoll/Makefile index 29127b506a..49429935fe 100644 --- a/utils/mbpoll/Makefile +++ b/utils/mbpoll/Makefile @@ -1,12 +1,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mbpoll -PKG_VERSION:=1.5.2 +PKG_VERSION:=1.5.4 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/epsilonrt/mbpoll/archive/refs/tags/v$(PKG_VERSION).tar.gz? -PKG_HASH:=7d960cd4459b5f7c2412abc51aba93a20b6114fd75d1de412b1e540cfb63bfec +PKG_HASH:=a9bcc3afa3b85b3794505d07827873ead280d96a94769d236892eb8a4fb9956f PKG_MAINTAINER:=Jens Wagner PKG_LICENSE:=GPL-3.0-or-later @@ -30,8 +30,8 @@ define Package/mbpoll/description endef define Package/mbpoll/install - $(INSTALL_DIR) $(1)/bin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/mbpoll $(1)/bin/ + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/mbpoll $(1)/usr/bin/ endef $(eval $(call BuildPackage,mbpoll)) diff --git a/utils/mbpoll/patches/010-cmake-Set-minimum-required-version-to-3-5-for-CMake-4.patch b/utils/mbpoll/patches/010-cmake-Set-minimum-required-version-to-3-5-for-CMake-4.patch deleted file mode 100644 index f55c71997e..0000000000 --- a/utils/mbpoll/patches/010-cmake-Set-minimum-required-version-to-3-5-for-CMake-4.patch +++ /dev/null @@ -1,35 +0,0 @@ -From baad0efca89f0d8fe370591283d87a6e8e7dee4c Mon Sep 17 00:00:00 2001 -From: Alper Ak -Date: Mon, 7 Jul 2025 20:05:36 +0300 -Subject: [PATCH] cmake: Set minimum required version to 3.5 for CMake 4+ - compatibility - -Fix: - -| CMake Error at CMakeLists.txt:3 (cmake_minimum_required): -| Compatibility with CMake < 3.5 has been removed from CMake. -| -| Update the VERSION argument value. Or, use the ... syntax -| to tell CMake that the project requires at least but has been updated -| to work with policies introduced by or earlier. -| -| Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. -| -| -| -- Configuring incomplete, errors occurred! - -Signed-off-by: Alper Ak ---- - CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -1,6 +1,6 @@ - # -*- CMakeLists.txt generated by CodeLite IDE. Do not edit by hand -*- - --cmake_minimum_required(VERSION 2.9) -+cmake_minimum_required(VERSION 3.5) - - # Workspace name - project(mbpoll)