Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ngxtop/
Date: Mon, 04 Oct 2021 12:33:29
Message-Id: 1633350743.d19cd6d2392bb67452fd7d1f2ef62257dcf70bde.juippis@gentoo
1 commit: d19cd6d2392bb67452fd7d1f2ef62257dcf70bde
2 Author: Tomáš Mózes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Fri Sep 24 21:34:57 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 12:32:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d19cd6d2
7
8 app-admin/ngxtop: add python3.10, remove DISTUTILS_USE_SETUPTOOLS
9
10 Closes: https://bugs.gentoo.org/813291
11 Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com>
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 app-admin/ngxtop/ngxtop-0.0.3_pre141201-r2.ebuild | 28 +++++++++++++++++++++++
15 1 file changed, 28 insertions(+)
16
17 diff --git a/app-admin/ngxtop/ngxtop-0.0.3_pre141201-r2.ebuild b/app-admin/ngxtop/ngxtop-0.0.3_pre141201-r2.ebuild
18 new file mode 100644
19 index 00000000000..e93de604bd5
20 --- /dev/null
21 +++ b/app-admin/ngxtop/ngxtop-0.0.3_pre141201-r2.ebuild
22 @@ -0,0 +1,28 @@
23 +# Copyright 1999-2021 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +PYTHON_COMPAT=( python3_{7..10} )
29 +PYTHON_REQ_USE="sqlite"
30 +
31 +inherit distutils-r1
32 +
33 +DESCRIPTION="real-time metrics for nginx server (and others)"
34 +HOMEPAGE="https://github.com/lebinh/ngxtop"
35 +#SRC_URI="https://github.com/lebinh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
36 +SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz"
37 +
38 +SLOT="0"
39 +LICENSE="MIT"
40 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
41 +IUSE=""
42 +
43 +RDEPEND="
44 + dev-python/docopt[${PYTHON_USEDEP}]
45 + dev-python/pyparsing[${PYTHON_USEDEP}]
46 + dev-python/tabulate[${PYTHON_USEDEP}]"
47 +DEPEND="${RDEPEND}
48 +"
49 +
50 +PATCHES=( "${FILESDIR}"/${PN}-0.0.2-py3.patch )