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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 249F2158090 for ; Fri, 13 May 2022 21:40:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 569F3E08F1; Fri, 13 May 2022 21:40:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 2D762E08F1 for ; Fri, 13 May 2022 21:40:26 +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 DAFBB341AC8 for ; Fri, 13 May 2022 21:40:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A865430 for ; Fri, 13 May 2022 21:40:23 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1652478007.2da5207cf7aa61562b709e013326f5855a2e13d9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/snakeviz/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/snakeviz/Manifest dev-util/snakeviz/metadata.xml dev-util/snakeviz/snakeviz-2.1.1.ebuild X-VCS-Directories: dev-util/snakeviz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2da5207cf7aa61562b709e013326f5855a2e13d9 X-VCS-Branch: master Date: Fri, 13 May 2022 21:40:23 +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: 297520e7-9db4-4984-a914-803ce789e35c X-Archives-Hash: 3105bf2c670798533865b743a42286e4 commit: 2da5207cf7aa61562b709e013326f5855a2e13d9 Author: Sam James gentoo org> AuthorDate: Fri May 13 21:38:49 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 13 21:40:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2da5207c dev-util/snakeviz: new package, add 2.1.1 Signed-off-by: Sam James gentoo.org> dev-util/snakeviz/Manifest | 1 + dev-util/snakeviz/metadata.xml | 15 +++++++++++++++ dev-util/snakeviz/snakeviz-2.1.1.ebuild | 23 +++++++++++++++++++++++ 3 files changed, 39 insertions(+) diff --git a/dev-util/snakeviz/Manifest b/dev-util/snakeviz/Manifest new file mode 100644 index 000000000000..253739531c8b --- /dev/null +++ b/dev-util/snakeviz/Manifest @@ -0,0 +1 @@ +DIST snakeviz-2.1.1.tar.gz 600628 BLAKE2B 9fafa8347c5cba71bac05490dd234379129d88710031854be8389b7be7ff71059cce4d67b817915ceae79c8e583dfa3433f4ee2c10f778d176ecec07a39fcfb4 SHA512 f2c56e24b4032bd184fa7f0006be9336d3e950569f05d94781d91c548b63fba1b703d20b13918d24a5bd4e2a98d9163ccc29fac2870eb2d99cb30f97bc410250 diff --git a/dev-util/snakeviz/metadata.xml b/dev-util/snakeviz/metadata.xml new file mode 100644 index 000000000000..8e5042cb5b55 --- /dev/null +++ b/dev-util/snakeviz/metadata.xml @@ -0,0 +1,15 @@ + + + + + sam@gentoo.org + Sam James + + + python@gentoo.org + + + snakeviz + jiffyclub/snakeviz + + diff --git a/dev-util/snakeviz/snakeviz-2.1.1.ebuild b/dev-util/snakeviz/snakeviz-2.1.1.ebuild new file mode 100644 index 000000000000..5535bd56f74a --- /dev/null +++ b/dev-util/snakeviz/snakeviz-2.1.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +DISTUTILS_SINGLE_IMPL=1 +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="A web-based viewer for Python profiler output" +HOMEPAGE="https://github.com/jiffyclub/snakeviz" +SRC_URI="https://github.com/jiffyclub/snakeviz/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="$(python_gen_cond_dep ' + www-servers/tornado[${PYTHON_USEDEP}] + ')" + +distutils_enable_tests pytest