From 455a336911f0086206ce3197251f915b53315571 Mon Sep 17 00:00:00 2001 From: Josef Schlehofer Date: Sun, 5 Nov 2023 14:51:31 +0100 Subject: [PATCH] netbird: downgrade to version 0.17.0 The version, which is currently in OpenWrt 22.03 requires Go 1.20. See the output: ../../../../../dl/go-mod-cache/github.com/netbirdio/wireguard-go@v0.0.0-20230524172305-5a498a82b33f/tun/tun_linux.go:362:18: undefined: errors.Join note: module requires Go 1.20 Having Go 1.20 in OpenWrt 22.03 could be time consuming and as it is the stable branch, it seems like better idea to downgrade netbird to version 0.17.0, which is the latest version, which requires to use Go 1.19. Signed-off-by: Josef Schlehofer --- net/netbird/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/netbird/Makefile b/net/netbird/Makefile index 2bec5467d2..5edd79639c 100644 --- a/net/netbird/Makefile +++ b/net/netbird/Makefile @@ -1,12 +1,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=netbird -PKG_VERSION:=0.21.7 +PKG_VERSION:=0.17.0 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/netbirdio/netbird/tar.gz/v$(PKG_VERSION)? -PKG_HASH:=f2a18a6b9e6af15c182fd023cc47aecb2062d3da586820746f4987856d20f0ac +PKG_HASH:=c9bd9ee9eeb7fe18be78fb7d6a66281113a15c34a6d942c169c67caceec59dbc PKG_MAINTAINER:=Oskari Rauta PKG_LICENSE:=BSD-3-Clause