Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/prettyping/
Date: Sat, 03 Nov 2018 10:15:23
Message-Id: 1541239100.faba3e0b54125bcb1a20a7ed5e9a43387eb97afa.mgorny@gentoo
1 commit: faba3e0b54125bcb1a20a7ed5e9a43387eb97afa
2 Author: Ralph Seichter <github <AT> seichter <DOT> de>
3 AuthorDate: Mon Oct 22 12:55:43 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 3 09:58:20 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faba3e0b
7
8 net-analyzer/prettyping: Ping wrapper with coloured output (new package)
9
10 'prettyping' is a wrapper around the standard 'ping' tool, making the output
11 prettier, more colorful, more compact, and easier to read.
12
13 Closes: https://bugs.gentoo.org/664958
14 Package-Manager: Portage-2.3.49, Repoman-2.3.11
15 Signed-off-by: Ralph Seichter <gentoo <AT> seichter.de>
16 Closes: https://github.com/gentoo/gentoo/pull/10200
17 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
18
19 net-analyzer/prettyping/Manifest | 1 +
20 net-analyzer/prettyping/metadata.xml | 20 ++++++++++++++++++++
21 net-analyzer/prettyping/prettyping-1.0.1.ebuild | 20 ++++++++++++++++++++
22 3 files changed, 41 insertions(+)
23
24 diff --git a/net-analyzer/prettyping/Manifest b/net-analyzer/prettyping/Manifest
25 new file mode 100644
26 index 00000000000..5dcbbe05c59
27 --- /dev/null
28 +++ b/net-analyzer/prettyping/Manifest
29 @@ -0,0 +1 @@
30 +DIST prettyping-1.0.1.tar.gz 10104 BLAKE2B 41158972fa41fcfaf078fd8fa4b9af10e2d3e65d547f81f0a6daf826f0a1c725de97e14dc597624d2c9281492d94c4b5cf7e6f40e9743aea0792ece0f84211fc SHA512 967626f11cd58fd9a0ce91a320caf6b6a296681ed809e04188f0cfe00d03c80a3620bf4d3ec86e855be363810763ff3ccd8bb0a959d03e62b31edba2cfae7f79
31
32 diff --git a/net-analyzer/prettyping/metadata.xml b/net-analyzer/prettyping/metadata.xml
33 new file mode 100644
34 index 00000000000..5c168b37940
35 --- /dev/null
36 +++ b/net-analyzer/prettyping/metadata.xml
37 @@ -0,0 +1,20 @@
38 +<?xml version="1.0" encoding="UTF-8"?>
39 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
40 +<pkgmetadata>
41 + <maintainer type="person">
42 + <email>gentoo@××××××××.de</email>
43 + <name>Ralph Seichter</name>
44 + </maintainer>
45 + <maintainer type="project">
46 + <email>proxy-maint@g.o</email>
47 + <name>Proxy Maintainers</name>
48 + </maintainer>
49 + <longdescription>
50 + 'prettyping' is a wrapper around the standard 'ping' tool,
51 + making the output prettier, more colorful, more compact,
52 + and easier to read.
53 + </longdescription>
54 + <upstream>
55 + <remote-id type="github">denilsonsa/prettyping</remote-id>
56 + </upstream>
57 +</pkgmetadata>
58
59 diff --git a/net-analyzer/prettyping/prettyping-1.0.1.ebuild b/net-analyzer/prettyping/prettyping-1.0.1.ebuild
60 new file mode 100644
61 index 00000000000..df1c3132fd2
62 --- /dev/null
63 +++ b/net-analyzer/prettyping/prettyping-1.0.1.ebuild
64 @@ -0,0 +1,20 @@
65 +# Copyright 1999-2018 Gentoo Authors
66 +# Distributed under the terms of the GNU General Public License v2
67 +
68 +EAPI=7
69 +
70 +DESCRIPTION="Ping wrapper that produces coloured, easily readable output."
71 +HOMEPAGE="http://denilson.sa.nom.br/prettyping/"
72 +SRC_URI="https://github.com/denilsonsa/prettyping/archive/v${PV}.tar.gz -> ${P}.tar.gz"
73 +
74 +LICENSE="MIT"
75 +SLOT="0"
76 +KEYWORDS="~amd64"
77 +
78 +RDEPEND="app-shells/bash
79 + net-misc/iputils
80 + virtual/awk"
81 +
82 +src_install() {
83 + dobin prettyping
84 +}