From e33f19dd0d20d9e6317430ebf2936f558e602b1d Mon Sep 17 00:00:00 2001 From: Michal Hrusecky <michal.hrusecky@turris.com> Date: Fri, 6 Dec 2024 09:26:14 +0100 Subject: [PATCH] packages/miniupnpd: Fix firewall dependencies --- NEWS | 1 + ...iniupnp-Add-dependencies-on-firewall.patch | 41 +++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 patches/packages/to-upstream/0022-miniupnp-Add-dependencies-on-firewall.patch diff --git a/NEWS b/NEWS index d6e2c9ddf..7fcd8b4dd 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,7 @@ • reForis: Update to version 3.2.0 🛠Bug Fixes + • miniupnpd: Fix dependencies on firewall • uboot-tools: More robust handling of U-Boot during update • user-notify: Adjust notification to to make them less likely to end up in spam diff --git a/patches/packages/to-upstream/0022-miniupnp-Add-dependencies-on-firewall.patch b/patches/packages/to-upstream/0022-miniupnp-Add-dependencies-on-firewall.patch new file mode 100644 index 000000000..e15e66e71 --- /dev/null +++ b/patches/packages/to-upstream/0022-miniupnp-Add-dependencies-on-firewall.patch @@ -0,0 +1,41 @@ +From 3854923f78610978f90b6ad931823443db14302f Mon Sep 17 00:00:00 2001 +From: Michal Hrusecky <michal.hrusecky@turris.com> +Date: Fri, 6 Dec 2024 09:22:48 +0100 +Subject: [PATCH] miniupnp: Add dependencies on firewall + +--- + net/miniupnpd/Makefile | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/net/miniupnpd/Makefile b/net/miniupnpd/Makefile +index 6373f309c..a6315ab0e 100644 +--- a/net/miniupnpd/Makefile ++++ b/net/miniupnpd/Makefile +@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk + + PKG_NAME:=miniupnpd + PKG_VERSION:=2.3.3 +-PKG_RELEASE:=1 ++PKG_RELEASE:=2 + + PKG_SOURCE_URL:=https://miniupnp.tuxfamily.org/files + PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +@@ -42,6 +42,7 @@ endef + define Package/miniupnpd-iptables + $(call Package/miniupnpd/Default) + DEPENDS+= \ ++ +firewall \ + +IPV6:ip6tables \ + +IPV6:libip6tc \ + +iptables \ +@@ -54,6 +55,7 @@ endef + define Package/miniupnpd-nftables + $(call Package/miniupnpd/Default) + DEPENDS+= \ ++ +firewall4 \ + +libnftnl + TITLE+= (nftables) + VARIANT:=nftables +-- +2.47.1 + -- GitLab