%global srcname modernize Name: python-modernize Version: 0.2 Release: 2%{?dist} Summary: Modernizes Python code for eventual Python 3 migration License: BSD URL: https://pypi.python.org/pypi/modernize Source0: https://pypi.python.org/packages/source/m/%{srcname}/%{srcname}-%{version}.tar.gz BuildArch: noarch BuildRequires: python2-devel BuildRequires: python-setuptools %description This library is a very thin wrapper around lib2to3 to utilize it to make Python 2 code more modern with the intention of eventually porting it over to Python 3. It attempts, but does not guarantee, to generate a Python 2/3 compatible codebase. The code that it generates needs python2.6+ and has a runtime dependency on python-six. %prep %setup -q -n %{srcname}-%{version} %build %{__python} setup.py build %install %{__python} setup.py install --skip-build --root %{buildroot} %files %doc README %{python_sitelib}/* %{_bindir}/* %changelog * Tue Jul 23 2013 Toshio Kuratomi - 0.2-2 - BuildRequire python-setuptools; needed by setup.py - Remove rpm constructs not needed in EPEL6+ or any current Fedora - * Mon Jul 22 2013 Toshio Kuratomi - 0.2-1 - Initial Fedora build.