2023-01-15 18:24:23 +03:00
|
|
|
# Copyright 1999-2023 Gentoo Authors
|
2022-05-31 09:39:42 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
2023-01-15 18:24:23 +03:00
|
|
|
PYTHON_COMPAT=( python3_{9..11} )
|
2022-05-31 09:39:42 +03:00
|
|
|
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
|