summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Seichter <github@seichter.de>2018-10-22 14:55:43 +0200
committerMichał Górny <mgorny@gentoo.org>2018-11-03 10:58:20 +0100
commitfaba3e0b54125bcb1a20a7ed5e9a43387eb97afa (patch)
tree7de59de5c6365e9d686da610722153bf2022ff33
parentmedia-sound/teamspeak-server: drop old version (diff)
downloadgentoo-faba3e0b.tar.gz
gentoo-faba3e0b.tar.bz2
gentoo-faba3e0b.zip
net-analyzer/prettyping: Ping wrapper with coloured output (new package)
'prettyping' is a wrapper around the standard 'ping' tool, making the output prettier, more colorful, more compact, and easier to read. Closes: https://bugs.gentoo.org/664958 Package-Manager: Portage-2.3.49, Repoman-2.3.11 Signed-off-by: Ralph Seichter <gentoo@seichter.de> Closes: https://github.com/gentoo/gentoo/pull/10200 Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--net-analyzer/prettyping/Manifest1
-rw-r--r--net-analyzer/prettyping/metadata.xml20
-rw-r--r--net-analyzer/prettyping/prettyping-1.0.1.ebuild20
3 files changed, 41 insertions, 0 deletions
diff --git a/net-analyzer/prettyping/Manifest b/net-analyzer/prettyping/Manifest
new file mode 100644
index 000000000000..5dcbbe05c59e
--- /dev/null
+++ b/net-analyzer/prettyping/Manifest
@@ -0,0 +1 @@
+DIST prettyping-1.0.1.tar.gz 10104 BLAKE2B 41158972fa41fcfaf078fd8fa4b9af10e2d3e65d547f81f0a6daf826f0a1c725de97e14dc597624d2c9281492d94c4b5cf7e6f40e9743aea0792ece0f84211fc SHA512 967626f11cd58fd9a0ce91a320caf6b6a296681ed809e04188f0cfe00d03c80a3620bf4d3ec86e855be363810763ff3ccd8bb0a959d03e62b31edba2cfae7f79
diff --git a/net-analyzer/prettyping/metadata.xml b/net-analyzer/prettyping/metadata.xml
new file mode 100644
index 000000000000..5c168b379404
--- /dev/null
+++ b/net-analyzer/prettyping/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gentoo@seichter.de</email>
+ <name>Ralph Seichter</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <longdescription>
+ 'prettyping' is a wrapper around the standard 'ping' tool,
+ making the output prettier, more colorful, more compact,
+ and easier to read.
+ </longdescription>
+ <upstream>
+ <remote-id type="github">denilsonsa/prettyping</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/net-analyzer/prettyping/prettyping-1.0.1.ebuild b/net-analyzer/prettyping/prettyping-1.0.1.ebuild
new file mode 100644
index 000000000000..df1c3132fd20
--- /dev/null
+++ b/net-analyzer/prettyping/prettyping-1.0.1.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Ping wrapper that produces coloured, easily readable output."
+HOMEPAGE="http://denilson.sa.nom.br/prettyping/"
+SRC_URI="https://github.com/denilsonsa/prettyping/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="app-shells/bash
+ net-misc/iputils
+ virtual/awk"
+
+src_install() {
+ dobin prettyping
+}