[gentoo-commits] repo/gentoo:master commit in: sys-cluster/ipvsadm/files/, sys-cluster/ipvsadm/

2022-09-17 Thread Andreas Sturmlechner
commit: 46701711da6713dfc1aaa34d9582b1af811f20de
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Sep  3 10:47:37 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Sep 17 18:13:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46701711

sys-cluster/ipvsadm: drop 1.27-r1, EAPI-6--

Closes: https://bugs.gentoo.org/867565
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sys-cluster/ipvsadm/Manifest   |  1 -
 .../files/ipvsadm-1.27-fix-daemon-state.patch  | 56 -
 sys-cluster/ipvsadm/ipvsadm-1.27-r1.ebuild | 73 --
 3 files changed, 130 deletions(-)

diff --git a/sys-cluster/ipvsadm/Manifest b/sys-cluster/ipvsadm/Manifest
index fab6b310824c..316c23370ead 100644
--- a/sys-cluster/ipvsadm/Manifest
+++ b/sys-cluster/ipvsadm/Manifest
@@ -1,2 +1 @@
-DIST ipvsadm-1.27.tar.xz 38196 BLAKE2B 
1b8a72b11c14a909b8b7459c459195d32bb7944ed4a01d963e2b85e8279c5d7d2fd095d9c23473c64dc15881a2b22b439b39c10b2019b3183f54e22535a258a9
 SHA512 
cf982b7981674c91d1b7516de7b55cf378b306ce4a53e13976b8eeb8610015c4fa4aa9d251bc4d329db8e05c1862863160af2d3c63b76263f290087cffdf1b80
 DIST ipvsadm-1.31.tar.xz 42396 BLAKE2B 
a42ceea834fb16e25ea34417227f6b632fe3b94c8a7ce5d3daff4375884fd47f14999551eab3bf7226d5eb02f25aef4c77a8287592b642946683bc5ddc6783da
 SHA512 
1c7187405771e702eff0009d688fa697375b833a486ff88b41a4a0dcfaa3e9884c7e3bc34375efea5f6a2d025847c9fac9fd6ba694ec3bf2fc9d357eef2cb631

diff --git a/sys-cluster/ipvsadm/files/ipvsadm-1.27-fix-daemon-state.patch 
b/sys-cluster/ipvsadm/files/ipvsadm-1.27-fix-daemon-state.patch
deleted file mode 100644
index e3e5ebec72c6..
--- a/sys-cluster/ipvsadm/files/ipvsadm-1.27-fix-daemon-state.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-From 8c34d5a0d4c763db9b8f1e54be0c6c3ded6c54e0 Mon Sep 17 00:00:00 2001
-From: Alexander Holler 
-Date: Mon, 9 Jan 2012 13:16:55 +0100
-Subject: [PATCH] libipvs: Fix reporting of the state of the backup-daemon.
-
-ipvsadm -l --daemon didn't report a running ipvs-backup-daemon
-(if no master-daemon was run).
-
-It seems there was some misunderstanding of
-how the daemons got reported (without using netlink). The state of
-the backup-daemon is always reported (by the kernel) in the second
-element of type ip_vs_daemon_user which is returned by the kernel
-through IP_VS_SO_GET_DAEMON or IPVS_CMD_GET_DAEMON.
-
-Signed-off-by: Robin H. Johnson 
-

- libipvs/libipvs.c |   11 ++-
- 1 files changed, 6 insertions(+), 5 deletions(-)
-
-Note: patch adjusted slightly to apply against ipvsadm (was spun for 
keepalived) - robbat2
-
-diff --git a/libipvs/libipvs.c b/libipvs/libipvs.c
-index ea5e851..6bee837 100644
 a/libipvs/libipvs.c
