public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-cluster/keepalived: keepalived-1.2.7.ebuild metadata.xml ChangeLog
@ 2012-09-22 14:17 Christian Ruppert (idl0r)
  0 siblings, 0 replies; only message in thread
From: Christian Ruppert (idl0r) @ 2012-09-22 14:17 UTC (permalink / raw
  To: gentoo-commits

idl0r       12/09/22 14:17:34

  Modified:             metadata.xml ChangeLog
  Added:                keepalived-1.2.7.ebuild
  Log:
  Version bump, bug 435512. Improve init script and some cleanup/fixes of the ebuild.
  
  (Portage version: 2.1.11.9/cvs/Linux i686)

Revision  Changes    Path
1.7                  sys-cluster/keepalived/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/metadata.xml?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/metadata.xml?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/metadata.xml?r1=1.6&r2=1.7

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/metadata.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- metadata.xml	11 Sep 2010 14:21:31 -0000	1.6
+++ metadata.xml	22 Sep 2012 14:17:34 -0000	1.7
@@ -1,9 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <herd>cluster</herd>
-  
-  <longdescription>
-    VRRP2 implementation. Used for setting up high availability clusters.
-  </longdescription>
+	<herd>cluster</herd>
+	<longdescription>
+		VRRP2 implementation. Used for setting up high availability clusters.
+	</longdescription>
 </pkgmetadata>



1.98                 sys-cluster/keepalived/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/ChangeLog?r1=1.97&r2=1.98

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog	15 Sep 2012 18:37:35 -0000	1.97
+++ ChangeLog	22 Sep 2012 14:17:34 -0000	1.98
@@ -1,6 +1,13 @@
 # ChangeLog for sys-cluster/keepalived
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/ChangeLog,v 1.97 2012/09/15 18:37:35 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/ChangeLog,v 1.98 2012/09/22 14:17:34 idl0r Exp $
+
+*keepalived-1.2.7 (22 Sep 2012)
+
+  22 Sep 2012; Christian Ruppert <idl0r@gentoo.org> +keepalived-1.2.7.ebuild,
+  +files/keepalived.init, metadata.xml:
+  Version bump, bug 435512. Improve init script and some cleanup/fixes of the
+  ebuild.
 
   15 Sep 2012; Raúl Porcel <armin76@gentoo.org> keepalived-1.2.2-r4.ebuild:
   alpha/ia64/s390/sparc/x86 stable wrt #433361



1.1                  sys-cluster/keepalived/keepalived-1.2.7.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/keepalived-1.2.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/keepalived/keepalived-1.2.7.ebuild?rev=1.1&content-type=text/plain

Index: keepalived-1.2.7.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/keepalived-1.2.7.ebuild,v 1.1 2012/09/22 14:17:34 idl0r Exp $

EAPI=4

inherit autotools base

DESCRIPTION="A strong & robust keepalive facility to the Linux Virtual Server project"
HOMEPAGE="http://www.keepalived.org/"
SRC_URI="http://www.keepalived.org/software/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
IUSE="debug ipv6 snmp"

RDEPEND="dev-libs/popt
	sys-apps/iproute2
	dev-libs/libnl:1.1
	dev-libs/openssl
	snmp? ( net-analyzer/net-snmp )"
DEPEND="${RDEPEND}
	>=sys-kernel/linux-headers-2.6.30"

PATCHES=(
	"${FILESDIR}"/${PN}-1.2.2-libipvs-fix-backup-daemon.patch
	"${FILESDIR}"/${PN}-1.2.2-libipvs-fix-ipv6.patch
)

DOCS=( README CONTRIBUTORS INSTALL VERSION ChangeLog AUTHOR TODO
	doc/keepalived.conf.SYNOPSIS doc/NOTE_vrrp_vmac.txt )

src_prepare() {
	base_src_prepare
	eautoreconf
}

src_configure() {
	STRIP=/bin/true \
	econf \
		--with-kernel-dir=/usr \
		--enable-vrrp \
		$(use_enable debug) \
		$(use_enable snmp)
}

src_install() {
	default

	newinitd "${FILESDIR}"/keepalived.init keepalived
	newconfd "${FILESDIR}"/conf-keepalived keepalived

	use snmp && dodoc doc/KEEPALIVED-MIB

	docinto genhash
	dodoc genhash/README genhash/AUTHOR genhash/ChangeLog genhash/VERSION || die
	# This was badly named by upstream, it's more HOWTO than anything else.
	newdoc INSTALL INSTALL+HOWTO

	# Security risk to bundle SSL certs
	rm -f "${ED}"/etc/keepalived/samples/*.pem
	# Clean up sysvinit files
	rm -rf "${ED}"/etc/sysconfig "${ED}"/etc/rc.d/
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-09-22 14:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-22 14:17 [gentoo-commits] gentoo-x86 commit in sys-cluster/keepalived: keepalived-1.2.7.ebuild metadata.xml ChangeLog Christian Ruppert (idl0r)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox