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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7B1F6158087 for ; Sat, 11 Dec 2021 21:40:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37FBB2BC00B; Sat, 11 Dec 2021 21:40:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id DAEA92BC00D for ; Sat, 11 Dec 2021 21:40:44 +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 BD3FE3433A6 for ; Sat, 11 Dec 2021 21:40:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B12022B for ; Sat, 11 Dec 2021 21:40:38 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1639258351.9e70b79ef5558774a10af7543edf0f933fab8418.conikost@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-r1.ebuild X-VCS-Directories: net-misc/vrrpd/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 9e70b79ef5558774a10af7543edf0f933fab8418 X-VCS-Branch: master Date: Sat, 11 Dec 2021 21:40:38 +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: 74566b03-6114-43fc-947e-60ad5b6634b9 X-Archives-Hash: 2f520f070b842dc7d3a65a9feff018af commit: 9e70b79ef5558774a10af7543edf0f933fab8418 Author: Conrad Kostecki gentoo org> AuthorDate: Sat Dec 11 21:06:51 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Dec 11 21:32:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e70b79e net-misc/vrrpd: update EAPI 5 -> 8 Closes: https://bugs.gentoo.org/725172 Closes: https://bugs.gentoo.org/828713 Signed-off-by: Conrad Kostecki gentoo.org> net-misc/vrrpd/vrrpd-1.9-r1.ebuild | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/net-misc/vrrpd/vrrpd-1.9-r1.ebuild b/net-misc/vrrpd/vrrpd-1.9-r1.ebuild new file mode 100644 index 000000000000..5aefe0f4576f --- /dev/null +++ b/net-misc/vrrpd/vrrpd-1.9-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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" +S="${WORKDIR}/Vrrpd-${PV}" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +PATCHES=( "${FILESDIR}"/vrrpd-1.9-rollup.patch ) + +src_prepare() { + default + + # Don't hardcore GCC + sed -e '/CC=/d' -i Makefile || die + + emake mrproper +} + +src_compile() { + local myemakeargs=( + DBG_OPT="" + MACHINEOPT="${CFLAGS}" + PROF_OPT="${LDFLAGS}" + ) + + emake "${myemakeargs[@]}" +} + +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 +}