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 94CEA138334 for ; Sun, 10 Mar 2019 14:35:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AEB5AE0AF3; Sun, 10 Mar 2019 14:35:27 +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 86AE9E0AF3 for ; Sun, 10 Mar 2019 14:35:27 +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 7593F335C7B for ; Sun, 10 Mar 2019 14:35:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2049A503 for ; Sun, 10 Mar 2019 14:35:25 +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: <1552228519.05fd6ea5bc1b751a4746d7a1cdac6ce5edb98392.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/tcping/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/tcping/metadata.xml net-analyzer/tcping/tcping-1.3.5-r1.ebuild X-VCS-Directories: net-analyzer/tcping/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 05fd6ea5bc1b751a4746d7a1cdac6ce5edb98392 X-VCS-Branch: master Date: Sun, 10 Mar 2019 14:35:25 +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: 94bebabd-2f5b-4484-8871-bba2eed8b1b5 X-Archives-Hash: 6bf212ffd294ee929303f16341278a02 commit: 05fd6ea5bc1b751a4746d7a1cdac6ce5edb98392 Author: Jeroen Roovers gentoo org> AuthorDate: Sun Mar 10 14:33:33 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sun Mar 10 14:35:19 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05fd6ea5 net-analyzer/tcping: Update HOMEPAGE/SRC_URI/EAPI Package-Manager: Portage-2.3.62, Repoman-2.3.12 Fixes: https://bugs.gentoo.org/679922 Signed-off-by: Jeroen Roovers gentoo.org> net-analyzer/tcping/metadata.xml | 4 +++- net-analyzer/tcping/tcping-1.3.5-r1.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/net-analyzer/tcping/metadata.xml b/net-analyzer/tcping/metadata.xml index 6f49eba8f49..12edb2ee98a 100644 --- a/net-analyzer/tcping/metadata.xml +++ b/net-analyzer/tcping/metadata.xml @@ -1,5 +1,7 @@ - + +netmon@gentoo.org + diff --git a/net-analyzer/tcping/tcping-1.3.5-r1.ebuild b/net-analyzer/tcping/tcping-1.3.5-r1.ebuild new file mode 100644 index 00000000000..956a3556561 --- /dev/null +++ b/net-analyzer/tcping/tcping-1.3.5-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit toolchain-funcs + +DESCRIPTION="Ping implementation that uses the TCP protocol" +HOMEPAGE="https://github.com/mkirchner/tcping" +SRC_URI="https://web.archive.org/web/20160316191549/http://linuxco.de/tcping/tcping-1.3.5.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_prepare() { + default + sed -e '/^CC=/s:=:?=:' \ + -e '/^CCFLAGS/s:=:+=:' \ + -e 's/$(CCFLAGS)/$(CCFLAGS) $(LDFLAGS)/' \ + -i Makefile || die + tc-export CC + export CCFLAGS="${CFLAGS}" +} + +src_install() { + dobin tcping + dodoc README +}