From 008e51950b8fba8690f62a0dfb9a1a0c5683c853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20Andr=C3=A9s=20P=C3=A9rez?= Date: Sun, 15 Mar 2026 17:33:14 +0100 Subject: [PATCH] libubox: set abi version to previous bump for stable release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In order to keep a coherent set of dependencies of the packages in the target specific packages (nonshared) in the stable 25.12.0 release repositories and keep ImageBuilders and ASU functional, hard code the abi-version used in that builbot phase1 run: "20260213". *abi compatibility has not changed between 20260213 and 20260313 anyway. Fixes: 8aac058ef0a58f394a920e5c39ac0390363c18f9 ("libubox: update to Git HEAD (2026-03-13)") Suggested-by: Felix Fietkau Signed-off-by: Mario Andrés Pérez Link: https://github.com/openwrt/openwrt/pull/22437 Signed-off-by: Hauke Mehrtens --- package/libs/libubox/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/libs/libubox/Makefile b/package/libs/libubox/Makefile index d0d1c2570d..6fac67d421 100644 --- a/package/libs/libubox/Makefile +++ b/package/libs/libubox/Makefile @@ -1,14 +1,15 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libubox -PKG_RELEASE=1 +PKG_RELEASE=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=$(PROJECT_GIT)/project/libubox.git PKG_MIRROR_HASH:=55b2298ea74bb4c7267e4b615d442aeff601e0de88ec0e641e4c40eed8454e85 PKG_SOURCE_DATE:=2026-03-13 PKG_SOURCE_VERSION:=815633847cd32ffe6da28943cbeb37edc88265c8 -PKG_ABI_VERSION:=$(call abi_version_str,$(PKG_SOURCE_DATE)) +# PKG_ABI_VERSION:=$(call abi_version_str,$(PKG_SOURCE_DATE)) +PKG_ABI_VERSION:=20260213 CMAKE_INSTALL:=1 PKG_LICENSE:=ISC