mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sys-cluster/keepalived: drop 2.2.7, 2.2.8
Signed-off-by: Brett A C Sheffield <bacs@librecast.net> Part-of: https://codeberg.org/gentoo/gentoo/pulls/738 Merges: https://codeberg.org/gentoo/gentoo/pulls/738 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
committed by
Sam James
parent
b195fad5dc
commit
6f7a064d18
@@ -1,4 +1,2 @@
|
||||
DIST keepalived-2.2.7.tar.gz 1180180 BLAKE2B 62c4534eb1eebeac596b628a1fa5fb4069498d532fdeff0dc51afbc71e90125bff7fcffb897da3fd34765c64f43d7b04dcf184169b1bc2cf33413e109f9f5cdc SHA512 9869437fe6f0c10590b13088002b53474a51102da9838a6575d835d006c4871b61324ab80e0e81e0a23d0124e6f033cfc7114749e87b8f736408f3f0bedb3968
|
||||
DIST keepalived-2.2.8.tar.gz 1202602 BLAKE2B 3d8d738a0c4e6f00ea8dc3603813d21e52e259d301872f2db16c3373c3a034bedcf3f02e19d1b50855d90bbfece863e710d75a67e2d6dd057dfe451608a73fcb SHA512 dc0ab5b0ef8911a7859422eccc2771a40e942236c855a628158ed748eb5f7dc4b6f4850e9c3057e81fd9d2daa640ab51fb1d7af12748a613280a217b333eb06b
|
||||
DIST keepalived-2.3.3.tar.gz 1236713 BLAKE2B 4a2de93fb4ca7aa0bb1fc9c506c56a1edf832da8a949534a4bb5d1dfad54bf6f839b0b16b940eab8d092c667eeb364194790fca6c1c799542169771de79d65a4 SHA512 305ca1a67bcfb3a4ecc0115f2efa2e2e424ec6776d576db9ea26e0b72c54e3e74f95ae1927d19434391e4204d3450916cddc0f069033c5f1a1bc3d37e6cda40c
|
||||
DIST keepalived-2.3.4.tar.gz 1241315 BLAKE2B 6468cbdd8a5ead443bdb0247ad2a2a7043e20f11c72afa870cded9b52ec23ff98493394aa3fee6e4ece953c85585edcfe76582a13532904cbc29b23f65de7850 SHA512 25328f7c8905d35b40e8ca0d17ed33382bde91e3f848e450ff88c60f57868fbde9753957f310de5900ad740a975b4acb3e549991d5db0d5d70797ba1ff77a503
|
||||
|
||||
@@ -1,84 +0,0 @@
|
||||
# Copyright 1999-2023 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 ~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
|
||||
)
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-libressl.patch #903001
|
||||
)
|
||||
|
||||
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
|
||||
}
|
||||
@@ -1,80 +0,0 @@
|
||||
# Copyright 1999-2023 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 ~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
|
||||
}
|
||||
Reference in New Issue
Block a user