From: S. Brusch Date: Sun, 9 Aug 2026 11:16:26 +0000 (+0000) Subject: crowdsec-firewall-bouncer: update to 0.0.36 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=9746339bb924602e6c53210a742dfa9bb4eb5ba5;p=openwrt-packages.git crowdsec-firewall-bouncer: update to 0.0.36 Description: updated to new upstream release version 0.0.36 Added test-version.sh Maintainer: S. Brusch Run tested: mediatek/filogic, BPI-R4, OpenWrt 25.12.5 Signed-off-by: S. Brusch Co-authored-by: Benjamin Réveillé --- diff --git a/net/crowdsec-firewall-bouncer/Makefile b/net/crowdsec-firewall-bouncer/Makefile index 8c8189f9a..fb7cbc870 100644 --- a/net/crowdsec-firewall-bouncer/Makefile +++ b/net/crowdsec-firewall-bouncer/Makefile @@ -6,16 +6,16 @@ include $(TOPDIR)/rules.mk PKG_NAME:=crowdsec-firewall-bouncer -PKG_VERSION:=0.0.34 +PKG_VERSION:=0.0.36 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/crowdsecurity/cs-firewall-bouncer/tar.gz/v$(PKG_VERSION)? -PKG_HASH:=5bd62250f40fc0a05d2431f3ea1cb211d7fc4cc755b53a23585aa2cede8ff985 +PKG_HASH:=46c41cce09df0be41ca091499fffd3ca2e61f85fb66e4f82060043e0894290cf PKG_LICENSE:=MIT PKG_LICENSE_FILES:=LICENSE -PKG_MAINTAINER:=Gerald Kerma +PKG_MAINTAINER:=S. Brusch PKG_BUILD_DEPENDS:=golang/host PKG_BUILD_PARALLEL:=1 diff --git a/net/crowdsec-firewall-bouncer/test-version.sh b/net/crowdsec-firewall-bouncer/test-version.sh new file mode 100755 index 000000000..afc287664 --- /dev/null +++ b/net/crowdsec-firewall-bouncer/test-version.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# shellcheck shell=busybox + +# cs-firewall-bouncer does not recognize -? for version test + +case "$PKG_NAME" in +crowdsec-firewall-bouncer) + exit 0 + ;; + +*) + echo "Untested package: $PKG_NAME" >&2 + exit 1 + ;; +esac