summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2022-09-15 16:36:54 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2022-09-15 17:10:28 +0200
commit8a48904b58d22fb52eb240ceb42a89088952b59d (patch)
treebb87fde8f68c820296eb1668ed2476672970d3a8 /sys-cluster/resource-agents/resource-agents-4.0.1.ebuild
parentnet-p2p/rtorrent: drop 0.9.8 (diff)
downloadgentoo-8a48904b58d22fb52eb240ceb42a89088952b59d.tar.gz
gentoo-8a48904b58d22fb52eb240ceb42a89088952b59d.tar.bz2
gentoo-8a48904b58d22fb52eb240ceb42a89088952b59d.zip
sys-cluster/resource-agents: drop 3.9.6, 4.0.1
Closes: https://bugs.gentoo.org/867568 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sys-cluster/resource-agents/resource-agents-4.0.1.ebuild')
-rw-r--r--sys-cluster/resource-agents/resource-agents-4.0.1.ebuild59
1 files changed, 0 insertions, 59 deletions
diff --git a/sys-cluster/resource-agents/resource-agents-4.0.1.ebuild b/sys-cluster/resource-agents/resource-agents-4.0.1.ebuild
deleted file mode 100644
index f8331aad9177..000000000000
--- a/sys-cluster/resource-agents/resource-agents-4.0.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_P="${P/resource-}"
-inherit autotools multilib
-
-DESCRIPTION="Resources pack for Heartbeat / Pacemaker"
-HOMEPAGE="http://www.linux-ha.org/wiki/Resource_Agents"
-SRC_URI="https://github.com/ClusterLabs/resource-agents/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
-IUSE="doc libnet rgmanager"
-
-RDEPEND="sys-apps/iproute2
- sys-cluster/cluster-glue
- libnet? ( net-libs/libnet:1.1 )"
-DEPEND="${RDEPEND}
- doc? (
- dev-libs/libxslt
- app-text/docbook-xsl-stylesheets
- )"
-
-PATCHES=(
- "${FILESDIR}/3.9.4-configure.patch"
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --disable-fatal-warnings \
- --localstatedir=/var \
- --with-ocf-root=/usr/$(get_libdir)/ocf \
- $(use_enable doc) \
- $(use_enable libnet)
-}
-
-src_install() {
- default
- rm -rf "${D}"/etc/init.d/ || die
- rm -rf "${D}"/var/run || die
- use rgmanager || rm -rf "${D}"/usr/share/cluster/ "${D}"/var/
-}
-
-pkg_postinst() {
- elog "To use Resource Agents installed in /usr/$(get_libdir)/ocf/resource.d"
- elog "you have to emerge required runtime dependencies manually."
- elog ""
- elog "Description and dependencies of all Agents can be found on"
- elog "http://www.linux-ha.org/wiki/Resource_Agents"
- elog "or in the documentation of this package."
-}