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 E4CE013835A for ; Tue, 16 Mar 2021 13:10:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35066E085A; Tue, 16 Mar 2021 13:10:39 +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 1B98FE085A for ; Tue, 16 Mar 2021 13:10:39 +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 C8AD1335DB7 for ; Tue, 16 Mar 2021 13:10:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3891F5AE for ; Tue, 16 Mar 2021 13:10:36 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1615900168.ba005557677479277cb36d580ccca5872123992a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/alive/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/alive/Manifest net-analyzer/alive/alive-2.0.3.ebuild X-VCS-Directories: net-analyzer/alive/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ba005557677479277cb36d580ccca5872123992a X-VCS-Branch: master Date: Tue, 16 Mar 2021 13:10:36 +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: e262b008-3459-44d8-b987-8c20ea5f6735 X-Archives-Hash: b1df9824e6fe75fd9b459828093fdd96 commit: ba005557677479277cb36d580ccca5872123992a Author: Sam James gentoo org> AuthorDate: Tue Mar 16 12:43:34 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 16 13:09:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba005557 net-analyzer/alive: add 2.0.3 Signed-off-by: Sam James gentoo.org> net-analyzer/alive/Manifest | 1 + net-analyzer/alive/alive-2.0.3.ebuild | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/net-analyzer/alive/Manifest b/net-analyzer/alive/Manifest index f4bb81d3f63..178ee9fad23 100644 --- a/net-analyzer/alive/Manifest +++ b/net-analyzer/alive/Manifest @@ -1 +1,2 @@ DIST alive-2.0.2.tar.xz 174936 BLAKE2B f3998d1cbf81d77be449cf1157bc570837b87fd15a860041273059de69536ff9cab8d00b8cb1191b2d6d692b41fb3fa5863248267a86ad542326f48c8ab43730 SHA512 7e9c88f62ab5c0248d1e42b81e2106f43fc9587543782623e8a564ab99fd1d4a55058a175dc46d25520454c07f732101c7e62248ce992d1a8a615f531b1c090e +DIST alive-2.0.3.tar.xz 187396 BLAKE2B 0614ae8d0707abf59dd1500d986ce21221092d118a40ae92e838bd11b81a2b5fd261a531843f99992746a86a31bbb494a9f35f9fa0ad5c0ea896d68edec17205 SHA512 3b2f14d84682466e02fc6678ba26eb4c0b9378f1c938a7463cc5736501cbf144baaeb7dea2c8343a916891ce4e2d580bac946c913c01d7c25e12bfa611c89422 diff --git a/net-analyzer/alive/alive-2.0.3.ebuild b/net-analyzer/alive/alive-2.0.3.ebuild new file mode 100644 index 00000000000..89a15d6ada2 --- /dev/null +++ b/net-analyzer/alive/alive-2.0.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 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" + +BDEPEND="app-arch/xz-utils" +DEPEND=" + dev-scheme/guile +" +RDEPEND=" + ${DEPEND} + dev-scheme/xdgdirs + net-misc/iputils +" + +PATCHES=( + "${FILESDIR}"/${PN}-2.0.2-ping-test.patch +) + +src_prepare() { + default + eautoreconf +}