File python3-autopep8.spec of Package python3-autopep8
#
# spec file for package python3-autopep8
#
# Copyright (c) 2015 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: python3-autopep8
Version: 1.2
Release: 0
Url: https://github.com/hhatto/autopep8
Summary: Automatic generated to pep8 checked code
License: MIT
Group: Development/Languages/Python
Source: http://pypi.python.org/packages/source/a/autopep8/autopep8-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python3-devel
BuildRequires: python3-setuptools
# Test requirements:
BuildRequires: python3-pep8
Requires: python3-pep8
Requires(post): update-alternatives
Requires(postun): update-alternatives
BuildArch: noarch
%description
Autopep8 is automatic generated to pep8 checked code.
This is old style tool, wrapped pep8 via subprocess module.
%prep
%setup -q -n autopep8-%{version}
sed -i '1d' autopep8.py # Remove she-bang line
sed -i "s/autopep8 =/autopep8-%{py3_ver} =/" setup.py # Add py3_ver suffix to binary
%build
python3 setup.py build
%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
ln -s %{_bindir}/autopep8-%{py3_ver} %{buildroot}%{_bindir}/autopep8
%check
# need to set locale to avoid UnicodeEncodeError
export LANG="en_US.UTF-8"
python3 setup.py test
%pre
# Since /usr/bin/autopep8 became ghosted to be used with update-alternatives, we have to get rid
# of the old binary resulting from the non-update-alternativies-ified package:
[ -h %{_bindir}/autopep8 ] || rm -f %{_bindir}/autopep8
%post
update-alternatives --install %{_bindir}/autopep8 autopep8 %{_bindir}/autopep8-%{py3_ver} 30
%preun
if [ $1 -eq 0 ] ; then
update-alternatives --remove autopep8 %{_bindir}/autopep8-%{py3_ver}
fi
%files
%defattr(-,root,root,-)
%doc README.rst AUTHORS.rst
%ghost %{_bindir}/autopep8
%if 0%{?suse_version} >= 1230
%ghost %{_sysconfdir}/alternatives/autopep8
%endif
%{_bindir}/autopep8-%{py3_ver}
%{python3_sitelib}/autopep8.py*
%{python3_sitelib}/autopep8-%{version}-py%{py3_ver}.egg-info
%{python3_sitelib}/__pycache__/autopep8.*
%changelog