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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0C9E0158090 for ; Sat, 28 May 2022 18:35:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECE63E0844; Sat, 28 May 2022 18:35:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0175E0844 for ; Sat, 28 May 2022 18:35:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D3B8D3411A7 for ; Sat, 28 May 2022 18:35:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3845C3B8 for ; Sat, 28 May 2022 18:35:48 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1653762744.06c8da2d11122daad32104a1ab0e7078620508d5.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyprof2calltree/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyprof2calltree/pyprof2calltree-1.4.5-r1.ebuild X-VCS-Directories: dev-python/pyprof2calltree/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 06c8da2d11122daad32104a1ab0e7078620508d5 X-VCS-Branch: master Date: Sat, 28 May 2022 18:35:48 +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: da23b468-a935-4e99-9df5-4b8e8d6d6769 X-Archives-Hash: 80ae26dd70165746c3e4cd26d97b90b0 commit: 06c8da2d11122daad32104a1ab0e7078620508d5 Author: Arthur Zamarin gentoo org> AuthorDate: Sat May 28 18:31:17 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat May 28 18:32:24 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06c8da2d dev-python/pyprof2calltree: EAPI=8, PEP517, cleanup Signed-off-by: Arthur Zamarin gentoo.org> .../pyprof2calltree/pyprof2calltree-1.4.5-r1.ebuild | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/dev-python/pyprof2calltree/pyprof2calltree-1.4.5-r1.ebuild b/dev-python/pyprof2calltree/pyprof2calltree-1.4.5-r1.ebuild new file mode 100644 index 000000000000..977ffebb4c69 --- /dev/null +++ b/dev-python/pyprof2calltree/pyprof2calltree-1.4.5-r1.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="convert python profile data to kcachegrind calltree form" +HOMEPAGE="https://pypi.org/project/pyprof2calltree/" +# pypi tarball lacks tests +SRC_URI="https://github.com/pwaller/pyprof2calltree/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests unittest