Compare commits

...

3 Commits

Author SHA1 Message Date
Andreas Gnau
aa0d2c6686 obuspa: vendor: bbf_plugin: Fix compatibility with CMake4
CMake 4 has dropped compatibility with old versions < 3.5, and will
drop compatibility for < 3.10 in the future. Update the minimum required
CMake version accordingly.

Signed-off-by: Andreas Gnau <andreas.gnau@iopsys.eu>
2025-12-18 17:18:56 +05:30
Amin Ben Romdhane
c61e80db94 decollector: 6.2.3.9 2025-12-18 12:37:50 +01:00
Amin Ben Romdhane
d7fe821608 wifidmd: 1.4.9 2025-12-18 10:59:42 +01:00
3 changed files with 31 additions and 4 deletions

View File

@@ -6,12 +6,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=decollector
PKG_VERSION:=6.2.3.8
PKG_VERSION:=6.2.3.9
LOCAL_DEV=0
ifneq ($(LOCAL_DEV),1)
PKG_SOURCE_PROTO:=git
PKG_SOURCE_VERSION:=8396091a83aefaf8423dfd41a957b04f3ed821e7
PKG_SOURCE_VERSION:=d1d948a48952fe2091e84af1293a6e77857439cf
PKG_SOURCE_URL:=https://dev.iopsys.eu/multi-ap/decollector.git
PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_VERSION).tar.zst
PKG_MIRROR_HASH:=skip

View File

@@ -0,0 +1,27 @@
From ba976fdb53a7c8690fe7660d44c715838ad239cd Mon Sep 17 00:00:00 2001
From: Andreas Gnau <andreas.gnau@iopsys.eu>
Date: Mon, 15 Dec 2025 07:26:29 +0100
Subject: [PATCH] vendor: bbf_plugin: Fix compatibility with CMake4
CMake 4 has dropped compatibility with old versions < 3.5, and will
drop compatibility for < 3.10 in the future. Update the minimum required
CMake version accordingly.
Signed-off-by: Andreas Gnau <andreas.gnau@iopsys.eu>
---
src/vendor/bbf_plugin/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/vendor/bbf_plugin/CMakeLists.txt b/src/vendor/bbf_plugin/CMakeLists.txt
index e145dd4f6c12..9df17a1f8a7d 100644
--- a/src/vendor/bbf_plugin/CMakeLists.txt
+++ b/src/vendor/bbf_plugin/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.0)
+cmake_minimum_required(VERSION 3.0...3.10)
PROJECT(libuspagentdm.so)
--
2.52.0

View File

@@ -5,13 +5,13 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=wifidmd
PKG_VERSION:=1.4.8
PKG_VERSION:=1.4.9
LOCAL_DEV:=0
ifneq ($(LOCAL_DEV),1)
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://dev.iopsys.eu/bbf/wifidmd.git
PKG_SOURCE_VERSION:=f21247fb72f9cdcbaa63a7de6281b0b12a9d632f
PKG_SOURCE_VERSION:=28eac5bf52c16b71213974e15cd9c559b61e1c5d
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.zst
PKG_MIRROR_HASH:=skip
endif