Gentoo Archives: gentoo-commits

From: "Alexys Jacob (ultrabug)" <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-cluster/keepalived: ChangeLog keepalived-1.2.10.ebuild
Date: Fri, 31 Jan 2014 13:11:23
Message-Id: 20140131131118.DBCBB2004C@flycatcher.gentoo.org
1 ultrabug 14/01/31 13:11:18
2
3 Modified: ChangeLog
4 Added: keepalived-1.2.10.ebuild
5 Log:
6 version bump fix #499042 thx to Olipro
7
8 (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
9
10 Revision Changes Path
11 1.103 sys-cluster/keepalived/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/ChangeLog?rev=1.103&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/ChangeLog?rev=1.103&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/ChangeLog?r1=1.102&r2=1.103
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/ChangeLog,v
20 retrieving revision 1.102
21 retrieving revision 1.103
22 diff -u -r1.102 -r1.103
23 --- ChangeLog 15 Nov 2013 14:29:43 -0000 1.102
24 +++ ChangeLog 31 Jan 2014 13:11:18 -0000 1.103
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-cluster/keepalived
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/ChangeLog,v 1.102 2013/11/15 14:29:43 ultrabug Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/ChangeLog,v 1.103 2014/01/31 13:11:18 ultrabug Exp $
31 +
32 +*keepalived-1.2.10 (31 Jan 2014)
33 +
34 + 31 Jan 2014; Ultrabug <ultrabug@g.o> +keepalived-1.2.10.ebuild:
35 + version bump fix #499042 thx to Olipro
36
37 *keepalived-1.2.9 (15 Nov 2013)
38
39
40
41
42 1.1 sys-cluster/keepalived/keepalived-1.2.10.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/keepalived-1.2.10.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/keepalived-1.2.10.ebuild?rev=1.1&content-type=text/plain
46
47 Index: keepalived-1.2.10.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/keepalived-1.2.10.ebuild,v 1.1 2014/01/31 13:11:18 ultrabug Exp $
52
53 EAPI=4
54
55 inherit autotools base
56
57 DESCRIPTION="A strong & robust keepalive facility to the Linux Virtual Server project"
58 HOMEPAGE="http://www.keepalived.org/"
59 SRC_URI="http://www.keepalived.org/software/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
64 IUSE="debug ipv6 snmp"
65
66 RDEPEND="dev-libs/popt
67 sys-apps/iproute2
68 dev-libs/libnl:1.1
69 dev-libs/openssl
70 snmp? ( net-analyzer/net-snmp )"
71 DEPEND="${RDEPEND}
72 >=sys-kernel/linux-headers-2.6.30"
73
74 PATCHES=(
75 "${FILESDIR}"/${PN}-1.2.2-libipvs-fix-backup-daemon.patch
76 )
77
78 DOCS=( README CONTRIBUTORS INSTALL VERSION ChangeLog AUTHOR TODO
79 doc/keepalived.conf.SYNOPSIS doc/NOTE_vrrp_vmac.txt )
80
81 src_prepare() {
82 base_src_prepare
83 eautoreconf
84 }
85
86 src_configure() {
87 STRIP=/bin/true \
88 econf \
89 --with-kernel-dir=/usr \
90 --enable-vrrp \
91 $(use_enable debug) \
92 $(use_enable snmp)
93 }
94
95 src_install() {
96 default
97
98 newinitd "${FILESDIR}"/keepalived.init keepalived
99 newconfd "${FILESDIR}"/keepalived.confd keepalived
100
101 use snmp && dodoc doc/KEEPALIVED-MIB
102
103 docinto genhash
104 dodoc genhash/README genhash/AUTHOR genhash/ChangeLog genhash/VERSION || die
105 # This was badly named by upstream, it's more HOWTO than anything else.
106 newdoc INSTALL INSTALL+HOWTO
107
108 # Security risk to bundle SSL certs
109 rm -f "${ED}"/etc/keepalived/samples/*.pem
110 # Clean up sysvinit files
111 rm -rf "${ED}"/etc/sysconfig "${ED}"/etc/rc.d/
112 }