summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2020-04-28 11:52:44 +0300
committerMikle Kolyada <zlogene@gentoo.org>2020-04-28 11:52:44 +0300
commitf98783327a2683b6e8d51db04081291adbd212c9 (patch)
tree80ed0e8a945c4ea6b1f05c91c94f409a81c17ef1 /sys-cluster
parentnet-nntp/suck: tidy 4.3.4 ebuild (diff)
downloadgentoo-f98783327a2683b6e8d51db04081291adbd212c9.tar.gz
gentoo-f98783327a2683b6e8d51db04081291adbd212c9.tar.bz2
gentoo-f98783327a2683b6e8d51db04081291adbd212c9.zip
sys-cluster/corosync: Drop old
Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'sys-cluster')
-rw-r--r--sys-cluster/corosync/Manifest1
-rw-r--r--sys-cluster/corosync/corosync-1.4.7.ebuild63
2 files changed, 0 insertions, 64 deletions
diff --git a/sys-cluster/corosync/Manifest b/sys-cluster/corosync/Manifest
index 1ac188006ff8..93243a9c3494 100644
--- a/sys-cluster/corosync/Manifest
+++ b/sys-cluster/corosync/Manifest
@@ -1,3 +1,2 @@
-DIST corosync-1.4.7.tar.gz 420596 BLAKE2B 7818b1d58f2ce743b990fd275908d0b72a63dc8f243df2fdb1b369ace635cd4602b19eda96d59fedb980c46b38f12a5c5f3592d2915a559c5b89e4390751cccc SHA512 275a4372cac13789d93e224e4a7853953d6111afc534f9e897deaf064d5d96bb0db932a02a9212b5a0d2ca53d3f56133073f519460a9ca3573f5403642db34e1
DIST corosync-2.3.5.tar.gz 428253 BLAKE2B be9fc2b27b60357acee6dee013bc95c08045c114acafc62eaa82a1821f07ff76b8821b9d06f31246b9978f8aef46e3a9e1a2d61ca74465bc74d4140c0ad0d0fa SHA512 212a95d8a68a2941f27c9ec22750a88598744d6fd4db6b46abe0b4cdfa988d3906f760bdf67c403d8c6d0a04da64f29ec744fb68ca51c7269ba58e306553cee9
DIST corosync-2.4.2.tar.gz 547204 BLAKE2B 1b440e84b25263ea866bd66f9837a3bdbbc790d26a38d10a033d67bb0ba48dd58d6b515879dd0ece75ffe78c8a150c1e5ab8d0eb312e701abdc36eb5cb4dc520 SHA512 45a4d2570d5d096e6f42070f701fdb2aaed26812b6a75f73ea415cf409b33343f8bc090b4fcf851ab971ca4b17925f239c31a3d9eafe4841dfbeb56537b2c78c
diff --git a/sys-cluster/corosync/corosync-1.4.7.ebuild b/sys-cluster/corosync/corosync-1.4.7.ebuild
deleted file mode 100644
index 80a190fe8286..000000000000
--- a/sys-cluster/corosync/corosync-1.4.7.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools base
-
-MY_TREE="bf8ff17"
-
-DESCRIPTION="OSI Certified implementation of a complete cluster engine"
-HOMEPAGE="http://www.corosync.org/"
-SRC_URI="http://build.clusterlabs.org/corosync/releases/${P}.tar.gz"
-
-LICENSE="BSD-2 public-domain"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 hppa x86"
-IUSE="doc infiniband ssl static-libs"
-
-RDEPEND="!sys-cluster/heartbeat
- ssl? ( dev-libs/nss )
- infiniband? (
- sys-fabric/libibverbs
- sys-fabric/librdmacm
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( sys-apps/groff )"
-
-PATCHES=(
- "${FILESDIR}/${PN}-docs.patch"
-)
-
-DOCS=( README.recovery README.devmap SECURITY TODO AUTHORS )
-
-S="${WORKDIR}/${PN}-${PN}-${MY_TREE}"
-
-src_prepare() {
- base_src_prepare
- eautoreconf
-}
-
-src_configure() {
- # appends lib to localstatedir automatically
- # FIXME: install just shared libs --disable-static does not work
- econf \
- --localstatedir=/var \
- --docdir=/usr/share/doc/${PF} \
- $(use_enable doc) \
- $(use_enable ssl nss) \
- $(use_enable infiniband rdma)
-}
-
-src_install() {
- default
- newinitd "${FILESDIR}"/${PN}.initd ${PN}
- rm "${D}"/etc/init.d/corosync-notifyd || die
-
- insinto /etc/logrotate.d
- newins "${FILESDIR}"/${PN}.logrotate ${PN}
-
- keepdir /var/lib/corosync
- use static-libs || rm -rf "${D}"/usr/$(get_libdir)/*.a || die
-}