diff options
author | 2015-06-28 17:37:53 +0000 | |
---|---|---|
committer | 2015-06-28 17:37:53 +0000 | |
commit | c69f3ba1bd0609083bc26604d925df2a1aa08df0 (patch) | |
tree | 4bb3a8fa4bcdea3985ef6da00eb3bf4343d310a8 /sys-cluster | |
parent | alpha stable wrt bug #550152 (diff) | |
download | gentoo-2-c69f3ba1bd0609083bc26604d925df2a1aa08df0.tar.gz gentoo-2-c69f3ba1bd0609083bc26604d925df2a1aa08df0.tar.bz2 gentoo-2-c69f3ba1bd0609083bc26604d925df2a1aa08df0.zip |
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/heartbeat/ChangeLog | 5 | ||||
-rw-r--r-- | sys-cluster/heartbeat/heartbeat-3.0.5.ebuild | 86 |
2 files changed, 4 insertions, 87 deletions
diff --git a/sys-cluster/heartbeat/ChangeLog b/sys-cluster/heartbeat/ChangeLog index 256d74855d77..36b8fbf86cfe 100644 --- a/sys-cluster/heartbeat/ChangeLog +++ b/sys-cluster/heartbeat/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-cluster/heartbeat # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/heartbeat/ChangeLog,v 1.108 2015/05/21 11:58:29 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/heartbeat/ChangeLog,v 1.109 2015/06/28 17:37:53 mrueg Exp $ + + 28 Jun 2015; Manuel Rüger <mrueg@gentoo.org> -heartbeat-3.0.5.ebuild: + Remove old. 21 May 2015; Agostino Sarubbo <ago@gentoo.org> heartbeat-3.0.5-r2.ebuild: Stable for amd64, wrt bug #536640 diff --git a/sys-cluster/heartbeat/heartbeat-3.0.5.ebuild b/sys-cluster/heartbeat/heartbeat-3.0.5.ebuild deleted file mode 100644 index 0f579d26d81d..000000000000 --- a/sys-cluster/heartbeat/heartbeat-3.0.5.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/heartbeat/heartbeat-3.0.5.ebuild,v 1.7 2012/05/04 07:20:30 jdhore Exp $ - -EAPI="2" - -PYTHON_DEPEND="2" -inherit python autotools multilib eutils base - -DESCRIPTION="Heartbeat high availability cluster manager" -HOMEPAGE="http://www.linux-ha.org/wiki/Heartbeat" -SRC_URI="http://hg.linux-ha.org/${PN}-STABLE_3_0/archive/STABLE-${PV}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 hppa x86" -IUSE="doc snmp static-libs" - -RDEPEND="sys-cluster/cluster-glue - dev-libs/glib:2 - virtual/ssh - net-libs/gnutls - snmp? ( net-analyzer/net-snmp ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig - dev-lang/swig - doc? ( dev-libs/libxslt app-text/docbook-xsl-stylesheets )" - -PDEPEND="sys-cluster/resource-agents" - -S=${WORKDIR}/Heartbeat-3-0-STABLE-${PV} - -PATCHES=( - "${FILESDIR}/3.0.4-fix_configure.patch" - "${FILESDIR}/3.0.4-docs.patch" - "${FILESDIR}/3.0.4-python_tests.patch" -) - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup - - ewarn "If you're upgrading from heartbeat-2.x please follow:" - ewarn "http://www.gentoo.org/proj/en/cluster/ha-cluster/heartbeat-upgrade.xml" -} - -src_prepare() { - base_src_prepare - eautoreconf - - cp "${FILESDIR}"/heartbeat-init "${T}" || die - sed -i \ - -e "/ResourceManager/ s/lib/share/" \ - -e "s:lib:$(get_libdir):g" \ - "${T}"/heartbeat-init || die -} - -src_configure() { - econf \ - --disable-dependency-tracking \ - --disable-fatal-warnings \ - $(use_enable static-libs static) \ - $(use_enable doc) \ - --disable-tipc \ - --enable-dopd \ - --libdir=/usr/$(get_libdir) \ - --localstatedir=/var \ - --docdir=/usr/share/doc/${PF} \ - $(use_enable snmp) -} - -src_install() { - base_src_install - - newinitd "${T}/heartbeat-init" heartbeat || die - - # fix collisions - rm -rf "${D}"/usr/include/heartbeat/{compress,ha_msg}.h - - use static-libs || find "${D}"/usr/$(get_libdir) -name "*.la" -delete - - if use doc ; then - dodoc README doc/*.txt doc/AUTHORS || die - fi -} |