sys-cluster/corosync: Remove 1.3.0
authorJohannes Huber <johu@gentoo.org>
Sun, 15 Apr 2018 14:26:27 +0000 (16:26 +0200)
committerJohannes Huber <johu@gentoo.org>
Sun, 15 Apr 2018 14:29:19 +0000 (16:29 +0200)
Closes: https://bugs.gentoo.org/644268
Package-Manager: Portage-2.3.28, Repoman-2.3.9

sys-cluster/corosync/Manifest
sys-cluster/corosync/corosync-1.3.0.ebuild [deleted file]

index 20aa195332c76f593ed2b44c8c274fed6f2439f0..c6116f0ae4919a699b97ccb97668a684e246b0d0 100644 (file)
@@ -1,4 +1,3 @@
-DIST corosync-1.3.0.tar.gz 683458 BLAKE2B 7beaead5bde2b5cae370c89d3217b6388024dee4bcc4cf495b34befece9df9191799d8b8b2f11a0d7da878022dfa63b407810efc759b6a958c118c339f4ad7df SHA512 30c8b6f3f8b82101e2cf65f2ecd2dd43f6dd2ab79585e713f23786be7732707395c161d1a57c7401dd05f4751ccc051ccaab81461be9bc964ef0543ef4699114
 DIST corosync-1.3.5.tar.gz 698897 BLAKE2B 48507120a51de812f2f4dd4607eb86e5f4df05f9928480b08575788f17e39c2998912571fb7e2f4761f108b138683325ae358dae77ffa142348b3ddfb2b639f5 SHA512 74920fed67af72517076d5a85688f59f3ef81b4aa773147a96f58cbd57b3b150365b7eea4ef14c4e43c0961d9d9939d734526318b1af462e22329077a0cdbc3e
 DIST corosync-1.4.7.tar.gz 420596 BLAKE2B 7818b1d58f2ce743b990fd275908d0b72a63dc8f243df2fdb1b369ace635cd4602b19eda96d59fedb980c46b38f12a5c5f3592d2915a559c5b89e4390751cccc SHA512 275a4372cac13789d93e224e4a7853953d6111afc534f9e897deaf064d5d96bb0db932a02a9212b5a0d2ca53d3f56133073f519460a9ca3573f5403642db34e1
 DIST corosync-2.3.3.tar.gz 411784 BLAKE2B a709fe7889fbbddc37f2915d49740fe0061e3d3ad330998c83a5375cbf596fe0b2ecc9f3f074631ef733227e3a64335f6e65e2c457d68f1f4b431fc2c3f35f7c SHA512 66b479b2114641f02cd910f1bc3458948d5634b82e2019d7b1ea919f5bbb4817e91dddc33de061ff01dc4f12a3622b3418b7787e81a6f340d23043857cc9442f
diff --git a/sys-cluster/corosync/corosync-1.3.0.ebuild b/sys-cluster/corosync/corosync-1.3.0.ebuild
deleted file mode 100644 (file)
index 61ddf86..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=3
-
-inherit base autotools
-
-DESCRIPTION="OSI Certified implementation of a complete cluster engine"
-HOMEPAGE="http://www.corosync.org/"
-SRC_URI="ftp://ftp:${PN}.org@${PN}.org/downloads/${P}/${P}.tar.gz"
-
-LICENSE="BSD-2 public-domain"
-SLOT="0"
-KEYWORDS="amd64 hppa x86"
-IUSE="doc infiniband ssl"
-
-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" )
-
-src_prepare() {
-       base_src_prepare
-       eautoreconf
-}
-
-src_configure() {
-       # appends lib to localstatedir automatically
-       # FIXME: install both static and shared libs
-       econf \
-               --localstatedir=/var \
-               --docdir=/usr/share/doc/${PF} \
-               $(use_enable doc) \
-               $(use_enable ssl nss) \
-               $(use_enable infiniband rdma)
-}
-
-src_install() {
-       base_src_install
-       newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
-
-       insinto /etc/logrotate.d
-       newins "${FILESDIR}"/${PN}.logrotate ${PN} || die
-
-       keepdir /var/lib/corosync
-}