From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2C234158087 for ; Thu, 13 Jan 2022 12:24:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75A4F2BC056; Thu, 13 Jan 2022 12:24:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5DC342BC056 for ; Thu, 13 Jan 2022 12:24:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91F54343406 for ; Thu, 13 Jan 2022 12:24:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F5B128E for ; Thu, 13 Jan 2022 12:24:42 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1642076672.6291a797bb5c6fcb5280f7eda74a42833f355793.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/vrrpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/vrrpd/vrrpd-1.9.ebuild X-VCS-Directories: net-misc/vrrpd/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 6291a797bb5c6fcb5280f7eda74a42833f355793 X-VCS-Branch: master Date: Thu, 13 Jan 2022 12:24:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2a58697e-ff2b-4010-807e-a3025da0e567 X-Archives-Hash: b4b02ea624eb47533d93481eeae337c3 commit: 6291a797bb5c6fcb5280f7eda74a42833f355793 Author: Jakov Smolić gentoo org> AuthorDate: Thu Jan 13 12:14:57 2022 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Thu Jan 13 12:24:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6291a797 net-misc/vrrpd: drop 1.9 (EAPI 5--) Signed-off-by: Jakov Smolić gentoo.org> net-misc/vrrpd/vrrpd-1.9.ebuild | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/net-misc/vrrpd/vrrpd-1.9.ebuild b/net-misc/vrrpd/vrrpd-1.9.ebuild deleted file mode 100644 index 6779c96389fa..000000000000 --- a/net-misc/vrrpd/vrrpd-1.9.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit epatch - -DESCRIPTION="Virtual Router Redundancy Protocol Daemon" -HOMEPAGE="http://numsys.eu/vrrp_art.php" -SRC_URI="https://github.com/fredbcode/Vrrpd/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" -DEPEND="sys-devel/gcc" -RDEPEND="" -S="${WORKDIR}/Vrrpd-${PV}" - -src_prepare() { - epatch "${FILESDIR}"/vrrpd-1.9-rollup.patch || die - emake mrproper - #rm -f atropos -} - -src_compile() { - emake DBG_OPT="" MACHINEOPT="${CFLAGS}" PROF_OPT="${LDFLAGS}" -} - -src_install() { - dosbin vrrpd atropos - doman vrrpd.8 - dodoc FAQ Changes TODO scott_example doc/draft-ietf-vrrp-spec-v2-05.txt doc/rfc2338.txt.vrrp doc/draft-jou-duplicate-ip-address-02.txt doc/principe-Vrrp1.jpg doc/principe-Vrrp2.jpg README.md -}