From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AD64D138359 for ; Tue, 13 Oct 2020 13:12:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E427CE08F4; Tue, 13 Oct 2020 13:12:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CEFA3E08F4 for ; Tue, 13 Oct 2020 13:12:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AAED8340D01 for ; Tue, 13 Oct 2020 13:12:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A7E2395 for ; Tue, 13 Oct 2020 13:11:59 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1602594708.624721ef3ccef59556c381a4fbfb216645790e4b.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ngxtop/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/ngxtop/ngxtop-0.0.3_pre141201-r1.ebuild X-VCS-Directories: app-admin/ngxtop/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 624721ef3ccef59556c381a4fbfb216645790e4b X-VCS-Branch: master Date: Tue, 13 Oct 2020 13:11:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d1e2a3b7-2d04-4121-97cf-145d51c94ad8 X-Archives-Hash: a15ac73ce1a622330a7ef3310aa548a5 commit: 624721ef3ccef59556c381a4fbfb216645790e4b Author: Tomáš Mózes gmail com> AuthorDate: Fri Oct 9 11:49:13 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Oct 13 13:11:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=624721ef app-admin/ngxtop: add python3.9, adjust DISTUTILS_USE_SETUPTOOLS Closes: https://bugs.gentoo.org/745876 Signed-off-by: Tomáš Mózes gmail.com> Closes: https://github.com/gentoo/gentoo/pull/17861 Signed-off-by: Joonas Niilola gentoo.org> app-admin/ngxtop/ngxtop-0.0.3_pre141201-r1.ebuild | 29 +++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/app-admin/ngxtop/ngxtop-0.0.3_pre141201-r1.ebuild b/app-admin/ngxtop/ngxtop-0.0.3_pre141201-r1.ebuild new file mode 100644 index 00000000000..a38a287da51 --- /dev/null +++ b/app-admin/ngxtop/ngxtop-0.0.3_pre141201-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) +PYTHON_REQ_USE="sqlite" +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +DESCRIPTION="real-time metrics for nginx server (and others)" +HOMEPAGE="https://github.com/lebinh/ngxtop" +#SRC_URI="https://github.com/lebinh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + dev-python/docopt[${PYTHON_USEDEP}] + dev-python/pyparsing[${PYTHON_USEDEP}] + dev-python/tabulate[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} +" + +PATCHES=( "${FILESDIR}"/${PN}-0.0.2-py3.patch )