Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/keepalived/
Date: Thu, 15 Nov 2018 15:50:18
Message-Id: 1542296988.efc2e9877ba742c36e2ff5da6f23db956dfad930.whissi@gentoo
1 commit: efc2e9877ba742c36e2ff5da6f23db956dfad930
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 15 15:49:48 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 15 15:49:48 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efc2e987
7
8 sys-cluster/keepalived: move keywords
9
10 Bug: https://bugs.gentoo.org/670856
11 Package-Manager: Portage-2.3.51, Repoman-2.3.12
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 sys-cluster/keepalived/keepalived-2.0.10-r1.ebuild | 2 +-
15 sys-cluster/keepalived/keepalived-2.0.10.ebuild | 72 ----------------------
16 2 files changed, 1 insertion(+), 73 deletions(-)
17
18 diff --git a/sys-cluster/keepalived/keepalived-2.0.10-r1.ebuild b/sys-cluster/keepalived/keepalived-2.0.10-r1.ebuild
19 index 5df194d4a11..a9e8dd02900 100644
20 --- a/sys-cluster/keepalived/keepalived-2.0.10-r1.ebuild
21 +++ b/sys-cluster/keepalived/keepalived-2.0.10-r1.ebuild
22 @@ -11,7 +11,7 @@ SRC_URI="http://www.keepalived.org/software/${P}.tar.gz"
23
24 LICENSE="GPL-2"
25 SLOT="0"
26 -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86"
27 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 sparc x86"
28 IUSE="dbus debug ipv6 -json snmp"
29
30 RDEPEND="dev-libs/libnl:=
31
32 diff --git a/sys-cluster/keepalived/keepalived-2.0.10.ebuild b/sys-cluster/keepalived/keepalived-2.0.10.ebuild
33 deleted file mode 100644
34 index 583af02bbaa..00000000000
35 --- a/sys-cluster/keepalived/keepalived-2.0.10.ebuild
36 +++ /dev/null
37 @@ -1,72 +0,0 @@
38 -# Copyright 1999-2018 Gentoo Authors
39 -# Distributed under the terms of the GNU General Public License v2
40 -
41 -EAPI=7
42 -
43 -inherit autotools systemd
44 -
45 -DESCRIPTION="A strong & robust keepalive facility to the Linux Virtual Server project"
46 -HOMEPAGE="http://www.keepalived.org/"
47 -SRC_URI="http://www.keepalived.org/software/${P}.tar.gz"
48 -
49 -LICENSE="GPL-2"
50 -SLOT="0"
51 -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 sparc ~x86"
52 -IUSE="dbus debug ipv6 -json snmp"
53 -
54 -RDEPEND="dev-libs/libnl:=
55 - dev-libs/openssl:=
56 - dev-libs/popt
57 - net-libs/libnfnetlink
58 - sys-apps/iproute2
59 - dbus? ( sys-apps/dbus )
60 - json? ( dev-libs/json-c:= )
61 - snmp? ( net-analyzer/net-snmp )"
62 -DEPEND="${RDEPEND}
63 - >=sys-kernel/linux-headers-4.4"
64 -
65 -DOCS=(
66 - README CONTRIBUTORS INSTALL ChangeLog AUTHOR TODO
67 - doc/keepalived.conf.SYNOPSIS doc/NOTE_vrrp_vmac.txt
68 -)
69 -
70 -src_prepare() {
71 - default
72 -
73 - eautoreconf
74 -}
75 -
76 -src_configure() {
77 - STRIP=/bin/true \
78 - econf \
79 - --with-kernel-dir=/usr \
80 - --enable-sha1 \
81 - --enable-vrrp \
82 - $(use_enable dbus) \
83 - $(use_enable dbus dbus-create-instance) \
84 - $(use_enable debug) \
85 - $(use_enable json) \
86 - $(use_enable snmp)
87 -}
88 -
89 -src_install() {
90 - default
91 -
92 - newinitd "${FILESDIR}"/keepalived.init-r1 keepalived
93 - newconfd "${FILESDIR}"/keepalived.confd-r1 keepalived
94 -
95 - systemd_newunit "${FILESDIR}"/${PN}.service ${PN}.service
96 - systemd_install_serviced "${FILESDIR}/${PN}.service.conf"
97 -
98 - use snmp && dodoc doc/KEEPALIVED-MIB.txt
99 -
100 - docinto genhash
101 - dodoc genhash/README genhash/AUTHOR genhash/ChangeLog
102 - # This was badly named by upstream, it's more HOWTO than anything else.
103 - newdoc INSTALL INSTALL+HOWTO
104 -
105 - # Security risk to bundle SSL certs
106 - rm -v "${ED}"/etc/keepalived/samples/*.pem || die
107 - # Clean up sysvinit files
108 - rm -rv "${ED}"/etc/sysconfig || die
109 -}