# # spec file for package python-configparser # # Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2016, Martin Hauke # # 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-configparser Version: 3.5.0 Release: 4.3 Summary: Backport of the enhanced config parser introduced in Python 3.x License: MIT Group: Development/Languages/Python Url: http://docs.python.org/3/library/configparser.html Source: https://pypi.io/packages/source/c/configparser/configparser-%{version}.tar.gz BuildRequires: fdupes BuildRequires: python-devel BuildRequires: python-setuptools Requires: python-backports BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch Provides: python2-configparser = %{version} %description The ancient ConfigParser module available in the standard library 2.x has seen a major update in Python 3.x. This is a backport of those changes so that they can be used directly in Python 2.7. %prep %setup -q -n configparser-%{version} %build python setup.py build %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} %files %defattr(-,root,root,-) %doc README.rst %{python_sitelib}/configparser.py* %dir %{python_sitelib}/backports/ %{python_sitelib}/backports/configparser/ %{python_sitelib}/configparser-%{version}-py*.egg-info %{python_sitelib}/configparser-%{version}-py*-nspkg.pth %changelog * Fri Jul 14 2017 toddrme2178@gmail.com - Remove backports subpackage. Since configparser is unmaintained, this is being moved to the maintained configparser2 package. * Fri Mar 31 2017 toddrme2178@gmail.com - %%{python_sitelib}/backports is a namespace package, and so under python 2.x it must have a proper %%{python_sitelib}/backports/__init__.py file. python-backports provides this __init__.py to prevent backports packages from conflicting. Please see the following links for more details: https://pypi.python.org/pypi/backports/ https://www.python.org/dev/peps/pep-0420/%%23namespace-packages-today * Thu Mar 30 2017 toddrme2178@gmail.com - Split backports directory into subpackage to allow the various packages that share the backports namespace to avoid conflicts. * Mon Mar 6 2017 jmatejek@suse.com - provide python2-configparser to seamlessly support singlespec - restore "unneeded file" that is actually needed * Tue Sep 6 2016 mardnh@gmx.de - initial package, version 3.5.0