# # spec file for package python-wheel # # Copyright (c) 2014 SUSE LINUX Products 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-wheel Version: 0.22.0 Release: 0 Summary: A built-package format for Python License: MIT Group: Development/Languages/Python Url: http://bitbucket.org/dholth/wheel/ Source: https://pypi.python.org/packages/source/w/wheel/wheel-%{version}.tar.gz BuildRequires: python-devel BuildRequires: python-setuptools # Test requirements: BuildRequires: python-cov-core >= 1.6 BuildRequires: python-coverage BuildRequires: python-jsonschema BuildRequires: python-pytest BuildRequires: python-pytest-cov Recommends: python-ed25519ll Recommends: python-dirspec Recommends: python-keyring Requires(post): update-alternatives Requires(preun): update-alternatives BuildRoot: %{_tmppath}/%{name}-%{version}-build %if 0%{?suse_version} && 0%{?suse_version} <= 1110 BuildRequires: python-argparse Requires: python-argparse %{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %else BuildArch: noarch %endif %description A built-package format for Python. A wheel is a ZIP-format archive with a specially formatted filename and the .whl extension. It is designed to contain all the files for a PEP 376 compatible install in a way that is very close to the on-disk format. Many packages will be properly installed with only the "Unpack" step (simply extracting the file onto sys.path), and the unpacked archive preserves enough information to "Spread" (copy data and scripts to their final locations) at any later time. The wheel project provides a bdist_wheel command for setuptools (requires distribute >= 0.6.34). Wheel files can be installed with a newer pip from https://github.com/pypa/pip or with wheel's own command line utility. The wheel documentation is at http://wheel.rtfd.org/. The file format is documented in PEP 427 (http://www.python.org/dev/peps/pep-0427/). The reference implementation is at http://bitbucket.org/dholth/wheel/ %prep %setup -q -n wheel-%{version} %build python setup.py build %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} mkdir -p %{buildroot}%{_sysconfdir}/alternatives for b in egg2wheel wheel wininst2wheel ; do mv %{buildroot}%{_bindir}/$b %{buildroot}%{_bindir}/$b-%{py_ver} touch %{buildroot}%{_sysconfdir}/alternatives/$b ln -sf %{_sysconfdir}/alternatives/$b %{buildroot}/%{_bindir}/$b done %check python setup.py test %post update-alternatives --install %{_bindir}/wheel wheel %{_bindir}/wheel-%{py_ver} 20 \ --slave %{_bindir}/egg2wheel egg2wheel %{_bindir}/egg2wheel-%{py_ver} \ --slave %{_bindir}/wininst2wheel wininst2wheel %{_bindir}/wininst2wheel-%{py_ver} %preun if [ $1 -eq 0 ] ; then update-alternatives --remove wheel %{_bindir}/wheel-%{py_ver} fi %files %defattr(-,root,root,-) %doc CHANGES.txt README.txt LICENSE.txt %{_bindir}/egg2wheel %{_bindir}/egg2wheel-%{py_ver} %{_bindir}/wheel %{_bindir}/wheel-%{py_ver} %{_bindir}/wininst2wheel %{_bindir}/wininst2wheel-%{py_ver} %ghost %{_sysconfdir}/alternatives/wheel %ghost %{_sysconfdir}/alternatives/egg2wheel %ghost %{_sysconfdir}/alternatives/wininst2wheel %{python_sitelib}/wheel-%{version}-py%{py_ver}.egg-info %{python_sitelib}/wheel/ %changelog