keepalived: bump to 2.3.3
authorStijn Tintel <[email protected]>
Wed, 30 Apr 2025 14:14:02 +0000 (17:14 +0300)
committerFlorian Eckert <[email protected]>
Wed, 30 Apr 2025 18:42:05 +0000 (20:42 +0200)
Remove backport patches that are included in this release.

Signed-off-by: Stijn Tintel <[email protected]>
net/keepalived/Makefile
net/keepalived/patches/001-vrrp-Don-t-include-linux-if_ether.h-if-not-needed.patch [deleted file]
net/keepalived/patches/002-vrrp-fix-reading-of-iproute2-conf-files-when-directo.patch [deleted file]

index edbe8d64840861ce50f43f5f272b14b42439dec4..d9f23d85258a809d95921171d7c53d558b00133c 100644 (file)
@@ -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 (file)
index 511ac6d..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-From f129c588f7c8a66e595d8ae96a43d585018e79cd Mon Sep 17 00:00:00 2001
-From: Quentin Armitage <[email protected]>
-Date: Thu, 7 Nov 2024 11:09:43 +0000
-Subject: [PATCH] vrrp: Don't include <linux/if_ether.h> if not needed
-
-The musl headers do not allow including both <linux/if_ether.h> and
-<net/ethernet.h> since they both define struct ethhdr.
-
-It is likely that we do not need to include <linux/if_ether.h> at all
-since with both glibc and musl including  <net/ethernet.h> is sufficient,
-but removing <linux/if_ether.h> is for another day.
-
-Signed-off-by: Quentin Armitage <[email protected]>
----
- 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 <netinet/ip6.h>
- #include <stdint.h>
- #include <net/if_arp.h>
--#include <linux/if_ether.h>
- #include <net/ethernet.h>
-+#if !defined ETH_HLEN || !defined ETH_ZLEN
-+#include <linux/if_ether.h>           /* This may not be needed at all - try removing and see if any issues raised */
-+#endif
- #ifdef _NETWORK_TIMESTAMP_
- #include <linux/net_tstamp.h>
- #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 (file)
index dfb881e..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-From 042dc49f8781cbc914c06e99f15de94bd153d4e2 Mon Sep 17 00:00:00 2001
-From: Quentin Armitage <[email protected]>
-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 <[email protected]>
----
- 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