From 5aeb11d169ea55c32f0f7dc5cb9369079938c75a Mon Sep 17 00:00:00 2001 From: coolsnowwolf Date: Sat, 12 Apr 2025 02:47:29 +0800 Subject: [PATCH] rpcd: update to Git HEAD (2024-12-02) --- package/system/rpcd/Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/package/system/rpcd/Makefile b/package/system/rpcd/Makefile index de11ecb3f..8fffb9405 100644 --- a/package/system/rpcd/Makefile +++ b/package/system/rpcd/Makefile @@ -12,9 +12,9 @@ PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=$(PROJECT_GIT)/project/rpcd.git -PKG_MIRROR_HASH:=7038ab08dc67f7440effbf04ab2f083915c819f758ab16b0fbdf846bd3b87773 -PKG_SOURCE_DATE:=2023-01-21 -PKG_SOURCE_VERSION:=c0df2a7af7d6284f4a446de15d0dab17124d9448 +PKG_MIRROR_HASH:=ec893786c7b1de08a260c791a15a7df471ff95d477ad1a440dc8d8bf63a0be2b +PKG_SOURCE_DATE:=2024-12-02 +PKG_SOURCE_VERSION:=cc9a471c32e106fa9ee045540613fefdc31c5cd2 PKG_MAINTAINER:=Jo-Philipp Wich PKG_LICENSE:=ISC @@ -68,8 +68,9 @@ endef # 1: plugin name -# 2: extra dependencies +# 2: additional dependencies # 3: plugin title/description +# 4: extra dependencies define BuildPlugin PKG_CONFIG_DEPENDS += CONFIG_PACKAGE_rpcd-mod-$(1) @@ -78,6 +79,7 @@ define BuildPlugin $(Package/rpcd/default) TITLE+= ($(1) plugin) DEPENDS+=rpcd $(2) + EXTRA_DEPENDS:=$(4) endef define Package/rpcd-mod-$(1)/description @@ -101,5 +103,5 @@ endef $(eval $(call BuildPackage,rpcd)) $(eval $(call BuildPlugin,file,,Provides ubus calls for file and directory operations.)) $(eval $(call BuildPlugin,rpcsys,,Provides ubus calls for sysupgrade and password changing.)) -$(eval $(call BuildPlugin,iwinfo,+libiwinfo,Provides ubus calls for accessing iwinfo data.)) +$(eval $(call BuildPlugin,iwinfo,+libiwinfo,Provides ubus calls for accessing iwinfo data.,libiwinfo (>=2023.01.21))) $(eval $(call BuildPlugin,ucode,+libucode,Allows implementing plugins using ucode scripts.))