uspot: update to Git HEAD (2024-05-03)

5e2d15a110bb treewide: remove tip_mode
e2dbdef4cf1e treewide: rename spotfilter -> uspotfilter
ef0f5291365b uspot/uspotfilter: implement disconnect_delay
92d3356d3fb3 update README

Update the package Makefile to reflect the changes from the following
above-listed commit:

e2dbdef4cf1e treewide: rename spotfilter -> uspotfilter

Signed-off-by: Thibaut VARÈNE <hacks@slashdirt.org>
This commit is contained in:
Thibaut VARÈNE
2024-05-03 16:57:38 +02:00
committed by Tianling Shen
parent 69166dbbb7
commit 5181ce4a48

View File

@@ -8,9 +8,9 @@ PKG_MAINTAINER:=Thibaut VARÈNE <hacks@slashdirt.org>
PKG_SOURCE_PROTO:=git PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/f00b4r0/uspot.git PKG_SOURCE_URL:=https://github.com/f00b4r0/uspot.git
PKG_SOURCE_DATE:=2024-03-25 PKG_SOURCE_DATE:=2024-05-03
PKG_SOURCE_VERSION:=094f0df88150ff2c351cfca4fabf76a7edcac79d PKG_SOURCE_VERSION:=92d3356d3fb3ae36199dbd494b5d9a9ae1a9db07
PKG_MIRROR_HASH:=9fb3020bbd6960642bbc59b4448f7922aca3ff50647d1bc6dcf59b8049506587 PKG_MIRROR_HASH:=ae6bb9245945cf207d91b1aa36fb0db2b03333343714c1cacd046dd2c7ee3c79
CMAKE_SOURCE_SUBDIR:=src CMAKE_SOURCE_SUBDIR:=src
@@ -25,7 +25,7 @@ define Package/uspot
EXTRA_DEPENDS:=ucode (>= 2023-11-07) EXTRA_DEPENDS:=ucode (>= 2023-11-07)
DEPENDS:=+conntrack \ DEPENDS:=+conntrack \
+libblobmsg-json +liblucihttp-ucode +libradcli +libubox +libubus +libuci \ +libblobmsg-json +liblucihttp-ucode +libradcli +libubox +libubus +libuci \
+spotfilter \ +uspotfilter \
+ucode +ucode-mod-log +ucode-mod-math +ucode-mod-nl80211 +ucode-mod-rtnl +uhttpd-mod-ucode +ucode-mod-uloop +ucode +ucode-mod-log +ucode-mod-math +ucode-mod-nl80211 +ucode-mod-rtnl +uhttpd-mod-ucode +ucode-mod-uloop
endef endef
@@ -61,16 +61,14 @@ endef
define Package/uspotfilter define Package/uspotfilter
SECTION:=net SECTION:=net
CATEGORY:=Network CATEGORY:=Network
TITLE:=uspot implementation of spotfilter TITLE:=uspot firewall interface
PROVIDES:=spotfilter
CONFLICTS:=spotfilter
EXTRA_DEPENDS:=ucode (>= 2023-11-07) EXTRA_DEPENDS:=ucode (>= 2023-11-07)
DEPENDS:=+conntrack +nftables-json +ucode +ucode-mod-rtnl +ucode-mod-uloop DEPENDS:=+conntrack +nftables-json +ucode +ucode-mod-rtnl +ucode-mod-uloop
PKGARCH:=all PKGARCH:=all
endef endef
define Package/uspotfilter/description define Package/uspotfilter/description
This package provides the nftables firewall interface to spotfilter. This package provides the nftables firewall interface to uspot.
It is compatible with firewall4. It is compatible with firewall4.
endef endef
@@ -91,7 +89,7 @@ endef
define Package/uspotfilter/install define Package/uspotfilter/install
$(INSTALL_DIR) $(1)/usr/share $(1)/etc/init.d $(INSTALL_DIR) $(1)/usr/share $(1)/etc/init.d
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/etc/init.d/spotfilter $(1)/etc/init.d/spotfilter $(INSTALL_BIN) $(PKG_BUILD_DIR)/files/etc/init.d/uspotfilter $(1)/etc/init.d/uspotfilter
$(CP) $(PKG_BUILD_DIR)/files/usr/share/uspotfilter $(1)/usr/share/ $(CP) $(PKG_BUILD_DIR)/files/usr/share/uspotfilter $(1)/usr/share/
endef endef