From: Stijn Tintel Date: Wed, 30 Apr 2025 14:14:02 +0000 (+0300) Subject: keepalived: bump to 2.3.3 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=a21eb339b307739b5418b0d3d31632180f0ba439;p=openwrt-packages.git keepalived: bump to 2.3.3 Remove backport patches that are included in this release. Signed-off-by: Stijn Tintel --- diff --git a/net/keepalived/Makefile b/net/keepalived/Makefile index edbe8d648..d9f23d852 100644 --- a/net/keepalived/Makefile +++ b/net/keepalived/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=keepalived -PKG_VERSION:=2.3.2 +PKG_VERSION:=2.3.3 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://www.keepalived.org/software -PKG_HASH:=77f4a22e5a23fa8e49b8916acdfb584c864e72905a2f1de2a7f62ed40a896160 +PKG_HASH:=2288c5c7609fa452782b7acefa19acce742d0204dc17f54d36da46b10f8b590c PKG_CPE_ID:=cpe:/a:keepalived:keepalived PKG_LICENSE:=GPL-2.0-or-later diff --git a/net/keepalived/patches/001-vrrp-Don-t-include-linux-if_ether.h-if-not-needed.patch b/net/keepalived/patches/001-vrrp-Don-t-include-linux-if_ether.h-if-not-needed.patch deleted file mode 100644 index 511ac6daa..000000000 --- a/net/keepalived/patches/001-vrrp-Don-t-include-linux-if_ether.h-if-not-needed.patch +++ /dev/null @@ -1,31 +0,0 @@ -From f129c588f7c8a66e595d8ae96a43d585018e79cd Mon Sep 17 00:00:00 2001 -From: Quentin Armitage -Date: Thu, 7 Nov 2024 11:09:43 +0000 -Subject: [PATCH] vrrp: Don't include if not needed - -The musl headers do not allow including both and - since they both define struct ethhdr. - -It is likely that we do not need to include at all -since with both glibc and musl including is sufficient, -but removing is for another day. - -Signed-off-by: Quentin Armitage ---- - keepalived/vrrp/vrrp.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - ---- a/keepalived/vrrp/vrrp.c -+++ b/keepalived/vrrp/vrrp.c -@@ -40,8 +40,10 @@ - #include - #include - #include --#include - #include -+#if !defined ETH_HLEN || !defined ETH_ZLEN -+#include /* This may not be needed at all - try removing and see if any issues raised */ -+#endif - #ifdef _NETWORK_TIMESTAMP_ - #include - #endif diff --git a/net/keepalived/patches/002-vrrp-fix-reading-of-iproute2-conf-files-when-directo.patch b/net/keepalived/patches/002-vrrp-fix-reading-of-iproute2-conf-files-when-directo.patch deleted file mode 100644 index dfb881e2e..000000000 --- a/net/keepalived/patches/002-vrrp-fix-reading-of-iproute2-conf-files-when-directo.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 042dc49f8781cbc914c06e99f15de94bd153d4e2 Mon Sep 17 00:00:00 2001 -From: Quentin Armitage -Date: Sun, 10 Nov 2024 11:31:40 +0000 -Subject: [PATCH] vrrp: fix reading of iproute2 conf files when directories - don't exist - -Signed-off-by: Quentin Armitage ---- - lib/rttables.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - ---- a/lib/rttables.c -+++ b/lib/rttables.c -@@ -412,8 +412,9 @@ initialise_list(list_head_t *l, const ch - - read_file(path, l, max); - } -+ -+ closedir(dir); - } -- closedir(dir); - #endif - - /* Now read the entries in the IPROUTE_ETC_DIR subdirectory */ -@@ -425,8 +426,9 @@ initialise_list(list_head_t *l, const ch - - read_file(path, l, max); - } -+ -+ closedir(dir); - } -- closedir(dir); - - FREE_PTR(path); - #ifdef IPROUTE_USR_DIR