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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0C71C138334 for ; Tue, 17 Dec 2019 09:38:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96D2DE0898; Tue, 17 Dec 2019 09:38:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7A917E0898 for ; Tue, 17 Dec 2019 09:38:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 04F9434D7D5 for ; Tue, 17 Dec 2019 09:38:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED0AB8D3 for ; Tue, 17 Dec 2019 09:38:16 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1576575495.2f4b3aba255ae4de2eb20330890100d128d2e914.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/alive/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/alive/alive-2.0.2-r1.ebuild X-VCS-Directories: net-analyzer/alive/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 2f4b3aba255ae4de2eb20330890100d128d2e914 X-VCS-Branch: master Date: Tue, 17 Dec 2019 09:38:16 +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: cd171ef3-a1bf-4584-a33e-8d8b297476f9 X-Archives-Hash: f502335737056c566630807537c6966f commit: 2f4b3aba255ae4de2eb20330890100d128d2e914 Author: Jeroen Roovers gentoo org> AuthorDate: Tue Dec 17 09:36:42 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Tue Dec 17 09:38:15 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f4b3aba net-analyzer/alive: EAPI=7 Package-Manager: Portage-2.3.82, Repoman-2.3.20 Signed-off-by: Jeroen Roovers gentoo.org> net-analyzer/alive/alive-2.0.2-r1.ebuild | 33 ++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/net-analyzer/alive/alive-2.0.2-r1.ebuild b/net-analyzer/alive/alive-2.0.2-r1.ebuild new file mode 100644 index 00000000000..9ee866d5fd4 --- /dev/null +++ b/net-analyzer/alive/alive-2.0.2-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools + +DESCRIPTION="a periodic ping program" +HOMEPAGE="https://www.gnu.org/software/alive/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~x86" + +COMMON_DEPEND=" + net-misc/iputils +" +DEPEND=" + app-arch/xz-utils + ${COMMON_DEPEND} +" +RDEPEND=" + dev-scheme/guile + ${COMMON_DEPEND} +" +PATCHES=( + "${FILESDIR}"/${P}-ping-test.patch +) + +src_prepare() { + default + eautoreconf +}