mirror of
https://github.com/openwrt/packages.git
synced 2026-05-30 03:36:24 +08:00
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 <jens@wagner2013.de>
This commit is contained in:
committed by
Josef Schlehofer
parent
4045db6ae4
commit
f2d2dabbc6
@@ -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 <jens@wagner2013.de>
|
||||
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))
|
||||
|
||||
@@ -1,35 +0,0 @@
|
||||
From baad0efca89f0d8fe370591283d87a6e8e7dee4c Mon Sep 17 00:00:00 2001
|
||||
From: Alper Ak <alperyasinak1@gmail.com>
|
||||
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 <min> value. Or, use the <min>...<max> syntax
|
||||
| to tell CMake that the project requires at least <min> but has been updated
|
||||
| to work with policies introduced by <max> or earlier.
|
||||
|
|
||||
| Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.
|
||||
|
|
||||
|
|
||||
| -- Configuring incomplete, errors occurred!
|
||||
|
||||
Signed-off-by: Alper Ak <alperyasinak1@gmail.com>
|
||||
---
|
||||
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)
|
||||
Reference in New Issue
Block a user