add pyprof2calltree-1.4.5

This commit is contained in:
Andreas Billmeier 2020-10-05 18:31:04 +02:00 committed by Andreas Billmeier
parent cddcef6a84
commit 0b79a8afb6
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2020-10-05
* bump apprise-0.8.9
* add pyprof2calltree-1.4.5
2020-10-04 homeassistant-0.116.0_beta2
* bump pykodi-0.2.1

View File

@ -0,0 +1,3 @@
DIST pyprof2calltree-1.4.5.tar.gz 10080 BLAKE2B 13a7267c34c09fa3d01fca85d274e92fcd7ab85073a8299693fc77145e1ae932ebed4dfeb6571060e6a51f4b5db2ab732e2396c7f85a6806a943c85898dd3014 SHA512 9ad50a5c00881cbd8c361726b16fcb407c899c8dfe201769eddf10c3541531491f49cd5a08658b70d1e85e4c00d9a89801d600ab4f7d9906d357a0de82784f9e
EBUILD pyprof2calltree-1.4.5.ebuild 749 BLAKE2B ca686c525e790b12d35d75abee0e8de15a0a80210c2ad923b9c70c77ce3591e239735f44699d64b0685395d4c75b863a9bfdcd3e1ca696a8f5d581eeba9f058a SHA512 4dc8742c76c556687e1919daa001303adb9f5f8a395837318f7d73383d0d393d81b852cac4df2d9e77994ff8084560dac66c0f8762a632266e8a0ecb4f0dcbfc
MISC metadata.xml 453 BLAKE2B ae2885ea4e090035aa8dd68e5ea514d9729f27440983d2e901c535dce12f6895deca039e229cce6976a95a513c4833b0ebe2e0ad382351581335aba07190821a SHA512 67a5fab9858531e18fef897788a8c69c2d270843602202d71bbf14cbf3c687d12740d5f3c651f8af5495287e8cb0997f0e8823eb67d7219940d8f58ab449a7db

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pyprof2calltree</remote-id>
<maintainer status="unknown">
<email>p@pwaller.net</email>
<name>Peter Waller</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="Help visualize profiling data from cProfile with kcachegrind and qcachegrind"
HOMEPAGE="https://github.com/pwaller/pyprof2calltree/ https://pypi.org/project/pyprof2calltree/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=""
BDEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}