From b59f7eb8310263b49ca80309daad6b9b99d2277b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= Date: Fri, 17 Jan 2020 11:07:16 +0100 Subject: [PATCH] luci-app-sqm: Remove lua and luci-base dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We depend on luci-compat now, which will pull in luci-base, which in turn will pull in lua. So remove those two dependencies to maybe help with recursive dependency resolution errors. Fixes #5320. Signed-off-by: Toke Høiland-Jørgensen --- net/sqm-scripts/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/sqm-scripts/Makefile b/net/sqm-scripts/Makefile index cd21b0af8..335d6a01e 100644 --- a/net/sqm-scripts/Makefile +++ b/net/sqm-scripts/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=sqm-scripts PKG_SOURCE_VERSION:=ab763cba8b1516b3afa99760e0ca884f8b8d93b8 PKG_VERSION:=1.4.0 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_LICENSE:=GPLv2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE).tar.xz @@ -51,7 +51,7 @@ define Package/luci-app-sqm TITLE:=SQM Scripts - LuCI interface MAINTAINER:=Toke Høiland-Jørgensen PKGARCH:=all - DEPENDS:= +lua +luci-base +luci-compat +sqm-scripts + DEPENDS:=+luci-compat +sqm-scripts SUBMENU:=3. Applications endef