Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/nyx/
Date: Mon, 13 Nov 2017 05:38:14
Message-Id: 1510551485.c49fa4f01ef4ddfb471a47ae5cffb4a7e29bc51e.blueness@gentoo
1 commit: c49fa4f01ef4ddfb471a47ae5cffb4a7e29bc51e
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 13 05:37:21 2017 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 13 05:38:05 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c49fa4f0
7
8 net-misc/nyx: initial commit
9
10 Nyx is a command-line application for monitoring real time Tor status
11 information. This includes bandwidth usage, logs, connections, configuration,
12 and more.
13
14 Package-Manager: Portage-2.3.8, Repoman-2.3.3
15
16 net-misc/nyx/Manifest | 1 +
17 net-misc/nyx/metadata.xml | 11 +++++++++++
18 net-misc/nyx/nyx-2.0.4.ebuild | 22 ++++++++++++++++++++++
19 3 files changed, 34 insertions(+)
20
21 diff --git a/net-misc/nyx/Manifest b/net-misc/nyx/Manifest
22 new file mode 100644
23 index 00000000000..7bc88561871
24 --- /dev/null
25 +++ b/net-misc/nyx/Manifest
26 @@ -0,0 +1 @@
27 +DIST nyx-2.0.4.tar.gz 4074259 SHA256 38db634789c2d72e485522a490397eb5f77c0bd7c689453efe57808c99dba75e SHA512 bb64b6c38bbfc9837215503a69b4a6b7a11b8a1e230f42c51a405472689a3d46d74dd06b2417c90512b63e9605b33198c5132b660f9eca037016a39c5e4f0ecf WHIRLPOOL 7984eb45f3c22f217c1bf6b42402be978eabe128416e9dd2351f47117afd308258be2385705f2eeea6a703348c5872b748b0ffa8f8a47fa2f8c92e8d220631e2
28
29 diff --git a/net-misc/nyx/metadata.xml b/net-misc/nyx/metadata.xml
30 new file mode 100644
31 index 00000000000..7407400b590
32 --- /dev/null
33 +++ b/net-misc/nyx/metadata.xml
34 @@ -0,0 +1,11 @@
35 +<?xml version="1.0" encoding="UTF-8"?>
36 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
37 +<pkgmetadata>
38 + <maintainer type="person">
39 + <email>blueness@g.o</email>
40 + <name>Anthony G. Basile</name>
41 + </maintainer>
42 + <upstream>
43 + <remote-id type="pypi">nyx</remote-id>
44 + </upstream>
45 +</pkgmetadata>
46
47 diff --git a/net-misc/nyx/nyx-2.0.4.ebuild b/net-misc/nyx/nyx-2.0.4.ebuild
48 new file mode 100644
49 index 00000000000..93d2f04eb22
50 --- /dev/null
51 +++ b/net-misc/nyx/nyx-2.0.4.ebuild
52 @@ -0,0 +1,22 @@
53 +# Copyright 1999-2017 Gentoo Foundation
54 +# Distributed under the terms of the GNU General Public License v2
55 +
56 +EAPI=6
57 +PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
58 +
59 +inherit vcs-snapshot distutils-r1
60 +
61 +DESCRIPTION="Utility to monitor real time Tor status information"
62 +HOMEPAGE="https://nyx.torproject.org"
63 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
64 +
65 +LICENSE="GPL-3"
66 +SLOT="0"
67 +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~x86-fbsd"
68 +IUSE="test"
69 +
70 +DEPEND="
71 + dev-python/setuptools[${PYTHON_USEDEP}]"
72 +RDEPEND="
73 + net-libs/stem
74 + net-vpn/tor"