Add py-Pympler-0.5:

Pympler is a development tool to measure, monitor and analyze the memory
behavior of Python objects in a running Python application.

By pympling a Python application, detailed insight in the size and the
lifetime of Python objects can be obtained. Undesirable or unexpected
runtime behavior like memory bloat and other “pymples” can easily be
identified.

Pympler integrates three previously separate projects into a single,
comprehensive profiling tool. Asizeof provides basic size information for
one or several Python objects, muppy is used for on-line monitoring of a
Python application and the class tracker provides off-line analysis of
the lifetime of selected Python objects. A web profiling frontend exposes
process statistics, garbage visualisation and class tracker statistics.
This commit is contained in:
joerg 2018-03-02 15:59:04 +00:00
parent 16267c1ef9
commit 2f363dd1a8
4 changed files with 113 additions and 0 deletions

14
devel/py-Pympler/DESCR Normal file
View file

@ -0,0 +1,14 @@
Pympler is a development tool to measure, monitor and analyze the memory
behavior of Python objects in a running Python application.
By pympling a Python application, detailed insight in the size and the
lifetime of Python objects can be obtained. Undesirable or unexpected
runtime behavior like memory bloat and other “pymples” can easily be
identified.
Pympler integrates three previously separate projects into a single,
comprehensive profiling tool. Asizeof provides basic size information for
one or several Python objects, muppy is used for on-line monitoring of a
Python application and the class tracker provides off-line analysis of
the lifetime of selected Python objects. A web profiling frontend exposes
process statistics, garbage visualisation and class tracker statistics.

14
devel/py-Pympler/Makefile Normal file
View file

@ -0,0 +1,14 @@
# $NetBSD: Makefile,v 1.1 2018/03/02 15:59:04 joerg Exp $
DISTNAME= Pympler-0.5
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S,_,-,}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=P/Pympler/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://pypi.python.org/pypi/Pympler
COMMENT= Python memory analysis tool
LICENSE= apache-2.0
.include "../../lang/python/distutils.mk"
.include "../../mk/bsd.pkg.mk"

79
devel/py-Pympler/PLIST Normal file
View file

@ -0,0 +1,79 @@
@comment $NetBSD: PLIST,v 1.1 2018/03/02 15:59:04 joerg Exp $
${PYSITELIB}/${EGG_FILE}
${PYSITELIB}/pympler/__init__.py
${PYSITELIB}/pympler/__init__.pyc
${PYSITELIB}/pympler/__init__.pyo
${PYSITELIB}/pympler/asizeof.py
${PYSITELIB}/pympler/asizeof.pyc
${PYSITELIB}/pympler/asizeof.pyo
${PYSITELIB}/pympler/charts.py
${PYSITELIB}/pympler/charts.pyc
${PYSITELIB}/pympler/charts.pyo
${PYSITELIB}/pympler/classtracker.py
${PYSITELIB}/pympler/classtracker.pyc
${PYSITELIB}/pympler/classtracker.pyo
${PYSITELIB}/pympler/classtracker_stats.py
${PYSITELIB}/pympler/classtracker_stats.pyc
${PYSITELIB}/pympler/classtracker_stats.pyo
${PYSITELIB}/pympler/garbagegraph.py
${PYSITELIB}/pympler/garbagegraph.pyc
${PYSITELIB}/pympler/garbagegraph.pyo
${PYSITELIB}/pympler/metadata.py
${PYSITELIB}/pympler/metadata.pyc
${PYSITELIB}/pympler/metadata.pyo
${PYSITELIB}/pympler/mprofile.py
${PYSITELIB}/pympler/mprofile.pyc
${PYSITELIB}/pympler/mprofile.pyo
${PYSITELIB}/pympler/muppy.py
${PYSITELIB}/pympler/muppy.pyc
${PYSITELIB}/pympler/muppy.pyo
${PYSITELIB}/pympler/panels.py
${PYSITELIB}/pympler/panels.pyc
${PYSITELIB}/pympler/panels.pyo
${PYSITELIB}/pympler/process.py
${PYSITELIB}/pympler/process.pyc
${PYSITELIB}/pympler/process.pyo
${PYSITELIB}/pympler/refbrowser.py
${PYSITELIB}/pympler/refbrowser.pyc
${PYSITELIB}/pympler/refbrowser.pyo
${PYSITELIB}/pympler/refgraph.py
${PYSITELIB}/pympler/refgraph.pyc
${PYSITELIB}/pympler/refgraph.pyo
${PYSITELIB}/pympler/static/jquery.sparkline.min.js
${PYSITELIB}/pympler/summary.py
${PYSITELIB}/pympler/summary.pyc
${PYSITELIB}/pympler/summary.pyo
${PYSITELIB}/pympler/templates/asized_referents.tpl
${PYSITELIB}/pympler/templates/footer.tpl
${PYSITELIB}/pympler/templates/garbage.tpl
${PYSITELIB}/pympler/templates/garbage_index.tpl
${PYSITELIB}/pympler/templates/header.tpl
${PYSITELIB}/pympler/templates/index.tpl
${PYSITELIB}/pympler/templates/jquery.flot.min.js
${PYSITELIB}/pympler/templates/jquery.flot.stack.min.js
${PYSITELIB}/pympler/templates/jquery.flot.tooltip.min.js
${PYSITELIB}/pympler/templates/memory_panel.html
${PYSITELIB}/pympler/templates/process.tpl
${PYSITELIB}/pympler/templates/referents.tpl
${PYSITELIB}/pympler/templates/stacktrace.tpl
${PYSITELIB}/pympler/templates/style.css
${PYSITELIB}/pympler/templates/tracker.tpl
${PYSITELIB}/pympler/templates/tracker_class.tpl
${PYSITELIB}/pympler/tracker.py
${PYSITELIB}/pympler/tracker.pyc
${PYSITELIB}/pympler/tracker.pyo
${PYSITELIB}/pympler/util/__init__.py
${PYSITELIB}/pympler/util/__init__.pyc
${PYSITELIB}/pympler/util/__init__.pyo
${PYSITELIB}/pympler/util/bottle.py
${PYSITELIB}/pympler/util/bottle.pyc
${PYSITELIB}/pympler/util/bottle.pyo
${PYSITELIB}/pympler/util/compat.py
${PYSITELIB}/pympler/util/compat.pyc
${PYSITELIB}/pympler/util/compat.pyo
${PYSITELIB}/pympler/util/stringutils.py
${PYSITELIB}/pympler/util/stringutils.pyc
${PYSITELIB}/pympler/util/stringutils.pyo
${PYSITELIB}/pympler/web.py
${PYSITELIB}/pympler/web.pyc
${PYSITELIB}/pympler/web.pyo

View file

@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.1 2018/03/02 15:59:04 joerg Exp $
SHA1 (Pympler-0.5.tar.gz) = 227d47d25a3cbd46f08ffb8ed5520fa9566ba43a
RMD160 (Pympler-0.5.tar.gz) = 1dcfef01c7720a677c4b5692d98c9fa78ee79136
SHA512 (Pympler-0.5.tar.gz) = 6fcc2624cec69db11ff12d8ad0113face752a910be18ffe13cc8d68beeeb5223f4515364cb63cbadbcaf1f6e5c6807b262928eae7119cebcba50053ea0b0eb50
Size (Pympler-0.5.tar.gz) = 170396 bytes