-+++ b/libipvs/libipvs.c
-@@ -1003,12 +1003,9 @@ static int ipvs_daemon_parse_cb(struct nl_msg *msg, 
void *arg)
-   struct nlattr *attrs[IPVS_CMD_ATTR_MAX + 1];
-   struct nlattr *daemon_attrs[IPVS_DAEMON_ATTR_MAX + 1];
-   ipvs_daemon_t *u = (ipvs_daemon_t *)arg;
-+  __u32 state;
-   int i = 0;
- 
--  /* We may get two daemons.  If we've already got one, this is the 
second */
--  if (u[0].state)
--  i = 1;
--
-   if (genlmsg_parse(nlh, 0, attrs, IPVS_CMD_ATTR_MAX, ipvs_cmd_policy) != 
0)
-   return -1;
-   
-@@ -1021,7 +1018,11 @@ static int ipvs_daemon_parse_cb(struct nl_msg *msg, 
void *arg)
- daemon_attrs[IPVS_DAEMON_ATTR_SYNC_ID]))
-   return -1;
- 
--  u[i].state = nla_get_u32(daemon_attrs[IPVS_DAEMON_ATTR_STATE]);
-+  state = nla_get_u32(daemon_attrs[IPVS_DAEMON_ATTR_STATE]);
-+  /* The second element is used for the state of the backup daemon. */
-+  if (state == IP_VS_STATE_BACKUP)
-+  i = 1;
-+  u[i].state = state;
-   strncpy(u[i].mcast_ifn,
-   nla_get_string(daemon_attrs[IPVS_DAEMON_ATTR_MCAST_IFN]),
-   IP_VS_IFNAME_MAXLEN);
--- 
-1.7.6.5
-

diff --git a/sys-cluster/ipvsadm/ipvsadm-1.27-r1.ebuild 
b/sys-cluster/ipvsadm/ipvsadm-1.27-r1.ebuild
deleted file mode 100644
index 6cdcb9bf7853..
--- a/sys-cluster/ipvsadm/ipvsadm-1.27-r1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit epatch linux-info toolchain-funcs
-
-DESCRIPTION="utility to administer the IP virtual server services"
-HOMEPAGE="http://linuxvirtualserver.org/;
-SRC_URI="https://kernel.org/pub/linux/utils/kernel/ipvsadm/ipvsadm-${PV}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc ppc64 ~s390 sparc x86"
-IUSE="static-libs"
-
-RDEPEND=">=sys-libs/ncurses-5.2:*
-   dev-libs/libnl:=
-   >=dev-libs/popt-1.16"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-pkg_pretend() {
-   if kernel_is 2 4; then
-   eerror "${P} supports only 2.6 series and later kernels, please 
try ${PN}-1.21 for 2.4 kernels"
-   die "wrong 

[gentoo-commits] repo/gentoo:master commit in: sys-cluster/ipvsadm/files/, sys-cluster/ipvsadm/

2020-09-07 Thread Sam James
commit: fd115f21fea676352cff55337fd78486c6998897
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  7 23:35:00 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  7 23:35:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd115f21

sys-cluster/ipvsadm: drop old EAPI 4 ebuild

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James  gentoo.org>

 sys-cluster/ipvsadm/Manifest   |   1 -
 .../ipvsadm/files/ipvsadm-1.26-buildsystem.patch   | 113 -
 .../files/ipvsadm-1.26-stack_smashing.patch|  32 --
 sys-cluster/ipvsadm/ipvsadm-1.26-r2.ebuild |  64 
 4 files changed, 210 deletions(-)

diff --git a/sys-cluster/ipvsadm/Manifest b/sys-cluster/ipvsadm/Manifest
index cc6ea43e31c..4107ba63500 100644
--- a/sys-cluster/ipvsadm/Manifest
+++ b/sys-cluster/ipvsadm/Manifest
@@ -1,3 +1,2 @@
-DIST ipvsadm-1.26.tar.gz 41700 BLAKE2B 
ef8b089bd4d21297ae6fde01a9214cf07633cc286765e6f8110b04589c5d9b6dc4624457899c4ea48ddd08b495a9c090b26d1dc5094b5fb7cafcd5342c729caf
 SHA512 
873e23a6bdaabc153b00f1ede3853c947e8c8cfb4e18364d55197c74f26cc883ca469e074a90f377fbfd5e73e0cd6c1fe414c9f7a5c28b0d4431af58056eced4
 DIST ipvsadm-1.27.tar.xz 38196 BLAKE2B 
1b8a72b11c14a909b8b7459c459195d32bb7944ed4a01d963e2b85e8279c5d7d2fd095d9c23473c64dc15881a2b22b439b39c10b2019b3183f54e22535a258a9
 SHA512 
cf982b7981674c91d1b7516de7b55cf378b306ce4a53e13976b8eeb8610015c4fa4aa9d251bc4d329db8e05c1862863160af2d3c63b76263f290087cffdf1b80
 DIST ipvsadm-1.28.tar.xz 38600 BLAKE2B 
2a892f858324788b425f7c5aa6ce6a1548c6cd166977d1d36a5236061d1a6ce7e31f6bc1e24a7d53a57406e468271ccebc01330de6be9784c1a955b60eb89d16
 SHA512 
a1e10ce30751d9439f832e221e5c41b338f87dcc94a0b21329d908a9164f8882049af9d9d918b764b36c30e353d5b8db49d7088e60c24e4748713c06cccf7035

