From 5d095a136610e599bbd73ff164aeec89d2cde171 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 7 Feb 2022 22:00:12 -0800 Subject: [PATCH] adblock: make reproducible Need to get rid of the timestamp. Signed-off-by: Rosen Penev --- net/adblock/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/adblock/Makefile b/net/adblock/Makefile index 9d322f022..1753856ce 100644 --- a/net/adblock/Makefile +++ b/net/adblock/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=adblock PKG_VERSION:=4.1.3 -PKG_RELEASE:=4 +PKG_RELEASE:=5 PKG_LICENSE:=GPL-3.0-or-later PKG_MAINTAINER:=Dirk Brenken @@ -59,7 +59,7 @@ define Package/adblock/install $(INSTALL_CONF) ./files/adblock.whitelist $(1)/etc/adblock $(INSTALL_CONF) ./files/adblock.categories $(1)/etc/adblock $(INSTALL_CONF) ./files/adblock.sources $(1)/etc/adblock - gzip -9 $(1)/etc/adblock/adblock.sources + gzip -9n $(1)/etc/adblock/adblock.sources endef $(eval $(call BuildPackage,adblock))