File python-contextlib2.spec of Package python-contextlib2
#
# spec file for package python-contextlib2
#
# Copyright (c) 2017 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2014 LISA GmbH, Bingen, 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/
%bcond_without test
Name: python-contextlib2
Version: 0.5.5
Release: 0
License: Python-2.0
Summary: Backports and enhancements for the contextlib module
Url: http://contextlib2.readthedocs.org
Group: Development/Languages/Python
Source: https://files.pythonhosted.org/packages/source/c/contextlib2/contextlib2-%{version}.tar.gz
BuildRequires: python-devel
BuildRequires: python-setuptools
%if %{with test}
BuildRequires: python-unittest2
%endif
Provides: python2-contextlib2 = %{version}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
contextlib2 is a backport of the standard library's contextlib module to
earlier Python versions.
It also serves as a real world proving ground for possible future enhancements
to the standard library version.
%prep
%setup -q -n contextlib2-%{version}
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%if %{with test}
%check
python2 test_contextlib2.py
%endif
%files
%defattr(-,root,root,-)
%doc README.rst NEWS.rst LICENSE.txt
%{python_sitelib}/*
%changelog