File python-faulthandler.spec of Package python-faulthandler
#
# spec file for package python-faulthandler
#
# Copyright (c) 2018 SUSE LINUX 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-faulthandler
Version: 2.4
Release: 0
Summary: Display the Python traceback on a crash
License: BSD-2-Clause
Group: Development/Languages/Python
URL: https://github.com/haypo/faulthandler
Source: https://files.pythonhosted.org/packages/source/f/faulthandler/faulthandler-%{version}.tar.gz
BuildRequires: python-devel
BuildRequires: python-setuptools
Provides: python2-faulthandler = %{version}
%description
Fault handler for SIGSEGV, SIGFPE, SIGABRT, SIGBUS and SIGILL signals: display
the Python traceback and restore the previous handler. Allocate an alternate
stack for this handler, if sigaltstack() is available, to be able to allocate
memory on the stack, even on stack overflow (not available on Windows).
Import the module and call faulthandler.enable() to enable the fault handler.
%prep
%setup -q -n faulthandler-%{version}
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
#%%check
#PYTHONPATH=$(echo $(pwd)/build/lib.*) python tests.py --verbose
%files
%license COPYING
%doc AUTHORS README
%{python_sitearch}/faulthandler.so
%{python_sitearch}/faulthandler-%{version}-py*.egg-info
%changelog