Search
j0ke.net Open Build Service
>
Projects
>
internetx
:
kiwi
:
Appliance
>
python-future
> python-future.spec
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File python-future.spec of Package python-future
# # spec file for package python-future # # Copyright (c) 2016 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-future Version: 0.15.2 Release: 0 Summary: Clean single-source support for Python 3 and 2 License: MIT Group: Development/Languages/Python Url: https://python-future.org Source: https://pypi.python.org/packages/source/f/future/future-%{version}.tar.gz BuildRequires: python-devel BuildRequires: python-setuptools %if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version} BuildRequires: chkconfig Requires(post): chkconfig Requires(postun): chkconfig %endif %if 0%{?suse_version} BuildRequires: fdupes BuildRequires: update-alternatives Requires(post): update-alternatives Requires(postun): update-alternatives %endif BuildRoot: %{_tmppath}/%{name}-%{version}-build %if 0%{?suse_version} && 0%{?suse_version} <= 1110 %{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %else BuildArch: noarch %endif %description future: Easy, safe support for Python 2/3 compatibility ``future`` is the missing compatibility layer between Python 2 and Python 3. It allows you to use a single, clean Python 3.x-compatible codebase to support both Python 2 and Python 3 with minimal overhead. %prep %setup -q -n future-%{version} %build python setup.py build %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} %if 0%{?suse_version} %fdupes %{buildroot}/%{python_sitelib}/* %endif mv %{buildroot}%{_bindir}/futurize %{buildroot}%{_bindir}/futurize-2 mv %{buildroot}%{_bindir}/pasteurize %{buildroot}%{_bindir}/pasteurize-2 ln -s -f %{_sysconfdir}/alternatives/futurize %{buildroot}%{_bindir}/futurize ln -s -f %{_sysconfdir}/alternatives/pasteurize %{buildroot}%{_bindir}/pasteurize %post %_sbindir/update-alternatives --install \ %{_bindir}/futurize futurize %{_bindir}/futurize-2 15 %_sbindir/update-alternatives --install \ %{_bindir}/pasteurize pasteurize %{_bindir}/pasteurize-2 15 %preun if [ "$1" = 0 ] ; then %_sbindir/update-alternatives --remove futurize %{_bindir}/futurize-2 %_sbindir/update-alternatives --remove pasteurize %{_bindir}/pasteurize-2 fi %files %defattr(-,root,root,-) %doc LICENSE.txt README.rst %{python_sitelib}/* %{_bindir}/futurize-2 %{_bindir}/pasteurize-2 %{_bindir}/futurize %{_bindir}/pasteurize %ghost %{_sysconfdir}/alternatives/futurize %ghost %{_sysconfdir}/alternatives/pasteurize %changelog