diff --git a/sys-cluster/ipvsadm/files/ipvsadm-1.26-buildsystem.patch 
b/sys-cluster/ipvsadm/files/ipvsadm-1.26-buildsystem.patch
deleted file mode 100644
index ba8e9450eb3..000
--- a/sys-cluster/ipvsadm/files/ipvsadm-1.26-buildsystem.patch
+++ /dev/null
@@ -1,113 +0,0 @@
 a/Makefile
-+++ b/Makefile
-@@ -43,14 +43,13 @@
- INIT  = $(BUILD_ROOT)/etc/rc.d/init.d
- MKDIR = mkdir
- INSTALL   = install
--STATIC_LIBS   = libipvs/libipvs.a
- 
- ifeq "${ARCH}" "sparc64"
--CFLAGS = -Wall -Wunused -Wstrict-prototypes -g -m64 -pipe 
-mcpu=ultrasparc -mcmodel=medlow
-+CFLAGS := -g -m64 -pipe -mcpu=ultrasparc -mcmodel=medlow
- else
--CFLAGS = -Wall -Wunused -Wstrict-prototypes -g
-+CFLAGS := -g
- endif
--
-+OPTFLAGS += -Wall -Wunused -Wstrict-prototypes
- 
- #
- # No servicable parts below this line
-@@ -94,10 +93,12 @@
- all:libs ipvsadm
- 
- libs:
--  make -C libipvs
-+  $(MAKE) -C libipvs
-+
-+$(OBJS):  libs
- 
--ipvsadm:  $(OBJS) $(STATIC_LIBS)
--  $(CC) $(CFLAGS) -o $@ $^ $(LIBS)
-+ipvsadm:  $(OBJS)
-+  $(CC) $(LDFLAGS) $(OPTFLAGS) $(CFLAGS) -o $@ $^ -Llibipvs 
-lipvs $(LIBS)
- 
--install:all
-+install:
-   if [ ! -d $(SBIN) ]; then $(MKDIR) -p $(SBIN); fi
-@@ -108,15 +109,13 @@
-   $(INSTALL) -m 0644 ipvsadm.8 $(MAN)
-   $(INSTALL) -m 0644 ipvsadm-save.8 $(MAN)
-   $(INSTALL) -m 0644 ipvsadm-restore.8 $(MAN)
--  [ -d $(INIT) ] || $(MKDIR) -p $(INIT)
--  $(INSTALL) -m 0755 ipvsadm.sh $(INIT)/ipvsadm
- 
- clean:
-   rm -f ipvsadm $(NAME).spec $(NAME)-$(VERSION).tar.gz
-   rm -rf debian/tmp
-   find . -name '*.[ao]' -o -name "*~" -o -name "*.orig" \
- -o -name "*.rej" -o -name core | xargs rm -f
--  make -C libipvs clean
-+  $(MAKE) -C libipvs clean
- 
- distclean:clean
- 
-@@ -149,4 +148,4 @@
-   dpkg-buildpackage
- 
- %.o:  %.c
--  $(CC) $(CFLAGS) $(INCLUDE) $(DEFINES) -c -o $@ $<
-+  $(CC) $(OPTFLAGS) $(CFLAGS) $(INCLUDE) $(DEFINES) -c -o $@ $<
 a/libipvs/Makefile
-+++ b/libipvs/Makefile
-@@ -1,32 +1,39 @@
- # Makefile for libipvs
- 
- CC= gcc
--CFLAGS= -Wall -Wunused -Wstrict-prototypes -g -fPIC
-+OPTFLAGS = -Wall -Wunused -Wstrict-prototypes
- ifneq (0,$(HAVE_NL))
--CFLAGS+= -DLIBIPVS_USE_NL
-+DEFINES += -DLIBIPVS_USE_NL
- endif
- 
- INCLUDE   += $(shell if [ -f ../../ip_vs.h ]; then\
-echo "-I../../."; fi;)
--DEFINES   = $(shell if [ ! -f ../../ip_vs.h ]; then   \
-+DEFINES   += $(shell if [ ! -f ../../ip_vs.h ]; then  \
-   echo "-DHAVE_NET_IP_VS_H"; fi;)
- 
- .PHONY= all clean install dist distclean rpm rpms
--STATIC_LIB= libipvs.a
--SHARED_LIB= libipvs.so
- 
--all:  $(STATIC_LIB) $(SHARED_LIB)
-+TARGETS = libipvs.so
- 
--$(STATIC_LIB):libipvs.o ip_vs_nl_policy.o