keepalived: update PKG_VERSION to 2.1.5 13641/head
authorFlorian Eckert <fe@dev.tdt.de>
Mon, 5 Oct 2020 07:19:44 +0000 (09:19 +0200)
committerFlorian Eckert <fe@dev.tdt.de>
Mon, 12 Oct 2020 06:55:18 +0000 (08:55 +0200)
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
net/keepalived/Makefile
net/keepalived/patches/0001-Fix-building-with-disable-libipvs-dynamic.patch [deleted file]

index be6d806c78b648bac14317de1205a877616bc1be..63c568440f9560047f5a456f00d68566c81846cb 100644 (file)
@@ -8,12 +8,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=keepalived
-PKG_VERSION:=2.0.20
-PKG_RELEASE:=4
+PKG_VERSION:=2.1.5
+PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=https://www.keepalived.org/software
-PKG_HASH:=9670fbc5eb3dc113828be8b702549dc68ec9578cf83287520d935be76fc8f193
+PKG_HASH:=d94d7ccbc5c95ab39c95a0e5ae89a25a224f39b6811f2930d3a1885a69732259
 
 PKG_CPE_ID:=cpe:/a:keepalived:keepalived
 PKG_LICENSE:=GPL-2.0-or-later
diff --git a/net/keepalived/patches/0001-Fix-building-with-disable-libipvs-dynamic.patch b/net/keepalived/patches/0001-Fix-building-with-disable-libipvs-dynamic.patch
deleted file mode 100644 (file)
index 33d7ed1..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-From 42c020aab6e51d09f22a2e4a33ce6fd73009e2dc Mon Sep 17 00:00:00 2001
-From: Quentin Armitage <quentin@armitage.org.uk>
-Date: Wed, 4 Mar 2020 12:21:43 +0000
-Subject: [PATCH] Fix building with --disable-libipvs-dynamic
-
-Issue #1516 reported by the OpenWRT project identified that
-keepalived_modprobe() was not defined if --disable-libipvs-dynamic
-was specified.
-
-Signed-off-by: Quentin Armitage <quentin@armitage.org.uk>
----
- lib/utils.c | 4 ++--
- lib/utils.h | 2 +-
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/lib/utils.c b/lib/utils.c
-index 009da0ce..7f16f444 100644
---- a/lib/utils.c
-+++ b/lib/utils.c
-@@ -34,7 +34,7 @@
- #include <stdint.h>
- #include <errno.h>
- #include <sys/prctl.h>
--#if defined _WITH_LVS_ || defined _LIBIPSET_DYNAMIC_
-+#if defined _WITH_LVS_ || defined _HAVE_LIBIPSET_
- #include <sys/wait.h>
- #endif
- #ifdef _WITH_PERF_
-@@ -1097,7 +1097,7 @@ memcmp_constant_time(const void *s1, const void *s2, size_t n)
-  * Utility functions coming from Wensong code
-  */
--#if defined _WITH_LVS_ || defined _LIBIPSET_DYNAMIC_
-+#if defined _WITH_LVS_ || defined _HAVE_LIBIPSET_
- static char*
- get_modprobe(void)
- {
-diff --git a/lib/utils.h b/lib/utils.h
-index 66d64d9f..22325023 100644
---- a/lib/utils.h
-+++ b/lib/utils.h
-@@ -263,7 +263,7 @@ extern int open_pipe(int [2]);
- #endif
- extern int memcmp_constant_time(const void *, const void *, size_t);
--#if defined _WITH_LVS_ || defined _LIBIPSET_DYNAMIC_
-+#if defined _WITH_LVS_ || defined _HAVE_LIBIPSET_
- extern bool keepalived_modprobe(const char *);
- #endif
--- 
-2.20.1
-