python-wheel/python-wheel.spec
2020-07-28 16:03:56 +08:00

104 lines
2.6 KiB
RPMSpec

%bcond_with bootstrap
%if %{with bootstrap}
%bcond_with tests
%else
%bcond_without tests
%endif
Name: python-wheel
Version: 0.34.2
Release: 1
Epoch: 1
Summary: Built-package format for Python
License: MIT
URL: https://github.com/pypa/wheel
Source0: %{url}/archive/%{version}/wheel-%{version}.tar.gz
BuildArch: noarch
%if %{with tests}
# several tests compile extensions
# those tests are skipped if gcc is not found
BuildRequires: gcc python3-wheel
%endif
%{?python_enable_dependency_generator}
%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.
%package -n python3-wheel
Summary: Built-package format for Python
BuildRequires: python3-devel python3-setuptools python3-rpm-generators
%if %{with tests}
BuildRequires: python3-pytest python3-pyxdg python3-keyring
%endif
%{?python_provide:%python_provide python3-wheel}
%description -n python3-wheel
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.
Python 3 version.
%if %{without bootstrap}
%package wheel
Summary: The Python wheel module packaged as a wheel
%description wheel
A Python wheel of wheel to use with virtualenv.
%endif
%prep
%autosetup -n wheel-%{version} -p1
%build
%py3_build
%if %{without bootstrap}
%py3_build_wheel
%endif
%install
%py3_install
mv %{buildroot}%{_bindir}/wheel{,-%{python3_version}}
ln -s wheel-%{python3_version} %{buildroot}%{_bindir}/wheel-3
ln -s wheel-3 %{buildroot}%{_bindir}/wheel
%if %{without bootstrap}
install -d %{buildroot}%{_datadir}/python-wheels
install -p dist/wheel-%{version}-py2.py3-none-any.whl -t %{buildroot}%{_datadir}/python-wheels
%check
export LC_ALL=C.UTF-8
rm setup.cfg
PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-3 -v --ignore build
%endif
%files -n python3-wheel
%license LICENSE.txt
%doc README.rst
%{_bindir}/wheel
%{_bindir}/wheel-3*
%{python3_sitelib}/wheel*
%if %{without bootstrap}
%files wheel
%license LICENSE.txt
%dir %{_datadir}/python-wheels/
%{_datadir}/python-wheels/wheel-%{version}-py2.py3-none-any.whl
%endif
%changelog
* Tue Jul 28 2020 shixuantong<shixuantong@huawei.com> - 0.34.2
- update to 0.34-2
* Mon Dec 2 2019 yangjian<yangjian79@huawei.com> - 1:0.31.1-4
- Package init