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 5F2C0158086 for ; Sat, 8 Jan 2022 06:12:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3DD2AE079C; Sat, 8 Jan 2022 06:12:06 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 8B28DE079C for ; Sat, 8 Jan 2022 06:12:01 +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 ADF34342E10 for ; Sat, 8 Jan 2022 06:11:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9157D0 for ; Sat, 8 Jan 2022 06:11:57 +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: <1641622309.2dd9e52bb40d2695732f773f6f931711d2609ba7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/bwping/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/bwping/Manifest net-analyzer/bwping/bwping-2.4.ebuild X-VCS-Directories: net-analyzer/bwping/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2dd9e52bb40d2695732f773f6f931711d2609ba7 X-VCS-Branch: master Date: Sat, 8 Jan 2022 06:11:57 +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: 022799c5-66ed-476c-b550-f4a575912a26 X-Archives-Hash: 6f01022a9cf63afa4a630ba4fb14f04b commit: 2dd9e52bb40d2695732f773f6f931711d2609ba7 Author: Sam James gentoo org> AuthorDate: Sat Jan 8 06:08:26 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 8 06:11:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dd9e52b net-analyzer/bwping: add 2.4 Signed-off-by: Sam James gentoo.org> net-analyzer/bwping/Manifest | 1 + net-analyzer/bwping/bwping-2.4.ebuild | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/net-analyzer/bwping/Manifest b/net-analyzer/bwping/Manifest index 7cd9d3306728..5ae583835fe6 100644 --- a/net-analyzer/bwping/Manifest +++ b/net-analyzer/bwping/Manifest @@ -1 +1,2 @@ DIST bwping-2.3.tar.gz 119043 BLAKE2B 2780f22a2cb541821aae3ddf0eaa5f2cb662ec8f190c44f7e28a092f4e07f9b19d1388b9ddaec0133cedef894c6ff64a9e53035fd73e44a8f0aae518c8b9dc7c SHA512 e8afed0d4ff0ae668f1700e3c93e4b6298e4861568d4786630826bf0f3519089602b9562c92b2c3bb97904faea0da6a084fb60cc69bc3a0a931bd0f55af3ee49 +DIST bwping-2.4.tar.gz 112687 BLAKE2B cbf2854ab5cf6e926db4e959e3e228b8dda6d5624898710de6bf0be4f7813ff85e088acba4b72e3f7d02ffec9f6feaf02720e915850e50daca2c7c3c5c775883 SHA512 e57bf644196a31acc845d4864d189595b1bca22b03ce7330581143ca369668f0dbccc23c936d985f334e03f9e5462a4298d714ceb56815a377ce1adec15364e6 diff --git a/net-analyzer/bwping/bwping-2.4.ebuild b/net-analyzer/bwping/bwping-2.4.ebuild new file mode 100644 index 000000000000..1f3911414ca9 --- /dev/null +++ b/net-analyzer/bwping/bwping-2.4.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A tool to measure bandwidth and RTT between two hosts using ICMP" +HOMEPAGE="https://bwping.sourceforge.io/" +SRC_URI="https://github.com/oleg-derevenetz/bwping/releases/download/RELEASE_${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" + +src_test() { + [[ ${UID} = 0 ]] && default +}