sys-cluster/keepalived: drop 2.2.4

Broken with implicit function declarations.

Signed-off-by: orbea <orbea@riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/30876
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
orbea
2023-05-04 16:01:55 -07:00
committed by Sam James
parent 99c7359528
commit 41b6cd496d
2 changed files with 0 additions and 81 deletions

View File

@@ -1,3 +1,2 @@
DIST keepalived-2.2.4.tar.gz 1151290 BLAKE2B 835198fb23312e87894e7740427411d974c00f71029b273d8da3e787ef92848127d896b456fb40db8d802b6c7555e6524872f136f868e19c62387a9471e44b0f SHA512 b8b0f3e7092b7b7093a9927259928076ee95ed176dd26b3a5c38e8c0dc7b83468433944905618dbc9e4b73b81b0cd3f16c2db4234ed4fcdf30f4fc0e532f9422
DIST keepalived-2.2.7.tar.gz 1180180 BLAKE2B 62c4534eb1eebeac596b628a1fa5fb4069498d532fdeff0dc51afbc71e90125bff7fcffb897da3fd34765c64f43d7b04dcf184169b1bc2cf33413e109f9f5cdc SHA512 9869437fe6f0c10590b13088002b53474a51102da9838a6575d835d006c4871b61324ab80e0e81e0a23d0124e6f033cfc7114749e87b8f736408f3f0bedb3968
DIST keepalived-2.2.7_p20221209.tar.gz 959087 BLAKE2B 2c8a46874ddac414a6d6f7bc1646d90dd9afc813ffcdd5990d1a220171e77c1e17a97c0549c2223eb2401b60870b7d98139106345079033c2f2875d158024b2a SHA512 519837fd463e69bc2eb8415fa8d5e5bd92cda1d0e3e80a0725a38285901b59fa8ba9e0d6852dbbdddf4bb72398286b4fa2779a6c341245b6322c4bef8dce37d6

View File

@@ -1,80 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools systemd
DESCRIPTION="A strong & robust keepalive facility to the Linux Virtual Server project"
HOMEPAGE="https://www.keepalived.org/"
SRC_URI="https://www.keepalived.org/software/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~s390 ~sparc x86"
IUSE="+bfd dbus json regex snmp systemd"
RDEPEND="
dev-libs/libnl:=
dev-libs/openssl:=
dev-libs/popt
net-libs/libnfnetlink
sys-apps/iproute2
regex? ( >=dev-libs/libpcre2-8:= )
dbus? (
sys-apps/dbus
dev-libs/glib:2
)
json? ( dev-libs/json-c:= )
snmp? ( net-analyzer/net-snmp:= )
systemd? ( sys-apps/systemd )"
DEPEND="${RDEPEND}
>=sys-kernel/linux-headers-4.4"
DOCS=(
README CONTRIBUTORS INSTALL ChangeLog AUTHOR TODO
doc/keepalived.conf.SYNOPSIS doc/NOTE_vrrp_vmac.txt
)
src_prepare() {
default
eautoreconf
}
src_configure() {
# keepalived has support to dynamically use some libraries instead of
# linking them:
#--enable-dynamic-linking \
#--enable-libiptc-dynamic \
#--enable-libnl-dynamic \
#--enable-libxtables-dynamic \
econf \
--with-init="$(usex systemd systemd custom)" \
--with-kernel-dir="${ESYSROOT}"/usr \
--enable-vrrp \
$(use_enable bfd) \
$(use_enable dbus) \
$(use_enable json) \
$(use_enable regex) \
$(use_enable snmp) \
$(use_enable snmp snmp-rfc) \
$(use_enable systemd)
}
src_install() {
default
newinitd "${FILESDIR}"/keepalived.init-r1 keepalived
newconfd "${FILESDIR}"/keepalived.confd-r1 keepalived
systemd_newunit "${FILESDIR}"/${PN}.service-r1 ${PN}.service
systemd_install_serviced "${FILESDIR}/${PN}.service.conf"
use snmp && dodoc doc/*MIB.txt
# This was badly named by upstream, it's more HOWTO than anything else.
newdoc INSTALL INSTALL+HOWTO
# Clean up sysvinit files
rm -rv "${ED}"/etc/sysconfig || die
}