SHA256
1
0
forked from pool/python-wheel
python-wheel/python-wheel.spec
2015-04-03 17:26:19 +00:00

107 lines
3.5 KiB
RPMSpec

#
# spec file for package python-wheel
#
# 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: python-wheel
Version: 0.24.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(postun): 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 wheel ; 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
%postun
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}/wheel
%{_bindir}/wheel-%{py_ver}
%ghost %{_sysconfdir}/alternatives/wheel
%{python_sitelib}/wheel-%{version}-py%{py_ver}.egg-info
%{python_sitelib}/wheel/
%changelog