Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ucarp/
Date: Thu, 24 Sep 2020 19:53:47
Message-Id: 1600977208.740750a7017393eb6daa3a8aed9e473bd494c65b.bman@gentoo
1 commit: 740750a7017393eb6daa3a8aed9e473bd494c65b
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 24 19:38:55 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 24 19:53:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=740750a7
7
8 net-misc/ucarp: drop old EAPI=5
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 net-misc/ucarp/ucarp-1.5.2-r4.ebuild | 47 ------------------------------------
13 1 file changed, 47 deletions(-)
14
15 diff --git a/net-misc/ucarp/ucarp-1.5.2-r4.ebuild b/net-misc/ucarp/ucarp-1.5.2-r4.ebuild
16 deleted file mode 100644
17 index 7fbb7e97c10..00000000000
18 --- a/net-misc/ucarp/ucarp-1.5.2-r4.ebuild
19 +++ /dev/null
20 @@ -1,47 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="5"
25 -
26 -DESCRIPTION="Portable userland implementation of Common Address Redundancy Protocol (CARP)"
27 -HOMEPAGE="http://www.ucarp.org"
28 -SRC_URI="ftp://ftp.ucarp.org/pub/ucarp/${P}.tar.gz"
29 -
30 -LICENSE="GPL-2"
31 -SLOT="0"
32 -KEYWORDS="~amd64 ~ppc ~x86"
33 -IUSE="nls"
34 -
35 -RDEPEND="net-libs/libpcap"
36 -DEPEND="${RDEPEND}
37 - nls? ( sys-devel/gettext )"
38 -
39 -src_configure() {
40 - econf $(use_enable nls)
41 -}
42 -
43 -src_install() {
44 - default
45 -
46 - doman "${FILESDIR}"/ucarp.8
47 -
48 - exeinto /usr/libexec/ucarp
49 - newexe "${FILESDIR}"/vip-up-default.sh-r1 vip-up-default.sh
50 - newexe "${FILESDIR}"/vip-down-default.sh-r1 vip-down-default.sh
51 -
52 - keepdir /etc/ucarp
53 -
54 - newinitd "${FILESDIR}"/ucarp.initd-r1 ucarp
55 - newconfd "${FILESDIR}"/ucarp.confd ucarp
56 -}
57 -
58 -pkg_postinst() {
59 - elog "The provided init script needs to be configured first."
60 - elog "Edit /etc/conf.d/ucarp to suite your environment."
61 - elog "You will also have to set a shared password within /etc/ucarp/ucarp.pass"
62 - elog "or whatever file you have set \$UCARP_PASSFILE to."
63 -
64 - elog "If you need more than one instance of ucarp running, simply symlink"
65 - elog "the init script and create a copy of the init script configuration"
66 - elog "which corresponds to the name of the init script."
67 -}