From 7837a8d1495fe0fd45fd66e51115d6f89faced19 Mon Sep 17 00:00:00 2001 From: George Sapkin Date: Fri, 14 Mar 2025 15:19:58 +0200 Subject: [PATCH 1/2] adguardhome: remove unnecessary build options Remove `node-yarn/host` because the upstream switched to npm Remove `NODE_OPTIONS=--openssl-legacy-provider` because it's not necessary since Node.js 18.x Link: https://github.com/AdguardTeam/AdGuardHome/commit/1afe226ce8f8af179e1eacccf4cdd63823f0c358#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5R210-L211 Link: https://github.com/AdguardTeam/AdGuardHome/commit/1afe226ce8f8af179e1eacccf4cdd63823f0c358#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5L223-L230 Signed-off-by: George Sapkin --- net/adguardhome/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/adguardhome/Makefile b/net/adguardhome/Makefile index f5ee18aac359a..ae5fa94ccb72d 100644 --- a/net/adguardhome/Makefile +++ b/net/adguardhome/Makefile @@ -18,7 +18,7 @@ PKG_LICENSE:=GPL-3.0-only PKG_LICENSE_FILES:=LICENSE.txt PKG_MAINTAINER:=Dobroslaw Kijowski -PKG_BUILD_DEPENDS:=golang/host node/host node-yarn/host +PKG_BUILD_DEPENDS:=golang/host node/host PKG_BUILD_PARALLEL:=1 PKG_BUILD_FLAGS:=no-mips16 @@ -56,7 +56,7 @@ endef define Build/Compile ( \ pushd $(PKG_BUILD_DIR) ; \ - NODE_OPTIONS=--openssl-legacy-provider make js-deps js-build ; \ + make js-deps js-build ; \ popd ; \ $(call GoPackage/Build/Compile) ; \ ) From ecc3025228e85b0357ddee1f295eda5f95e27aff Mon Sep 17 00:00:00 2001 From: George Sapkin Date: Fri, 14 Mar 2025 15:22:48 +0200 Subject: [PATCH 2/2] adguardhome: bump to 0.107.57 Changelog: https://github.com/AdguardTeam/AdGuardHome/releases/tag/v0.107.57 Signed-off-by: George Sapkin --- net/adguardhome/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/adguardhome/Makefile b/net/adguardhome/Makefile index ae5fa94ccb72d..89dab22e652a0 100644 --- a/net/adguardhome/Makefile +++ b/net/adguardhome/Makefile @@ -6,12 +6,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=adguardhome -PKG_VERSION:=0.107.56 +PKG_VERSION:=0.107.57 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/AdguardTeam/AdGuardHome/tar.gz/v$(PKG_VERSION)? -PKG_HASH:=e4285c8d7611fe677e45dad469fbc0237ebeea57094148a059edd5aa32ab8fce +PKG_HASH:=9df951486dab0e83485b596c0393f91d4ff2994de26101b43af8344efb7c1536 PKG_BUILD_DIR:=$(BUILD_DIR)/AdGuardHome-$(PKG_VERSION) PKG_LICENSE:=GPL-3.0-only