File python-meliae.spec of Package python-meliae
#
# spec file for package python-meliae
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python-meliae
Version: 0.4.0
Release: 0
Url: https://launchpad.net/meliae
Summary: Python Memory Usage Analyzer
License: GPL-3.0+
Group: Development/Languages/Python
Source: meliae-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python-Cython
BuildRequires: python-devel
Requires: python-Cython
%if 0%{?suse_version} < 1210
BuildRequires: python-setuptools
%else
BuildRequires: python-setuptools
%endif
%if 0%{?suse_version}
%py_requires
%if 0%{?suse_version} > 1110
%endif
%endif
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%description
This project is similar to heapy (in the 'guppy' project), in its attempt to
understand how memory has been allocated.
Currently, its main difference is that it splits the task of computing summary
statistics, etc of memory consumption from the actual scanning of memory
consumption. It does this, because I often want to figure out what is going on
in my process, while my process is consuming huge amounts of memory (1GB, etc).
It also allows dramatically simplifying the scanner, as I don't allocate python
objects while trying to analyze python object memory consumption.
It will likely grow to include a GUI for browsing the reference graph. For now
it is mostly used in the python interpreter.
The name is simply a fun word (means Ash-wood Nymph).
%prep
%setup -q -n meliae-%{version}
%build
CFLAGS="%{optflags} -fno-strict-aliasing" python setup.py build
%install
CFLAGS="%{optflags}" python setup.py install --prefix=%{_prefix} --root=%{buildroot}
##%check
## tests won't run - see https://bugs.launchpad.net/meliae/+bug/740430
##python setup.py run_tests
%files
%defattr(-,root,root,-)
%doc COPYING.txt CHANGES.txt README.txt TODO.txt
%{_bindir}/strip_duplicates.py
%{python_sitearch}/*
%changelog