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: Sat, 06 Oct 2018 16:19:47
Message-Id: 1538842641.d3541e15805fb156b478ad0c00806c81b0a75265.blueness@gentoo
1 commit: d3541e15805fb156b478ad0c00806c81b0a75265
2 Author: Jeffrey Lin <jeffrey <AT> icurse <DOT> nl>
3 AuthorDate: Tue Oct 2 16:25:04 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 6 16:17:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3541e15
7
8 net-misc/nyx: add a -9999
9
10 Signed-off-by: Jeffrey Lin <jeffrey <AT> icurse.nl>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
13
14 net-misc/nyx/nyx-9999.ebuild | 27 +++++++++++++++++++++++++++
15 1 file changed, 27 insertions(+)
16
17 diff --git a/net-misc/nyx/nyx-9999.ebuild b/net-misc/nyx/nyx-9999.ebuild
18 new file mode 100644
19 index 00000000000..a27cb04c7b1
20 --- /dev/null
21 +++ b/net-misc/nyx/nyx-9999.ebuild
22 @@ -0,0 +1,27 @@
23 +# Copyright 1999-2018 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
28 +
29 +inherit vcs-snapshot distutils-r1
30 +
31 +DESCRIPTION="Utility to monitor real time Tor status information"
32 +HOMEPAGE="https://nyx.torproject.org"
33 +if [[ ${PV} == *9999* ]]; then
34 + EGIT_REPO_URI="https://git.torproject.org/nyx.git"
35 + inherit git-r3
36 +else
37 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
38 + KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~x86-fbsd"
39 +fi
40 +
41 +LICENSE="GPL-3"
42 +SLOT="0"
43 +IUSE="test"
44 +
45 +DEPEND="
46 + dev-python/setuptools[${PYTHON_USEDEP}]"
47 +RDEPEND="
48 + net-libs/stem
49 + net-vpn/tor"